"C:\\MUSIC220A\\MUSIC220A\\hw5\\" => string myPath; SndBuf snd1 => Binaural4.input[0]; // connect a sndBuf to 1st speaker myPath + "freeSection1.wav" => snd1.read; // load sound (modify path for your system) snd1.gain(.25); SndBuf snd2 => Binaural4.input[1]; // connect a sndBuf to 1st speaker myPath + "freeSection2.wav" => snd2.read; // load sound (modify path for your system) snd2.gain(.4); SndBuf snd3 => Binaural4.input[3]; // connect a sndBuf to 1st speaker myPath + "rhythmSection1.wav" => snd3.read; // load sound (modify path for your system) snd3.gain(.25); SndBuf snd4 => Binaural4.input[3]; // connect a sndBuf to 1st speaker myPath + "rhythmSection2.wav" => snd4.read; // load sound (modify path for your system) snd4.gain(.6); SndBuf snd5 => Binaural4.input[1]; // connect a sndBuf to 1st speaker myPath + "score1_recording.wav" => snd5.read; // load sound (modify path for your system) snd5.gain(.2); SndBuf snd6 => Binaural4.input[2]; // connect a sndBuf to 1st speaker myPath + "score2_recording" => snd6.read; // load sound (modify path for your system) snd1.gain(.1); 60::second => now;