diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-09-05 02:55:00 +0200 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-09-05 02:55:00 +0200 |
commit | 9c8539060952482c1357aebf29c09ad917760c19 (patch) | |
tree | e8df45a2a2f8d8d0bad9d31fe2270ca7ba852970 | |
parent | 328d649ec9b351dcd9dc1f43d22b3aa587dc65e9 (diff) | |
download | digitale-debutanten-9c8539060952482c1357aebf29c09ad917760c19.tar.gz |
added contact_mic master volume and adapted to new Clipper chugin
-rw-r--r-- | contact_mic.ck | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/contact_mic.ck b/contact_mic.ck index 32eb869..722fe49 100644 --- a/contact_mic.ck +++ b/contact_mic.ck @@ -2,12 +2,12 @@ * contact mic * digital feedback loop */ -Clipper clipper; -adc.chan(0) => Gain pregain => Echo echo => Gain amp => clipper.input; -clipper.output => Bus.channels[0]; -clipper.output => Bus.out_left; -clipper.output => Bus.out_right; -clipper.output => Delay del => amp; +adc.chan(0) => Gain pregain => Echo echo => Gain amp => Clipper clipper; +clipper => Delay del => amp; +clipper => Gain master => Bus.out_left; master => Bus.out_right; +clipper => Bus.channels[0]; // live-sampler + +0.5 => master.gain; // mic pre-amplification - don't contribute to feedback loop 6 => pregain.gain; |