pyttsx:一旦开始就停止录制

时间:2017-04-24 23:03:27

标签: python pyttsx

我发现了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 ......

1 个答案:

答案 0 :(得分:0)

使用 pyttsx3 代替pyttsx:

import pyttsx3

engine = pyttsx3.init()
engine.say('Nice to meet you')
engine.runAndWait()