Mel Powers
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from essentia.standard import MelBands | |
# Compute the mel band powers | |
melbands = MelBands(lowFrequencyBound=f_low, | |
highFrequencyBound=f_high, | |
inputSize=1024, | |
numberBands=n_bands, | |
type='magnitude', # We already computed the power. | |
sampleRate=44100) | |
mels = melbands(spec) | |
# Plot the mel band powers | |
plt.bar(np.arange(len(mels)), mels, align='center') | |
plt.title('Mel Band Powers') | |
plt.xlabel('Mel Bands') | |
plt.ylabel('Power') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment