Skip to content

Instantly share code, notes, and snippets.

@piruty
Created January 13, 2021 13:24
Embed
What would you like to do?
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