Controlling Scope from lighting consoles with DMX and Art-Net
DMX (Digital Multiplex) is the industry standard for controlling stage lighting and effects. Scope supports the Art-Net protocol, allowing you to map DMX channels directly to pipeline parameters. If you are already running a lighting console for a show, you can control Scope’s real-time AI video from the same surface you use for lights.Why DMX?
DMX is the standard protocol in professional live events. If you are running a lighting console (grandMA, Chamsys, ETC, etc.), DMX lets you control Scope from the same surface you are already using for your fixtures, turning AI-generated visuals into another element in your cue list.| DMX / Art-Net | OSC | MIDI | |
|---|---|---|---|
| Values | 8-bit integers (0 to 255) | Floats, strings, ints | 7-bit integers (0 to 127) |
| Transport | UDP (Art-Net) or 5-pin XLR | UDP | USB or 5-pin DIN |
| Addressing | Universe + Channel (numeric) | Named paths (/scope/noise_scale) | CC numbers |
| Setup | Requires explicit channel mapping | Direct parameter paths | Learn-based |
| Pro use | Standard in live events | Common in media servers | Common in studios |
What you’ll need
- Daydream Scope running (the Art-Net server starts automatically on UDP port 6454)
- An Art-Net source: lighting console, QLC+, MagicQ, TouchDesigner, or similar
- All devices on the same local network (or running on the same machine using
localhost)
Enabling DMX in Scope
DMX input is disabled by default. You need to turn it on before Scope will listen for Art-Net packets.Enable DMX input
Toggle the Enable switch to on. You should see a status indicator showing “Listening on UDP port 6454”.

The DMX server binds to all network interfaces (
0.0.0.0) by default, so it accepts Art-Net from any device on the network.Configuring channel mappings
Unlike OSC (which uses named addresses) or MIDI (which uses learn mode), DMX channels are just numbers. You need to tell Scope what each channel should control.Set the universe and channel
Enter the Universe number (usually 0) and the Channel number (1 to 512).
Choose a parameter
Select a pipeline parameter from the dropdown. Parameters are grouped by pipeline, and only numeric types (float, integer) are available for mapping. The dropdown shows each parameter’s description and value range.
Save your mappings
Click Save to persist your configuration. Mappings are stored at
~/.daydream-scope/dmx-config.json and survive server restarts.Import and export
The DMX settings tab includes Export and Import buttons for your channel mapping configuration:- Export downloads your current mappings as a
scope-dmx-config.jsonfile - Import loads mappings from a previously exported JSON file
Connecting your Art-Net source
Lighting consoles (grandMA, Chamsys, ETC)
Most professional consoles have Art-Net output built in:Set the destination
Set the destination IP to the machine running Scope, or use
255.255.255.255 for broadcast.QLC+ (free lighting software)
TouchDesigner
Configure Art-Net output
Set Network Protocol to “Art-Net”, Network Address to the Scope machine’s IP, and Universe to match your mappings.
Python (stupidArtnet)
For scripted or automated control, you can send Art-Net packets from Python:Planning your channel layout
A typical mapping strategy for a show:| Channel | Parameter | Range |
|---|---|---|
| 1 | noise_scale | 0.0 to 1.0 |
| 2 | transition_steps | 0 to 100 |
| 3 | guidance_scale | 1.0 to 10.0 |
| 4 | vace_context_scale | 0.0 to 1.0 |
Multi-universe support
Scope accepts Art-Net on any universe. When creating mappings, specify the universe number to separate concerns:- Universe 0, Channel 1 maps to one parameter
- Universe 1, Channel 1 maps to a different parameter
Troubleshooting
No response from Scope
No response from Scope
- Check that the DMX status in Settings shows “Listening on UDP port 6454”
- Verify your Art-Net source is targeting the correct IP and port
- Check that you have created a mapping for the channel you are sending
- Ensure your firewall allows UDP on port 6454
Values not scaling correctly
Values not scaling correctly
Check your parameter’s min/max range in the mapping dropdown. DMX 0 maps to min, DMX 255 maps to max. If the behavior seems inverted, swap your min and max values.
Latency or jitter
Latency or jitter
Art-Net over UDP is fast but does not guarantee delivery. On busy networks or Wi-Fi, you may see occasional drops. For mission-critical shows, use a dedicated Art-Net network or wired connections.
Port 6454 already in use
Port 6454 already in use
Another application is using the Art-Net port. Close other Art-Net receivers, or let Scope fall back to ports 6455 through 6457. You can also set a preferred port manually in the settings.
Works locally but not across the network
Works locally but not across the network
- Verify both machines are on the same subnet
- Replace
localhostwith the actual LAN IP of the Scope machine - Check that no firewall is blocking UDP on port 6454
- Try the broadcast address
255.255.255.255if unicast is not working
See also
Using OSC
Control Scope with named parameter paths over UDP
Using MIDI
Control Scope from MIDI controllers and DAWs
Using Spout
Share real-time video between Scope and other applications on Windows