📜  如何在 pyttsx3 中减慢语音速度 - C 编程语言代码示例

📅  最后修改于: 2022-03-11 15:04:43.534000             🧑  作者: Mango

代码示例1
import pyttsx3.
engine = pyttsx3. init()
engine. setProperty("rate", 178) // 2nd parameter sets speed
engine. say("I am the text spoken after changing the speech rate.")
engine. runAndWait()