Project

mmfcc

0.0
No commit activity in last 3 years
No release in over 3 years
you can make the Mel-frequency cepstrum, which is a feature spectrum of a song.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 0
 Project Readme

Mmfcc

'Mmfcc' calculation tool for music analysis.

  • you can make mfcc from mp3 files or m4a files.
  • you can also do clustering and make histgrams.

you can install easily.

Install and Execute

you need some tools like sox, lame and SPTK.

you can install by executing:

gem install mmfcc

To execute for making mfcc from mp3:

mkdir mp3
# in case of making from m4a, execute "mkdir m4a"
# put mp3 files into this directry.
mmfcc -m

When you specify where directry is:

mmfcc -m --mp3path "/mp3/is/here"

After you made mfcc, you can make histgram by clustering the mfcc.:

mmfcc -c
# if you specify num of clusters, execute like next one.
# mmfcc -c --cnum 16	

This is fully open source software.