Home:ALL Converter>Mel Frequency Cepstrum Coefficients algorithm

Mel Frequency Cepstrum Coefficients algorithm

Ask Time:2009-10-26T05:04:37         Author:André

Json Formatter

I want to get the timbre of some audio.

To use that I will make the Mel Frequency Cepstrum Coefficients algorithm.

The implementation looks simples (I allready made step 1): 1. Take the Fourier transform of (a windowed excerpt of) a signal. 2. Map the powers of the spectrum obtained above onto the mel scale, using triangular overlapping windows. 3. Take the logs of the powers at each of the mel frequencies. 4. Take the discrete cosine transform of the list of mel log powers, as if it were a signal. 5. The MFCCs are the amplitudes of the resulting spectrum.

In step 2 I know how to pass from frequency to mel scale but I don't know what that triangular overlapping windows means..

How do I do this step correctly? What does triangular overlapping windows mean?

Author:André,eproduced under the CC 4.0 BY-SA copyright license with a link to the original source and this disclaimer.
Link to original article:https://stackoverflow.com/questions/1622062/mel-frequency-cepstrum-coefficients-algorithm
yy