a quick hack to mixdown 8 channels to 2
parent
c491e0e147
commit
ef3c5cea63
|
@ -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;
|
||||
);
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue