Stereo Tracks Tutorial
This tutorial provides a brief introduction to using stereo tracks in Nyquist programming.
if arrayp(*track*) then
return vector(snd-function(*track*[0]), snd-function(*track*[1]))
else
return snd-function(*track*)(if (arrayp *track*)
(vector
(snd-function (aref *track* 0)) ; left stereo channel
(snd-function (aref *track* 1))) ; right stereo channel
(snd-function *track*)) ; mono signalmultichan-expand
Last updated
Was this helpful?