Answers for "pyttsx3 ichanging voices"

0

pyttsx3 ichanging voices

engine = pyttsx3.init()
voices = engine.getProperty('voices')
for voice in voices:
   engine.setProperty('voice', voice.id)
   engine.say('The quick brown fox jumped over the lazy dog.')
engine.runAndWait()
Posted by: Guest on April-05-2022

Code answers related to "pyttsx3 ichanging voices"

Python Answers by Framework

Browse Popular Code Answers by Language