<br><br><div><span class="gmail_quote">On 04/01/2008, <b class="gmail_sendername">Rich Caloggero</b> &lt;<a href="mailto:rjc@mit.edu">rjc@mit.edu</a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Is there a way to convert a stereo signal (say from a sndbuf) to two mono<br>signals which I can play with individually? I will then send the results of<br>each to dac.left and dac.right.</blockquote><div><br><br>Hi, Rich!
<br><br>If you would simply like to send a stereo soundsource to the dac in stereo ChucK will do that for you for free;<br><br>SinOsc s =&gt; Pan2 p =&gt; dac;<br><br>Equivalent would be;<br><br>SinOsc =&gt; Pan2 p;<br>p.left
 =&gt; dac.left;<br></div>p.right =&gt; dac.right;<br>//and even;<br>s =&gt; dac.chan(4);<br><br>Everything that ouputs stereo (Pan2, ADC, Mix2....) should have those .left and .right outputs. From the top of my head I can&#39;t remember is SindBuf does, these aren&#39;t mentioned in the manual where I looked just now. You could try.
<br><br>Yours,<br>Kas.<br></div>