Python scikits.talkbox无法从pip使用 - 想要使用lpc

时间:2017-09-17 20:48:23

标签: python macos pip scikits

我试图在Mac OS X上使用scikits.talkbox.lpc。以下是我尝试的内容:

#Python 2      
sudo pip install scikits.talkbox. (Edit: no dot after talkbox here)
python
>>> from scikits.talkbox import lpc
  

ImportError:没有名为scikits.talkbox的模块

#Python 3
sudo pip3 install scikits.talkbox  
python3    
>>> from scikits.talkbox import lpc   
  

追踪(最近一次通话):     文件"",第1行,in     文件" /usr/local/Cellar/python3/3.6.2/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/scikits/talkbox/ init .py",第3行,在       来自工具导入*   ModuleNotFoundError:没有名为' tools'

知道如何使用scikits.talkbox吗?或者如果它不再可用,是否有一些推荐的方法从音频中提取LPC功能?

this question建议使用librosa - 但它们没有lpc模块。

1 个答案:

答案 0 :(得分:1)

我在lpc来源中看不到任何scikits.talkbox。但是有一个子模块linpred.levinson_lpc;我想你想要

from scikits.talkbox.linpred.levinson_lpc import lpc