From 5c945455a21470646e2c74d3e52633612bb4fe77 Mon Sep 17 00:00:00 2001 From: Georg Krause Date: Tue, 8 May 2018 09:35:31 +0200 Subject: [PATCH] add crossfade for input sidechain --- README.md | 2 +- input.dot | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e4a8743..326c253 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/input.dot b/input.dot index 2a850e1..f23b379 100644 --- a/input.dot +++ b/input.dot @@ -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; } \ No newline at end of file