auFeaMfcc

Audio features of MFCC

Contents

Syntax

Description

mfcc = auFeaMfcc(au, opt, showPlot) returns MFCC (plus their delta value if necessary) from the given audio object au.

[mfcc, yPreEmp] = imFeaMfcc(...) returns the pre-emphasized signals as well.

Example

waveFile='what_movies_have_you_seen_recently.wav';
au=myAudioRead(waveFile);
opt=auFeaMfcc('defaultOpt');
opt.useDelta=2;
mfcc=auFeaMfcc(au, opt, 1);

Top page   Next: bbTreeGen.m