📜  discord python tts - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:42.859000             🧑  作者: Mango

代码示例1
# pip install pyttsx3 or python3 -m pip install pyttsx3
import pyttsx3

engine = pyttsx3.init()
engine.say('Input Text Here')
engine.runAndWait()