Answers for "how to slow the voice of pyttsx3 python"

C
1

how to slow voice speed in pyttsx3

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()
Posted by: Guest on February-27-2021

Code answers related to "C"

Browse Popular Code Answers by Language