scottgigante / NaverTTS

Unofficial Python API for NAVER Papago TTS
MIT License
31 stars 6 forks source link

NaverTTS

NaverTTS (NAVER Text-to-Speech), a Python library and CLI tool to interface with NAVER CLOVA text-to-speech API. Writes spoken mp3 data to a file, a file-like object (bytestring) for further audio manipulation, or stdout.

PyPI version Python versions PyPi Downloads Travis CI Build

Features

Installation

$ pip install NaverTTS

Quickstart

Command Line:

$ navertts-cli --output hello.mp3 hello

Module:

>>> from navertts import NaverTTS
>>> tts = NaverTTS('hello')
>>> tts.save('hello.mp3')

Licence

This project was adapted from gTTS under the The MIT License (MIT). gTTS Copyright © 2014-2019 Pierre Nicolas Durette. NaverTTS Copyright © 2019 Scott Gigante.