interstellar_ai/py/tts.py

11 lines
193 B
Python
Raw Normal View History

2024-09-25 16:34:02 +02:00
import pyttsx3
class TTS:
@staticmethod
def gen_tts(text):
engine = pyttsx3.init()
engine.setProperty('rate', 70)
engine.say(text)
engine.runAndWait()