forked from React-Group/interstellar_ai
10 lines
193 B
Python
10 lines
193 B
Python
import pyttsx3
|
|
|
|
|
|
class TTS:
|
|
@staticmethod
|
|
def gen_tts(text):
|
|
engine = pyttsx3.init()
|
|
engine.setProperty('rate', 70)
|
|
engine.say(text)
|
|
engine.runAndWait()
|