I want to train my model using 96 MFCC Features. I used Librosa and I didnt get a promising result. I then tried to use python_speech_features, however I can get no more than 26 features! why! This is the shape for the same audio file
using Librosa
x = librosa.feature.mfcc(audio, rate, n_mfcc=96)
x.shape # (96, 204)
using python_speech_features
mfcc_feature = pySpeech.mfcc(audio, rate, 0.025, 0.01, 96, nfft=1200, appendEnergy = True)
mfcc_feature.shape # output => (471, 26)
Any Thoughts!