“Cómo cambiar la voz en pyttsx3” Código de respuesta

Cómo cambiar la voz de pyttsx3

import pyttsx3
engine = pyttsx3.init()
voices = engine.getProperty('voices')
engine.setProperty('voice', voices[0].id) #changing index changes voices but ony 0 and 1 are working here
engine.say('Hello World')
engine.runAndWait()
Hurt Hawk

Cómo cambiar la tasa de discurso en Pyttsx3

import pyttsx3

engine = pyttsx3.init()
engine.setProperty("rate", 178)
engine.say("I am the text spoken after changing the speech rate.")
engine.runAndWait()
Homeless Hare

Cómo cambiar la voz en pyttsx3

import pyttsx3

engine = pyttsx3.init()
engine.setProperty("rate", 178)
engine.say("I am the text spoken after changing the speech rate.")
engine.runAndWait()
vidhi Kumari

Respuestas similares a “Cómo cambiar la voz en pyttsx3”

Preguntas similares a “Cómo cambiar la voz en pyttsx3”

Más respuestas relacionadas con “Cómo cambiar la voz en pyttsx3” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código