Skip to content

Instantly share code, notes, and snippets.

@utahka
Created December 14, 2015 17:41
Show Gist options
  • Save utahka/e75e27634ea885d0b332 to your computer and use it in GitHub Desktop.
Save utahka/e75e27634ea885d0b332 to your computer and use it in GitHub Desktop.
extract mfcc of the raw file
#!bin/sh
file_name=${1:?File name is not set}
base_name=`basename ${file_name} .raw`
x2x +sf ${file_name} | frame -l 2048 -p 1024 -n | mfcc -l 2048 -f 44.1 > ${base_name}.mfcc
@utahka
Copy link
Author

utahka commented Dec 14, 2015

Dependence

  • SPTK

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment