本文介绍了导入scikits.talkbox时出错的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想使用scikits.talkbox,但是导入scikits.talkbox时出现以下错误.

I want to use scikits.talkbox, but i get the following error while import scikits.talkbox.

代码示例

import scipy.io.wavfile
from scikits.talkbox.features.mfcc import mfcc

sample_rate, X = scipy.io.wavfile.read("data/test_1.wav")
ceps, mspec, spec = mfcc(X)

在安装scikits.talkbox时,我使用以下代码

I use following code when installing scikits.talkbox

操作系统ubuntu 16.10python解释器3.5.2 +

Operation system ubuntu 16.10python interpreter 3.5.2+

推荐答案

如果要在Python 3中使用MFCC,请 librosa 可能是您选择的更好的库.

If you want MFCCs in Python 3, librosa is probably the better library of your choice.

这篇关于导入scikits.talkbox时出错的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-19 01:12