我发现了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')
问题是......我无法在不关闭shell的情况下打开文件。但是我需要运行更多的代码......比如编码到mp3。
我已经尝试engine.stop()
了。我在这里看了看:https://github.com/hick/pyttsx/blob/master/pyttsx/engine.py ......
答案 0 :(得分:0)
使用 pyttsx3 代替pyttsx:
import pyttsx3
engine = pyttsx3.init()
engine.say('Nice to meet you')
engine.runAndWait()