luppp-signalflow/input.dot

25 lines
1.1 KiB
Plaintext
Raw Permalink Normal View History

2018-05-07 15:01:47 +02:00
strict digraph input {
master_in [label="Master In", shape=box, style=filled, color=orange];
send_out [label="Send Out", shape=box, style=filled, color=red];
sidechain_key_out [label="Sidechain Key Out", shape=box, style=filled, color=red];
sidechain_signal_out [label="Sidechain Signal Out", shape=box, style=filled, color=red];
master_out [label="Master Out", shape=box, style=filled, color=red];
clip_record [label="Clip Record", shape=box, style=filled, color=blue];
2018-05-08 13:58:16 +02:00
sidechain_signal_volume [label="Sidechain Vol", shape=ellipse]
connect[ shape = point, width = 0 ];
2018-05-08 09:35:31 +02:00
2018-05-07 15:01:47 +02:00
master_in -> "Input Volume";
2018-05-08 13:58:16 +02:00
"Input Volume" -> "Mix Volume" [style=dashed];
"Mix Volume" -> "Send Volume" [style=dashed];
"Send Volume" -> send_out;
"Input Volume" -> sidechain_key_out [style=dashed];
2018-05-08 09:35:31 +02:00
"Input Volume" -> sidechain_signal_volume -> sidechain_signal_out;
2018-05-08 13:58:16 +02:00
"Mix Volume" -> connect[ arrowhead = none ];
2018-06-22 15:53:55 +02:00
"Input Volume" -> clip_record;
2018-05-08 13:58:16 +02:00
sidechain_signal_volume -> connect[style=dotted, arrowhead=none];
connect -> master_out;
2018-05-07 15:01:47 +02:00
}