// @title Vocals.ck SndBuf voc => PitShift p => dac; "../myOhMy/lead_vocals.wav" => voc.read; 1.0 => p.mix; while (true) { // for a random but intelligible sound //now + Std.rand2(300,3000)::ms => time deltaTime; // for a robot like sound now + Std.rand2(100,200)::ms => time deltaTime; Std.rand2f(0.5,2.0) => p.shift; while (deltaTime > now) { 1::samp => now; } }