python_speech_features
python_speech_features的比较好用的地方就是自带预加重参数,只需要设定preemph的值,就可以对语音信号进行预加重,增强高频信号。...python_speech_features模块提供的函数主要包括两个:MFCC和FBank。...API定义如下:
python_speech_features.base.fbank(signal, samplerate=16000, winlen=0.025, winstep=0.01, nfilt...python_speech_features.base.logfbank(signal, samplerate=16000, winlen=0.025, winstep=0.01, nfilt=26,...你可以在这里使用numpy窗口函数 例如:winfunc=numpy.hamming
MFCC特征和过滤器特征
from python_speech_features import mfcc, logfbank