Closed TeaPoly closed 4 years ago
import python_speech_features
y, sr = soundfile.read(file, dtype='float32') log_mfbank = python_speech_features.logfbank(y, samplerate=16000, nfilt=80, winlen=0.025, winstep=0.01, nfft=512, lowfreq=125, highfreq=7600, preemph=0.97, winfunc=np.hanning) std = np.std(features, axis=0) print(np.min(std))
I have same problem. Have you fixed it?
import python_speech_features
y, sr = soundfile.read(file, dtype='float32') log_mfbank = python_speech_features.logfbank(y, samplerate=16000, nfilt=80, winlen=0.025, winstep=0.01, nfft=512, lowfreq=125, highfreq=7600, preemph=0.97, winfunc=np.hanning) std = np.std(features, axis=0) print(np.min(std))