[chuck-users] WvOut

Michal Seta mis at artengine.ca
Tue Nov 8 09:05:22 EST 2005


this works for me:

noise whitenoise => gain g => WvOut waveOut => dac;
0.9 =>g.gain;
0.5 => whitenoise.gain;
"test.wav"=>waveOut.wavFilename;
2::second => now;
waveOut.closeFile;

but IMHO using the gain ugen here is a little redundant so this should be fine, too:

noise whitenoise => WvOut waveOut => dac;
0.5 => whitenoise.gain;
"test.wav"=>waveOut.wavFilename;
2::second => now;
waveOut.closeFile;

./MiS



More information about the chuck-users mailing list