SndBuf snd0 => Binaural4.input[0]; // connect a sndBuf to 1st speaker me.sourceDir() + "/files/" + "LeftFront.wav" => snd0.read; // load sound (modify path for your system) SndBuf snd1 => Binaural4.input[1]; // 2nd speaker as channel 1 me.sourceDir() + "/files/" + "RightFront.wav" => snd1.read; // read file for channel 1 SndBuf snd2 => Binaural4.input[2]; // 3rd speaker as channel 2 me.sourceDir() + "/files/" + "LeftRear.wav" => snd2.read; // read file for channel 2 SndBuf snd3 => Binaural4.input[3]; // 4th speaker as channel 3 me.sourceDir() + "/files/" + "RightRear.wav" => snd3.read; // read file for channel 3 1::day => now; // stall for 1 day