Hey James, One last question: As you can tell I am already in this bad habit with Out.ar and multichannel expansion. I understand your point with the example you provided (thanks btw) but am confused about what the correct way to make that mono signal stereo would be. Is this the proper way to do what I was trying to do (below)? version 1 (condense two signals to mono, expand to stereo) m = { arg cleanAmp = 0.5, loopedAmp = 0.5;
var clean, looped, sig;
clean = In.ar(~cleanBus.index, 1) * cleanAmp;
looped = In.ar(~loopedBus.index, 1) * loopedAmp;
sig = clean + looped;
Out.ar(0, sig!2);
}.play(target: ~finalMix); or version 2 (clean in channel 0 looped in channel 1) m = { arg cleanAmp = 0.5, loopedAmp = 0.5; var clean, looped, sig; clean = In.ar(~cleanBus.index, 1) * cleanAmp; looped = In.ar(~loopedBus.index, 1) * loopedAmp; sig = clean + looped; Out.ar(0, [clean, looped]); }.play(target: ~finalMix); Casey ///////// On December 29, 2017 at 5:47:05 PM, jamshark70@xxxxxx (jamshark70@xxxxxx) wrote:
|