Trans.nvim/pytts/say.py

8 lines
81 B
Python
Raw Normal View History

2023-04-24 13:02:48 +08:00
import pyttsx3
import sys
a = pyttsx3.init()
a.say(sys.argv[1])
a.runAndWait()