Skip to content

Releases: PyThaiNLP/PyThaiTTS

PyThaiTTS v0.4.2

31 Jan 04:49
182ff6e

Choose a tag to compare

PyThaiTTS v0.4.1

30 Jan 16:48
d75cb36

Choose a tag to compare

What's Changed

  • Fix parameter name in deploy_docs workflow by @Copilot in #19
  • Fix missing requirement soundfile / update readme by @kittinan in #20

New Contributors

Full Changelog: v0.4.0...v0.4.1

PyThaiTTS v0.4.0

28 Jan 15:05
089cf42

Choose a tag to compare

What's Changed

  • PyThaiTTS v0.2.0 by @wannaphong in #5
  • PyThaiTTS 0.2.1 by @wannaphong in #6
  • PyThaiTTS v0.3.0 by @wannaphong in #7
  • Add Thai text preprocessing: number-to-text conversion and mai yamok expansion by @Copilot in #12
  • Add Dockerfile for containerized deployment by @Copilot in #11
  • Add VachanaTTS2 model support by @Copilot in #13
  • Add CI workflow for automated testing by @Copilot in #14
  • PyThaiTTS 0.4.0 by @wannaphong in #15
  • Fix deploy_docs workflow: Python 3.7 unavailable on GitHub Actions by @Copilot in #16
  • Modernize pythonpublish.yml workflow by @Copilot in #17
  • v0.4.0 by @wannaphong in #18

New Contributors

  • @Copilot made their first contribution in #12

Full Changelog: v0.3.0...v0.4.0

PyThaiTTS v0.3.0

24 Jan 06:33

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

Choose a tag to compare

PyThaiTTS v0.2.0

19 Jul 08:21
6b2ad08

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

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

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