[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [sc-users] Bus questions



The out should probably be more like this

(
"out", {arg out=0;
var in;
in = In.ar(2,4);
in = Mix.ar(in);
Out.ar(0, in);
}).send(s);
)

does that work?

or, for stereo:

(
"out", {arg out=0;
var in, outl, outr;
in = In.ar(2,4);
outl = in.at(0) + in.at(1);
outr = in.at(2) + in.at(3);
Out.ar(0, [outl, outr]);
}).send(s);
)

I believe that should mix it to two channels... not at my SC# computer, so can't check at the moment.

Josh

On Dec 28, 2003, at 7:32 PM, travis wrote:

(
"out", {arg out=0;
var in;
in = In.ar([2,3,4,5],2);
Out.ar(0, in);
}).send(s);
)