利用python提取wav文件的mfcc方法

赶快上路吧,不要有一天我们在对方的葬礼上说,要是当时去了就好了。

如下所示:

import scipy.io.wavfile as wav
from python_speech_features import mfcc
fs, audio = wav.read("abc.wav")
feature_mfcc = mfcc(audio, samplerate=fs)
print(feature_mfcc)
print(feature_mfcc.shape)

注:python_speech_features 不存在, 通过 pip install python_speech_features 进行安装

以上这篇利用python提取wav文件的mfcc方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。

您可能有感兴趣的文章
Python自动化运维-使用Python脚本监控华为AR路由器关键路由变化

Python自动化运维-netmiko模块设备自动发现

Python自动化运维—netmiko模块连接并配置华为交换机

Python自动化运维-利用Python-netmiko模块备份设备配置

Python自动化运维-Paramiko模块和堡垒机实战