interstellar_ai/py/tts.py
2024-10-11 10:14:02 +02:00

9 lines
192 B
Python

import pyttsx3
class TTS:
@staticmethod
def gen_tts(text):
engine = pyttsx3.init()
engine.setProperty('rate', 70)
engine.say(text)
engine.runAndWait()