From: Paul Brossier Date: Thu, 3 Jul 2014 22:39:12 +0000 (-0300) Subject: python/demos/demo_mfcc.py: use n_coeffs X-Git-Tag: 0.4.4~310 X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=ce24ae0f904c694173c92e9fb0594682df2277ec;p=aubio.git python/demos/demo_mfcc.py: use n_coeffs --- diff --git a/python/demos/demo_mfcc.py b/python/demos/demo_mfcc.py index 18eb9a48..d12d3b57 100755 --- a/python/demos/demo_mfcc.py +++ b/python/demos/demo_mfcc.py @@ -24,7 +24,7 @@ samplerate = s.samplerate p = pvoc(win_s, hop_s) m = mfcc(win_s, n_filters, n_coeffs, samplerate) -mfccs = zeros([13,]) +mfccs = zeros([n_coeffs,]) frames_read = 0 while True: samples, read = s()