add crossfade for input sidechain

main
Georg Krause 2018-05-08 09:35:31 +02:00
parent 5b24886fc0
commit 5c945455a2
2 changed files with 5 additions and 3 deletions

View File

@ -8,6 +8,7 @@ Some graphs to document the signal-flow of Luppp
- orange Box = Jack Input Port
- Blue Box = Internal Connection
- Oval = Continous Controller
- Triangle = Crossfade (When one path gets louder, the other gets quiter)
# Build
@ -20,7 +21,6 @@ For more options, see `dot --help`
- long way to go to be complete
- no discrete controllers
- no crossfaders
# Contribute

View File

@ -10,11 +10,13 @@ strict digraph input {
clip_record [label="Clip Record", shape=box, style=filled, color=blue];
sidechain_signal_volume [label="Sidechain Vol", shape=invtriangle]
master_in -> "Input Volume";
"Input Volume" -> "Mix Volume";
"Mix Volume" -> "Send Volume" -> send_out;
"Input Volume" -> sidechain_key_out;
"Input Volume" -> "Sidechain Signal Volume" -> sidechain_signal_out;
"Sidechain Signal Volume" -> master_out;
"Input Volume" -> sidechain_signal_volume -> sidechain_signal_out;
sidechain_signal_volume -> master_out;
master_in -> clip_record;
}