pyttsx
我找到了一个可以让你记录的叉子。https://github.com/hick/pyttsx/tree/master/pyttsx
这是我的代码:
engine =pyttsx.init()
voices = engine.getProperty('voices')
engine.setProperty('voice', voices[0].id) #change index to change voices
engine.rec('test this out','test.wav')
问题是......我无法在不关闭外壳的情况下打开文件。但我需要运行更多代码……比如编码为 mp3。
我已经试过了engine.stop()
。我浏览了这里:https ://github.com/hick/pyttsx/blob/master/pyttsx/engine.py ...