Skip to content

Instantly share code, notes, and snippets.

@fjtkfm
Created January 13, 2021 13:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fjtkfm/a978ba3091e205cf60cbc6482c8215db to your computer and use it in GitHub Desktop.
Save fjtkfm/a978ba3091e205cf60cbc6482c8215db to your computer and use it in GitHub Desktop.
Juliaを使ってwavファイルからMFCCを抽出する
# using Pkg; Pkg.add('WAV'); Pkg.add('MFCC')
using WAV
using MFCC
y, _ = wavread("path/to/wavfile")
mfcc(y)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment