私はいくつかのオーディオ分析のために 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 に適切に統合するのを手伝ってくれれば素晴らしいことです。ありがとう。