我一直在为 Praat 做一些音频分析的工作。但是,我发现了一些在 Python 中使用 Praat 的库,并且想做同样的事情。
该站点提供了许多可以在使用 praat 时提取的功能。我已按照他的说明将其“集成”到 python 中。http://homepage.univie.ac.at/christian.herbst//python/index.html 但是,我无法让它工作。它返回错误:\ OSError: [Errno 2] No such file or directory
我还找到了另一个库:https ://pypi.python.org/pypi/python-praat-scripts 。这也会返回错误(当我运行下面的代码时): OSError: [Errno 13] Permission denied
from praatinterface import PraatLoader
pl = PraatLoader(praatpath ='/Users/user/Downloads/praat6015_mac64.dmg')
text = pl.run_script('formants.praat', 'sample.wav', 5, 5500)
formants = pl.read_praat_out(text)
如果有人可以帮助我将 praat 正确集成到 python,那就太好了。谢谢。