import pyttsx3
engine = pyttsx3.init()
engine.say("I will speak this text")
engine.runAndWait()
pip install pyttsx3
pip install pyttsx3
pip install pipwin
pipwin install pyttsx3
pyttsx3
import pyttsx3
engine = pyttsx3.init()
engine.say("I will speak this text")
engine.runAndWait()
import pyttsx3
engine = pyttsx3.init()
engine.save_to_file('Hello World' , 'test.mp3')
engine.runAndWait()
import pyttsx3
from pyttsx3 import *
engine = pyttsx3.init()
voices = engine.getProperty('voices')
i = 0
for voice in voices:
i = i + 1
print(f"{voice.id}, {voice.name}")
engine.setProperty('voice', voices[i])
engine.say("Hello")
engine.runAndWait()