“Pobieranie głosu Pyttsx3 Jarvis” Kod odpowiedzi

Jak zmienić szybkość mowy w 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

Pobieranie głosu Pyttsx3 Jarvis


from gtts import gTTS
import os
tts = gTTS(text='Hello World', lang='en')
tts.save("hello.mp3")
os.system("mpg321 hello.mp3")
Kapil dhaked Dhaked

Odpowiedzi podobne do “Pobieranie głosu Pyttsx3 Jarvis”

Pytania podobne do “Pobieranie głosu Pyttsx3 Jarvis”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu