gTTS (Google Text-to-Speech), a Python library and CLI tool to interface with Google Translate text-to-speech API
gTTS (Google Text-to-Speech), a Python library and CLI tool to interface with Google Translate's text-to-speech API.
Write spoken mp3
data to a file, a file-like object (bytestring) for further audio manipulation, or stdout
.
http://gtts.readthedocs.org/
$ pip install gTTS
Command Line:
$ gtts-cli 'hello' --output hello.mp3
Module:
>>> from gtts import gTTS
>>> tts = gTTS('hello')
>>> tts.save('hello.mp3')
See http://gtts.readthedocs.org/ for documentation and examples.
This project is not affiliated with Google or Google Cloud. Breaking upstream changes can occur without notice. This project is leveraging the undocumented Google Translate speech functionality and is different from Google Cloud Text-to-Speech.
The MIT License (MIT) Copyright © 2014-2023 Pierre Nicolas Durette & Contributors