This line of code is throwing an error:
import wave
...
wave.open('/path/to/wavfile/1a.wav', "rb")
The 1a.wav is in the NIST SPHERE format. I don't have much experience with the wav formats, but is there anyway I could transform it into RIFF format so that I can open it with the "wave" library?
Thank you in advance!