ValueError:只能使用一维数组

时间:2017-06-15 05:00:25

标签: python matplotlib scipy

import scipy
from matplotlib.pyplot import specgram
sample_rate,X = scipy.io.wavfile.read("a3.wav")
print(X.shape)
specgram(X,Fs=sample_rate,xextend=(0,30))

我是python的新手。并首次使用python进行音频处理。并有以下问题的结构。请帮忙。
我想绘制波形文件的频谱图。 在上面的python代码示例中,我得到了以下输出:

(528038, 2)
ValueError: only 1-dimensional arrays can be used

0 个答案:

没有答案