CLM locsig question

Juan Pampin Juan Pampin <juan@ccrma.Stanford.EDU>
Sat, 4 Oct 1997 09:48:49 -0700 (PDT)


Hi Mari,
you should use the :channels key in the with-sound parameters list to
change the output to stereo (or to whatever other number than 1). The call
to your instrument should look like this:

(with-sound (:channels 2)
  (your-instrument ... ))

The degree parameter accepts values between 0 an 90 degrees (you can
consider 0 as your left channel and 90 your right one being, 45 the
middle).
In order to get the reverb to work you should compile and load one of the
reverb instruments coming with the CLM distribution, for example nrev.ins.
Then you have to add the :reverb key in the with-sound parameters list as
well, and specify the name of the reverb instrument you are using:

(with-sound (:channels 2 :reverb nrev)
  (your-instrument ...)) 

You can take a look to the with-sound input in the documentation for more
details.

Enjoy!
JUAN