gpt4 book ai didi

python-3.x - Pyttsx3 语音性别(女)

转载 作者:行者123 更新时间:2023-12-03 21:00:51 33 4
gpt4 key购买 nike

我测试了文本转语音模块,即 pyttsx3,它运行良好,但是在打印文本时我没有听到女性的声音。在将性别从男性更改为女性方面有什么建议吗? 顺便说一句,我在树莓派上,并且正在使用 Linux 操作系统。

先感谢您

tts.py

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

最佳答案

现实是,有没有女声包含在核心 pyttsx3 包中。
但是如果你使用 linux/espeak 有一个解决方案。您可以使用其中之一来模拟女声。

engine.setProperty('voice', 'english+f1')
engine.setProperty('voice', 'english+f2')
engine.setProperty('voice', 'english+f3')
engine.setProperty('voice', 'english+f4')
engine.setProperty('voice', 'english_rp+f3') #my preference
engine.setProperty('voice', 'english_rp+f4')
您也可以添加 +f1 到 +f4 与其他基本声音。
有关更多信息,您可以在 github 中查看此问题: pyttsx female voice .

关于python-3.x - Pyttsx3 语音性别(女),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57751564/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com