Skip to content

Releases: PyThaiNLP/PyThaiTTS

PyThaiTTS v0.3.0

24 Jan 06:33
Compare
Choose a tag to compare
  • Add Lunarlist TTS model (ONNX)
  • Change default model to Lunarlist TTS model

Full Changelog: v0.2.1...v0.3.0

PyThaiTTS v0.2.1

19 Jul 08:33
Compare
Choose a tag to compare

PyThaiTTS v0.2.0

19 Jul 08:21
6b2ad08
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.1.1...v0.2.0

PyThaiTTS v0.1.1

27 Aug 16:58
Compare
Choose a tag to compare
  • Add KhanomTan TTS v1.1 #2

Full Changelog: v0.1.0...v0.1.1

PyThaiTTS v0.1.0

25 Aug 10:17
e1e86ab
Compare
Choose a tag to compare

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/.