📜  如何在 pyttsx3 中更改语速 - Python 代码示例

📅  最后修改于: 2022-03-11 14:47:11.592000             🧑  作者: Mango

代码示例1
import pyttsx3

engine = pyttsx3.init()
engine.setProperty("rate", 178)
engine.say("I am the text spoken after changing the speech rate.")
engine.runAndWait()