Re: [chuck-users] stereo gain (henrique matias)

2018-10-14 Thread Perry Cook
ooked for "Gain" on the > documentation i could not find anything about patching it "stereo", perhaps > i looked on the wrong place? > > Thank You > > -- > *time's not passing, you are.* > > ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? > ? ? ? ? ? ? ? ? ? ? ? ?

[chuck-users] outputing stereo Gain to different dac output?

2018-10-14 Thread henrique matias
Hello i have a soundcard with multiple outputs ( 32 ) when i use normal Gain g => dac; I get a stereo signal, but if i do: Gain g => dac.chanel(31) i get sound only on 31 and not on 31 and 32. What's the right way of patching "stereo" out of a different pair on the dac? sorry for such basic

Re: [chuck-users] outputing stereo Gain to different dac output?

2018-10-14 Thread Joel Matthys
Replace the Gain with a Pan2 and do: Pan2 p.left => dac.channel(31); p.right => dac.channel(32); Joel On Sun, Oct 14, 2018, 2:17 AM henrique matias wrote: > Hello i have a soundcard with multiple outputs ( 32 ) when i use normal > > Gain g => dac; > > I get a stereo signal, but if i do: > >