pydrobert speech:使用Python进行语音处理 源码
pydrobert-speech 这个纯python库允许灵活地计算语音功能。 例如,给定的功能配置称为fbanks.json : { " name " : " stft " , " bank " : " fbank " , " frame_length_ms " : 25 , " include_energy " : true , " pad_to_nearest_power_of_two " : true , " window_function " : " hanning " , " use_power " : true } 您可以使用以下命令计算三角形重叠的滤波器,例如或 import json from pydrobert . speech import * # get the feature computer ready params = j
用户评论