Thanks very much for that Bill, <br>can you tell me how I write this if I were to use the 9 speaker set up I described earlier? Would I need a soundcard with 5 (or 9) outs to be able to achieve this 360 degree effect ? <br>
Thanks,<br>JH<br><br><div><span class="gmail_quote">On 7/25/07, <b class="gmail_sendername">Bill Schottstaedt</b> <<a href="mailto:bil@ccrma.stanford.edu">bil@ccrma.stanford.edu</a>> wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
> Ok, does anyone have any insight on how/what I would use in CLM to send<br>> panning information to a 5 channel speaker system with a tweeter tree<br>> speaker sitting above the audience in the center of the room ?
<br><br>If the individual notes are in one place, you could do something like:<br><br>(with-sound (:channels 5)<br> (let ((loc (make-locsig :channels 4 :output *output*))<br> (osc (make-oscil 440.0))<br> (j 0))
<br> (run<br> (lambda ()<br> (do ((i 0 (1+ i)))<br> ((= i 360))<br> (do ((k 0 (1+ k)))<br> ((= k 1000))<br> (let ((sig (* .5 (oscil osc))))<br> (locsig loc j sig)
<br> (out-any j sig 4 *output*)<br> (set! j (1+ j))))<br> (move-locsig loc (exact->inexact i) 1.0))))))<br><br>This sends out 360 notes a degree at a time -- locsig is used for the circle
<br>in 4 chans, and the 5th chan is just out-any. dlocsig can move a single<br>sound (panning, Doppler, etc). I don't know how convincing this would be<br>with only 5 speakers.<br><br></blockquote></div><br>