Add Google Translate TTS to the new wrapper

pull/432/head
Callum Leslie 3 years ago
parent 84a2651400
commit efe3af29d6

@ -0,0 +1,5 @@
from gtts import gTTS
def run(text, filepath):
tts = gTTS(text=text, lang="en", slow=False)
tts.save(filepath)
Loading…
Cancel
Save