python/demos/demo_mfcc.py: add comment
authorPaul Brossier <piem@piem.org>
Tue, 26 May 2015 08:59:15 +0000 (10:59 +0200)
committerPaul Brossier <piem@piem.org>
Tue, 26 May 2015 08:59:15 +0000 (10:59 +0200)
python/demos/demo_mfcc.py

index d12d3b5..2242f0c 100755 (executable)
@@ -6,7 +6,7 @@ from numpy import array, vstack, zeros
 
 win_s = 512                 # fft size
 hop_s = win_s / 4           # hop size
-n_filters = 40
+n_filters = 40              # must be 40 for mfcc
 n_coeffs = 13
 samplerate = 44100