我正在尝试使用scipy读取* .wav文件。我做了以下事情:
import scipy
x = scipy.io.wavfile.read('/usr/share/sounds/purple/receive.wav')
由于这段代码,我得到了:
Traceback (most recent call last):
File "test3.py", line 2, in <module>
x = scipy.io.wavfile.read('/usr/share/sounds/purple/receive.wav')
AttributeError: 'module' object has no attribute 'io'
有人知道这里有什么问题吗?提前谢谢。
答案 0 :(得分:8)
正如错误所说,scipy模块没有'io'。
io.wavfile
是子模块,您需要from scipy.io import wavfile
然后执行wavfile.read("/usr/share/sounds/purple/receive.wav")
这给我一个错误,你正在使用的文件作为一个例子,但是......