Answer the question
In order to leave comments, you need to log in
how to change voice in pyttsx3?
It is me again. This time the alignment is as follows:
There is the most banal program for pronouncing words in python:
import pyttsx3
tts = pyttsx3.init()
voices = tts.getProperty('voices')
tts.setProperty("voice", "ru")
for voice in voices:
if voice.name == "Irina":
tts.setProperty("voice", voice.id)
tts.say("Привет")
tts.runAndWait()
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question