gTTS

Python library and CLI tool to interface with Google Translate's text-to-speech API

MIT License

Downloads
606.6K
Stars
2.2K
Committers
35

gTTS

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. https://gtts.readthedocs.io/

Features

  • Customizable speech-specific sentence tokenizer that allows for unlimited lengths of text to be read, all while keeping proper intonation, abbreviations, decimals and more;
  • Customizable text pre-processors which can, for example, provide pronunciation corrections;

Installation

$ pip install gTTS

Quickstart

Command Line:

$ gtts-cli 'hello' --output hello.mp3

Module:

>>> from gtts import gTTS
>>> tts = gTTS('hello')
>>> tts.save('hello.mp3')

See https://gtts.readthedocs.io/ for documentation and examples.

Disclaimer

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.

Project

Licence

The MIT License (MIT) Copyright © 2014-2024 Pierre Nicolas Durette & Contributors

Package Rankings
Top 1.39% on Pypi.org
Top 2.58% on Alpine-v3.18
Top 6.71% on Alpine-v3.16
Top 18.13% on Conda-forge.org
Top 4.89% on Alpine-v3.14
Top 4.21% on Alpine-v3.13
Top 3.78% on Alpine-edge
Top 8.17% on Proxy.golang.org
Top 4.0% on Alpine-v3.15
Top 4.18% on Alpine-v3.17
Badges
Extracted from project README
PyPI version Python versions Tests workflow codecov Commits Since PyPi Downloads Buy me a Coffee
Related Projects