Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

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()
Source by pyttsx3.readthedocs.io #
 
PREVIOUS NEXT
Tagged: #ichanging #voices
ADD COMMENT
Topic
Name
4+1 =