Pyttsx3 pip
pip install pyttsx3
import pyttsx3
engine = pyttsx3.init()
engine.say("Whetever you want the program to ray")
engine.runAndWait()
TheCoder1001
pip install pyttsx3
import pyttsx3
engine = pyttsx3.init()
engine.say("Whetever you want the program to ray")
engine.runAndWait()
import pyttsx3
engine = pyttsx3.init()
engine.setProperty("rate", 178)
engine.say("I am the text spoken after changing the speech rate.")
engine.runAndWait()
import pyttsx3
engine = pyttsx3.init()
new_vol = .5 #volume between 0 and 1
engine.setProperty("volume", new_vol)
import pyttsx3
engine = pyttsx3.init()
engine.say("I will speak this text")
engine.runAndWait()
pip install pyttsx3
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()