Skip to content

Latest commit

 

History

History
32 lines (21 loc) · 556 Bytes

gfcc.rst

File metadata and controls

32 lines (21 loc) · 556 Bytes

spafe.features.gfcc

.. automodule:: spafe.features.gfcc
    :members:
    :undoc-members:
    :show-inheritance:

Example:

import scipy.io.wavfile
import spafe.utils.vis as vis
from spafe.features.mfcc import gfcc


#read wave file
fs, sig = scipy.io.wavfile.read('../test.wav')

# compute gfccs
gfccs  = gfcc(sig, 13)

# visualize features
vis.visualize(gfccs, LMFCC Coefficient Index','Frame Index')

alternate text