import librosa import python_speech_features from scipy.signal.windows import hann n_mfcc = 13 n_mels = 40 n_fft = 512 # in librosa, win_length is assumed to be equal to n_fft implicitly hop_length = ...
This problem is upstream from librosa: your scipy installation does not work. As a general rule, I recommend using the anaconda python distribution to avoid platform problems like this. See here for ...