scipy.io.wavfile.read返回填充了零的数组

时间:2016-05-02 21:20:43

标签: python scipy wav

我想通过使用scipy.io.wavfile.read方法从wav文件中获取数据:

import scipy.io.wavfile as wav

frame,data = wav.read('Delta.wav','r')
print(data)

不幸的是,这段代码返回一个填充了零的二维数组:

[[0 0]
 [0 0]
 [0 0]
 ..., 
 [0 0]
 [0 0]
 [0 0]]

0 个答案:

没有答案