Merge pull request #33 from idiap/versions

Fix XTTS streaming
This commit is contained in:
Enno Hermann 2024-05-29 14:16:36 +01:00 committed by GitHub
commit a682fa8d56
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 9 additions and 7 deletions

View File

@ -154,7 +154,7 @@ The following extras allow the installation of optional dependencies:
|------|-------------|
| `all` | All optional dependencies, except `dev` and `docs` |
| `dev` | Development dependencies |
| `dev` | Dependencies for building the documentation |
| `docs` | Dependencies for building the documentation |
| `notebooks` | Dependencies only used in notebooks |
| `server` | Dependencies to run the TTS server |
| `bn` | Bangla G2P |
@ -270,11 +270,10 @@ You can find the language ISO codes [here](https://dl.fbaipublicfiles.com/mms/tt
and learn about the Fairseq models [here](https://github.com/facebookresearch/fairseq/tree/main/examples/mms).
```python
# TTS with on the fly voice conversion
# TTS with fairseq models
api = TTS("tts_models/deu/fairseq/vits")
api.tts_with_vc_to_file(
api.tts_to_file(
"Wie sage ich auf Italienisch, dass ich dich liebe?",
speaker_wav="target/speaker.wav",
file_path="output.wav"
)
```

View File

@ -0,0 +1,3 @@
import importlib.metadata
__version__ = importlib.metadata.version("coqui-tts")

View File

@ -20,7 +20,7 @@ sys.path.insert(0, os.path.abspath("../.."))
autodoc_mock_imports = ["soundfile"]
# -- Project information -----------------------------------------------------
project = "TTS"
project = "coqui-tts"
copyright = "2021 Coqui GmbH, 2020 TTS authors"
author = "Coqui GmbH"

View File

@ -11,7 +11,7 @@ include = ["TTS*"]
[project]
name = "coqui-tts"
version = "0.24.0"
version = "0.24.1"
description = "Deep learning for Text to Speech."
readme = "README.md"
requires-python = ">=3.9, <3.13"
@ -69,7 +69,7 @@ dependencies = [
"gruut[de,es,fr]==2.2.3",
# Tortoise
"einops>=0.6.0",
"transformers>=4.33.0",
"transformers>=4.33.0,<4.41.0",
# Bark
"encodec>=0.1.1",
# XTTS