I\'m just a beginner here in signal processing. Here is my code so far on extracting MFCC feature from an audio file (.WAV):
from python_speech_features import m
from python_speech_features import mfcc import scipy.io.wavfile as wav import matplotlib.pyplot as plt (rate,sig) = wav.read("AudioFile.wav") mfcc_feat = mfcc(sig,rate) print(mfcc_feat) plt.plot(mfcc_feat) plt.show()