Files
artmap/config.example.toml

78 lines
2.0 KiB
TOML
Raw Normal View History

# artmap configuration
# Run with: go run . -config config.toml [-listen :6454]
# Target addresses for ArtNet output universes
# Configure the destination IP (broadcast or unicast) for each output universe
# ArtPoll discovery will be sent to all unique target addresses
[[target]]
universe = "0.0.0"
address = "2.255.255.255"
[[target]]
universe = "0.0.5"
address = "10.50.255.255"
# Address format:
# from: universe[:channels] - range specifies which channels to read
# to: universe[:channel] - single channel specifies where to start writing
#
# Universe: "net.subnet.universe" or plain number (all 0-indexed, 0-127.0-15.0-15)
# Channels: 1-indexed (1-512), matching DMX convention
#
# From examples:
# "0.0.1" - universe 1, all channels (1-512)
# "0.0.1:50" - universe 1, channel 50 only
# "0.0.1:50-" - universe 1, channels 50-512
# "0.0.1:50-100" - universe 1, channels 50-100
# 1 - universe 1, all channels
# "1:50-100" - universe 1, channels 50-100
#
# To examples:
# "0.0.1" - universe 1, starting at channel 1
# "0.0.1:50" - universe 1, starting at channel 50
#
# Input protocol (optional, default "artnet"):
# from_proto = "artnet" - receive via ArtNet
# from_proto = "sacn" - receive via sACN/E1.31 (multicast)
#
# Output protocol (optional, default "artnet"):
# proto = "artnet" - output via ArtNet (broadcast or discovered nodes)
# proto = "sacn" - output via sACN/E1.31 (multicast)
# Remap entire universe
[[mapping]]
from = "0.0.0"
to = "0.0.5"
# Channel-level remap for fixture spillover
# Channels 450-512 from universe 0 -> channels 1-63 of universe 1
[[mapping]]
from = "0.0.0:450-512"
to = "0.0.1:1"
# Using plain universe numbers
[[mapping]]
from = 2
to = 10
# Multiple outputs from same source
[[mapping]]
from = "0.0.3"
to = "0.0.7"
[[mapping]]
from = "0.0.3"
to = "0.0.8"
# Output to sACN instead of ArtNet
[[mapping]]
from = "0.0.4"
to = 1
proto = "sacn"
# Convert sACN input to ArtNet output
[[mapping]]
from = 5
from_proto = "sacn"
to = "0.0.5"