Today i'm using MFCC from librosa in python with the code below. It gives an array with dimension(40,40).
import librosa
sound_clip, s = librosa.load(filename.wav)
mfcc=librosa.feature.mfcc(sound_clip, n_mfcc=40, n_mels=60)
Is there a similiar way to extract the GFCC from another library? I do not find it in librosa.
For example essentia:
https://essentia.upf.edu/documentation/essentia_python_tutorial.html https://essentia.upf.edu/documentation/reference/std_GFCC.html
import essentia
import essentia.standard
essentia.standard.GFCC
#Get array with dimension (40,40)