Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to Extract an MFCC using C#

Tags:

c#

I'm doing a personal project which requires me to do some signal processing and feature extraction in C#, more specifically extracting MFCCs, is there any available code for calculating MFCCs in C# ?

Also if there's anything well-written for other languages (Objective-C, C, C++, or even Java), I think I'll be able to get the idea and rewrite it in C#.

like image 973
Sarah Avatar asked Oct 18 '10 23:10

Sarah


1 Answers

There is a great tutorial of how to get MFCC (easy to implement in C#): Mel Frequency Cepstral Coefficient (MFCC) tutorial

(I know the thread is years old, but maybe future readers will use the answer...)

like image 176
Ioanna Avatar answered Sep 28 '22 05:09

Ioanna