标签: 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]]