Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

compute mfcc python

import librosa
audio_path = 'audio-path.wav'

x , sr = librosa.load(audio_path)

mfccs = librosa.feature.mfcc(x, sr=sr)
print(mfccs.shape) #Displaying  the MFCCs:
librosa.display.specshow(mfccs, sr=sr, x_axis='time')
 
PREVIOUS NEXT
Tagged: #compute #mfcc #python
ADD COMMENT
Topic
Name
9+4 =