Skip to main content

google-tts (Google Text-to-Speech), a Python library with Google text-to-speech API

Project description

google-tts

google-tts (Google Text-to-Speech), a Python library with Google text-to-speech API. Write spoken audio data to a file, or get Base64 encoding audio data

PyPI version Python versions Commits Since

Features

  • Text length up to 5000 characters
  • Customizable speak-rate (0.25 - 4.0) and sample-rate
  • Audio encoding: LINEAR16, MP3, OGG-OPUS, MULAW, ALAW
  • MALE and FEMALE voice

Installation

$ pip install google-tts

Quickstart

from GoogleTTS import GoogleTTS
tts = GoogleTTS()
ret = tts.tts('Xin chào!', 'output.mp3')
if 'audioContent' in ret:
    b64 = ret['audioContent']
else:
    error = ret['error']
    code = error['code']
    message = error['message']
    status = error['status']

Licence

The MIT License (MIT) Copyright © 2022 ykuta

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

google-tts-1.0.1.tar.gz (4.3 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page