https://github.com/pndurette/gTTS
Python library and CLI tool to interface with Google Translate's text-to-speech API
https://github.com/pndurette/gTTS
cli gtts pypi python python-library speech speech-api text-to-speech tts
Last synced: about 1 month ago
JSON representation
Python library and CLI tool to interface with Google Translate's text-to-speech API
- Host: GitHub
- URL: https://github.com/pndurette/gTTS
- Owner: pndurette
- License: mit
- Created: 2014-05-15T02:52:58.000Z (almost 11 years ago)
- Default Branch: main
- Last Pushed: 2025-01-27T02:49:00.000Z (3 months ago)
- Last Synced: 2025-03-05T23:04:01.869Z (about 2 months ago)
- Topics: cli, gtts, pypi, python, python-library, speech, speech-api, text-to-speech, tts
- Language: Python
- Homepage: http://gtts.readthedocs.org/
- Size: 563 KB
- Stars: 2,406
- Watchers: 66
- Forks: 363
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.rst
- License: LICENSE
Awesome Lists containing this project
- my-awesome-github-stars - pndurette/gTTS - Python library and CLI tool to interface with Google Translate's text-to-speech API (Python)
- StarryDivineSky - pndurette/gTTS
README
# 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://pypi.org/project/gTTS/)
[](https://pypi.org/project/gTTS/)
[](https://github.com/pndurette/gTTS/actions)
[](https://codecov.io/gh/pndurette/gTTS)
[](https://github.com/pndurette/gTTS/commits/)
[](http://pepy.tech/project/gtts)
[](https://www.buymeacoffee.com/pndurette)## 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 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](https://translate.google.com) speech functionality and is *different* from [Google Cloud Text-to-Speech](https://cloud.google.com/text-to-speech/).
### Project
- [Questions & community](https://github.com/pndurette/gTTS/discussions)
- [Changelog](CHANGELOG.rst)
- [Contributing](CONTRIBUTING.rst)### Licence
[The MIT License (MIT)](LICENSE) Copyright © 2014-2024 Pierre Nicolas Durette & [Contributors](https://github.com/pndurette/gTTS/graphs/contributors)