作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在我的一个 python 项目中使用 pyttsx3 模块进行文本到语音转换,但我无法为语音选择男性/女性选项。我阅读了关于 https://pypi.org/project/pyttsx3/ 的文档它说使用 voices[0].id/voices[1].id 分别代表男声和女声。但是,这似乎不起作用,因为 2 种声音之间没有显着差异。
我的代码:
import pyttsx3
engine = pyttsx3.init()
voices = engine.getProperty('voices')
engine.setProperty('voice', voices[0].id)
engine.say("Hello World!")
engine.runAndWait()
知道如何改变声音吗?还有没有办法改变文本到语音的语言...类似于自动翻译的东西?
最佳答案
voices = engine.getProperty('voices') #getting details of current voice
#engine.setProperty('voice', voices[0].id) #changing index, changes voices. o for male
engine.setProperty('voice', voices[1].id) #changing index, changes voices. 1 for female
这对我有用。
关于python - 如何在python的pyttsx3模块中改变声音,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64365006/
我是一名优秀的程序员,十分优秀!