Skip to content

ykutaykuta/google-tts

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

Python library with Google text-to-speech API

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages