Mel Frequency Cepstral Coefficients (MFCC) in C/C++

霸气de小男生 提交于 2019-12-07 03:13:16

问题


Is there any implementation of MFCC available in C/C++? Any source codes or libraries?

I've already found http://code.google.com/p/libmfcc/ which seem to be good.


回答1:


A recap in 2016:

  • libmfcc is simple, MIT license, unsupported since 2010.
  • YAAFE provides MFCCs and other features, LGPLv3, unsupported since 2011.
  • Kaldi is overkill, but it can be used just for the MFCC. Apache License v2.0, and still supported.
  • PocketSphinx is the CMU toolkit for speech recognition, CMU license (BSD-style), and still supported.
  • SPTK is a research toolkit from Japan, Modified BSD license, and still supported.
  • OpenSMILE has two licenses: (1) a flexible one for research and personal use, and (2) a commercial one.

Note I mention PocketSphinx, instead of Sphinx, as the latter is written in Java.




回答2:


You could use the frontend from an open source speech recognition toolkit such as Kaldi or Sphinx.



来源:https://stackoverflow.com/questions/13124521/mel-frequency-cepstral-coefficients-mfcc-in-c-c

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!