我试图通过以下代码
来阅读.wav音频文件from scipy.io import wavfile
file = 'PC1_20090513_050000_0010.wav'
rate, audio = wavfile.read(file)
但它显示以下错误:
raise ValueError("Unexpected end of file.")
ValueError: Unexpected end of file.
任何想法??
答案 0 :(得分:3)
您似乎在wav文件(http://soundfile.sapp.org/doc/WaveFormat/)的头部中获得了错误的数据。 VLC有时可以处理。
尝试用任何软重新保存此文件。例如,使用sox(http://sox.sourceforge.net/)并重新采样到相同的频率(如下所示:sox.exe wav_file -r frequency out_wav_file
)