best text to speech converter code example

Example 1: text to speech

import pyttsx3
engine = pyttsx3.init()
engine.say("")
engine.runAndWait()

Example 2: text to speech online

import pyttsx3

engine = pyttsx3.init('sapi5')
voices = engine.getProperty('voices')
# you can use print(voices) to see how many voices you have installed
# print(voices[0].id)
# print(voices[1].id)
# print(voices[2].id)
print(voices)
engine.setProperty('voices', voices[0].id)

def speak(audio):
  	print(audio)
    engine.say(audio)
    engine.runAndWait()
    
speak('Hello')

# prints hello and says it

Tags:

Misc Example