SndBuf snd0 => dac.chan(0); // connect a sndBuf to 1st speaker "/Users/manolissueuga/Desktop/stanford/sophomoreyear/music220a/videoambience.aif" => snd0.read; // load sound (modify path for your system) 1::day => now; // stall for 1 day SndBuf snd1 => dac.chan(1); // connect a sndBuf to 1st speaker "/Users/manolissueuga/Desktop/stanford/sophomoreyear/music220a/videoinstruments.aif" => snd1.read; // load sound (modify path for your system) 1::day => now; // stall for 1 day SndBuf snd2 => dac.chan(2); // connect a sndBuf to 1st speaker "/Users/manolissueuga/Desktop/stanford/sophomoreyear/music220a/videovocals.aif" => snd2.read; // load sound (modify path for your system) 1::day => now; // stall for 1 day SndBuf snd3 => dac.chan(3); // connect a sndBuf to 1st speaker "/Users/manolissueuga/Desktop/stanford/sophomoreyear/music220a/videodrums.aif" => snd3.read; // load sound (modify path for your system) 1::day => now; // stall for 1 day