Answers for "how to change voice of pyttsx3"

0

how to change voice of pyttsx3

import pyttsx3
engine = pyttsx3.init()
voices = engine.getProperty('voices')
engine.setProperty('voice', voices[0].id) #changing index changes voices but ony 0 and 1 are working here
engine.say('Hello World')
engine.runAndWait()
Posted by: Guest on March-23-2021

Code answers related to "how to change voice of pyttsx3"

Browse Popular Code Answers by Language