In looking at the output of this line of code:
mfccs = librosa.feature.mfcc(y=librosa_audio, sr=librosa_sample_rate, n_mfcc=40)
print("MFCC Shape = ", mfccs.shape)
I get a response of MFCC Shape = (40,1876)
. What do these two numbers represent? I looked at the librosa website but still could not decipher what are these two values.
Any insights will be greatly appreciated!