1

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 ...

4

1 回答 1

0

使用pyttsx3代替 pyttsx:

import pyttsx3

engine = pyttsx3.init()
engine.say('Nice to meet you')
engine.runAndWait()
于 2018-01-05T05:29:29.783 回答