gpt4 book ai didi

python - numpy 数组的谱质心

转载 作者:行者123 更新时间:2023-12-01 08:28:52 25 4
gpt4 key购买 nike

我有一个 .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,)

最佳答案

您正在尝试将不同形状的数组(幅度频率)相乘:

a = np.arange(10)
b = np.arange(5)
print(a*b)

ValueError: operands could not be broadcast together with shapes (10,) (5,)

这可能有帮助:

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])
magnitudes = magnitudes[:length//2+1]
return np.sum(magnitudes*freqs) / np.sum(magnitudes)

关于python - numpy 数组的谱质心,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54032515/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com