// Four-channel .wav player string directoryPath; "/Users/ddolben/Documents/Stanford/Classes 12-13/music220a/hw2/" => directoryPath; SndBuf s[4]; (directoryPath + "track1.wav") => s[0].read; (directoryPath + "track2.wav") => s[1].read; (directoryPath + "track3.wav") => s[2].read; (directoryPath + "track4.wav") => s[3].read; Binaural4 b4; for(0 => int i;i < 4;i++) { s[i] => dac.chan(i); // Uncomment this line after shredding Binaural4.ck to record // 4-channel audio to binaural 2-channel audio // s[i] => b4.pssp[i]; } s[0].length() => now;