【发布时间】:2019-01-04 02:43:27
【问题描述】:
我有一个.wav 文件(在本例中称为“piano2.wav”)。
我想在 python 中找到光谱质心。
使用这里另一篇文章中的代码我有这个功能:
import numpy as np
from scipy.io.wavfile import read
def spectral_centroid(x, samplerate=44100):
magnitudes = np.abs(np.fft.rfft(x))
length = len(x)
freqs = np.abs(np.fft.fftfreq(length, 1.0/samplerate)[:length//2+1])
return np.sum(magnitudes*freqs) / np.sum(magnitudes)
我使用 scipy.io.wavfile.read 将 wav 文件读取到一个 numpy 数组中,然后尝试将其输入到上述函数中
a=read("piano2.wav")
print("Spectral centroid is " + spectral_centroid(a[1]))
这是我得到的错误
File "test.py", line 20, in <module>
print("Spectral centroid is " + spectral_centroid(a[1]))
File "test.py", line 8, in spectral_centroid
return np.sum(magnitudes*freqs) / np.sum(magnitudes)
ValueError: operands could not be broadcast together with shapes (302712,2) (151357,)
【问题讨论】:
标签: python arrays numpy scipy wav