使用python中的PYTTSX模块更改语音

使用python中的PYTTSX模块更改语音,第1张

使用python中的PYTTSX模块更改语音

嗯,您应该按照该示例中的建议使用

engine.setProperty('voice',voice_id)
voice_id
作为系统中语音的ID;您可以从中获取可用语音的列表
engine.getProperty('voices')
):

engine = pyttsx.init()voices = engine.getProperty('voices')for voice in voices:   engine.setProperty('voice', voice.id)  # changes the voice   engine.say('The quick brown fox jumped over the lazy dog.')engine.runAndWait()

您不必循环,可以设置语音ID而无需

for
循环。
像这样做:

engine = pyttsx.init()engine.setProperty('voice', voice_id)  # use whatever voice_id you'd likeengine.say('The quick brown fox jumped over the lazy dog.')


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5648874.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存