[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[sc-users] Re: all audio explodes when trying to trig record clean feed via groups
casey.thomas.anderson wrote
> Out.ar(0, sig!2);
>
> vs
>
> Out.ar(0, [clean, looped]);
Both are valid -- but they mean different things.
The first means, write out two channels that both share the same contents --
the traditional meaning of mono-to-stereo.
The second means, write one signal hard left and the other signal hard right
-- the signals mix in the air, with stereo separation.
I'd say the first is more common, in terms of both engineering and resulting
sound. You could improve on that by adding a pan control -- add "pan = 0" in
your argument list, then:
Out.ar(0, Pan2.ar(sig, pan));
(Pan2 expects mono in, and it outputs stereo. For stereo-to-stereo panning,
see Balance2.)
Eventually you'll want to be able to output to any bus, not only 0, so, add
"out = 0" to the arguments and...
Out.ar(out, Pan2.ar(sig, pan));
hjh
--
Sent from: http://new-supercollider-mailing-lists-forums-use-these.2681727.n2.nabble.com/SuperCollider-Users-New-Use-this-f2676391.html
_______________________________________________
sc-users mailing list
info (subscription, etc.): http://www.birmingham.ac.uk/facilities/ea-studios/research/supercollider/mailinglist.aspx
archive: https://listarc.bham.ac.uk/marchives/sc-users/
search: https://listarc.bham.ac.uk/lists/sc-users/search/