Skip to content

Releases: coqui-ai/TTS

v0.22.0

12 Dec 15:11
fa28f99
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.21.3...v0.22.0

v0.21.3

01 Dec 22:57
2d02015
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.21.2...v0.21.3

No-Code XTTS fine-tuning

We created a UI that you can use to fine-tune XTTS with your data. You can run it on Colab, locally, or on a server.

@WeberJulian has also recorded a video for showing step-by-step tutorial

You can also follow the XTTS docs if you are a read-and-learn type.

v0.21.2

30 Nov 12:05
6d1905c
Compare
Choose a tag to compare

What's Changed

  • Run XTTS models by direct name with versions by @erogol in #3318
  • fix: correctly strip/restore initial punctuation by @eginhard in #3336
  • Fix link to installation instructions by @Vuizur in #3329

New Contributors

Full Changelog: v0.21.1...v0.21.2

This PR allows for running XTTS models with version tags. So you the user can access any version they like.

from TTS.api import TTS

# get v2.0.2
tts = TTS(model_name="xtts_v2.0.2", gpu=True)

# get the latest version
tts = TTS(model_name="xtts", gpu=True)

# generate speech by cloning a voice using default settings
tts.tts_to_file(text="Here is my sample text.",
                file_path="output.wav",
                speaker_wav=["reference.wav", "reference1.wav"],
                language="en")

Making automatic sentence splitting optional. So you can apply any custom logic for processing the text before passing it to the model. Set split_sentences False.

from TTS.api import TTS

# get v2.0.2
tts = TTS(model_name="xtts_v2.0.2", gpu=True)

# generate speech by cloning a voice using default settings
tts.tts_to_file(text="Here is my sample text.",
                file_path="output.wav",
                speaker_wav=["reference.wav", "reference1.wav"],
                language="en",
                split_sentences=False)

v0.21.1

24 Nov 14:17
Compare
Choose a tag to compare
  • Adding a basic Hindi text cleaner. 3206513

v0.21.0

24 Nov 13:38
1542a50
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.20.6...v0.21.0

v0.20.6

17 Nov 14:47
29dede2
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.20.5...v0.20.6

v0.20.5

15 Nov 14:34
88630c6
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.20.4...v0.20.5

v0.20.4

13 Nov 18:33
d96f388
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.20.3...v0.20.4

v0.20.3

10 Nov 11:00
6f1cba2
Compare
Choose a tag to compare

What's Changed

  • XTTS- Torchaudio should use proper backend to load audio by @gorkemgoknar in #3179
  • PyTorch 2.1 Updates (Weight Norm and TorchAudio I/O) by @MattyB95 in #3176
  • xtts/tokenizer: merge duplicate implementations of preprocess_text by @akx in #3170
  • fix(formatters): set missing root_path attribute by @eginhard in #3182

Full Changelog: v0.20.2...v0.20.3

v0.20.2

08 Nov 15:08
46d9c27
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.20.1...v0.20.2