From ef3c5cea6312a137f1b57935a3d4e9a7b641ab7f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luka=20Prin=C4=8Di=C4=8D?= Date: Wed, 25 Nov 2020 12:22:07 +0100 Subject: [PATCH] a quick hack to mixdown 8 channels to 2 --- lib/octoPanOut.scd | 7 +++++-- rhizosphere.scd | 14 +------------- 2 files changed, 6 insertions(+), 15 deletions(-) diff --git a/lib/octoPanOut.scd b/lib/octoPanOut.scd index bba4184..8068eb8 100644 --- a/lib/octoPanOut.scd +++ b/lib/octoPanOut.scd @@ -41,7 +41,7 @@ SynthDef("octoPanner", { var snd = In.ar(inBus,1); snd = ~octoPanOut.value(snd, x, y, radius); - + Out.ar(outBus, snd); }).add; ); @@ -74,7 +74,10 @@ SynthDef("reverBusser", { snd.put(5, snd.at(5) + verb3.at(1) ); snd.put(6, snd.at(6) + verb4.at(0) ); snd.put(7, snd.at(7) + verb4.at(1) ); - + + // this is a quick hack to mixdown 8 channels to 2 + snd = Splay.ar(snd); + Out.ar(outBus, snd); }).add; ); diff --git a/rhizosphere.scd b/rhizosphere.scd index 6d9ccbb..8af9419 100644 --- a/rhizosphere.scd +++ b/rhizosphere.scd @@ -29,18 +29,6 @@ Server.default.waitForBoot { }); }); -<<<<<<< HEAD -s.meter; -s.plotTree; -======= - - - -s.meter; s.plotTree; ->>>>>>> 6aab46529682cae5a6bb3e59e378d8fcf94a3e50 - - - // octoPan busses ////////////// ( // free busses and panners when re-trying things? @@ -95,7 +83,7 @@ s.meter; s.plotTree; r = Recorder(s); r.recHeaderFormat = "wav"; -r.record(numChannels:8); +r.record(numChannels:2); r.stopRecording;