Skip to content

PyThaiTTS v0.1.0

Choose a tag to compare

@wannaphong wannaphong released this 25 Aug 10:17
· 68 commits to main since this release
e1e86ab

PyThaiTTS

Open Source Thai Text-to-speech library in Python

License: Apache-2.0 License

Install

Install by pip:

pip install pythaitts

Usage

from pythaitts import TTS

tts = TTS()
file = tts.tts("ภาษาไทย ง่าย มาก มาก") # It will get temp file path.
wave = tts.tts("ภาษาไทย ง่าย มาก มาก",return_type="waveform") # It will get waveform.

You can see more at https://pythainlp.github.io/PyThaiTTS/.