*** empty log message ***
[chuck-blob.git] / exile / v1 / examples / sndbuf.ck
blob320943f43b09ece7b975d03f8405cfaa2c30fb8f
1 // the patch 
2 sndbuf buf => dac;
3 // load the file
4 "data/snare.wav" => buf.read;
5 // set the playback rate (1.0 is default)
6 1.0 => buf.play; 
8 // time loop
9 while( true )
11     0 => buf.pos;
12     std.rand2f(.2,.9) => buf.gain;
13     100::ms => now;