mirror of https://github.com/coqui-ai/TTS.git
commit
a682fa8d56
|
@ -154,7 +154,7 @@ The following extras allow the installation of optional dependencies:
|
||||||
|------|-------------|
|
|------|-------------|
|
||||||
| `all` | All optional dependencies, except `dev` and `docs` |
|
| `all` | All optional dependencies, except `dev` and `docs` |
|
||||||
| `dev` | Development dependencies |
|
| `dev` | Development dependencies |
|
||||||
| `dev` | Dependencies for building the documentation |
|
| `docs` | Dependencies for building the documentation |
|
||||||
| `notebooks` | Dependencies only used in notebooks |
|
| `notebooks` | Dependencies only used in notebooks |
|
||||||
| `server` | Dependencies to run the TTS server |
|
| `server` | Dependencies to run the TTS server |
|
||||||
| `bn` | Bangla G2P |
|
| `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).
|
and learn about the Fairseq models [here](https://github.com/facebookresearch/fairseq/tree/main/examples/mms).
|
||||||
|
|
||||||
```python
|
```python
|
||||||
# TTS with on the fly voice conversion
|
# TTS with fairseq models
|
||||||
api = TTS("tts_models/deu/fairseq/vits")
|
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?",
|
"Wie sage ich auf Italienisch, dass ich dich liebe?",
|
||||||
speaker_wav="target/speaker.wav",
|
|
||||||
file_path="output.wav"
|
file_path="output.wav"
|
||||||
)
|
)
|
||||||
```
|
```
|
||||||
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
import importlib.metadata
|
||||||
|
|
||||||
|
__version__ = importlib.metadata.version("coqui-tts")
|
|
@ -20,7 +20,7 @@ sys.path.insert(0, os.path.abspath("../.."))
|
||||||
autodoc_mock_imports = ["soundfile"]
|
autodoc_mock_imports = ["soundfile"]
|
||||||
|
|
||||||
# -- Project information -----------------------------------------------------
|
# -- Project information -----------------------------------------------------
|
||||||
project = "TTS"
|
project = "coqui-tts"
|
||||||
copyright = "2021 Coqui GmbH, 2020 TTS authors"
|
copyright = "2021 Coqui GmbH, 2020 TTS authors"
|
||||||
author = "Coqui GmbH"
|
author = "Coqui GmbH"
|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,7 @@ include = ["TTS*"]
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "coqui-tts"
|
name = "coqui-tts"
|
||||||
version = "0.24.0"
|
version = "0.24.1"
|
||||||
description = "Deep learning for Text to Speech."
|
description = "Deep learning for Text to Speech."
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
requires-python = ">=3.9, <3.13"
|
requires-python = ">=3.9, <3.13"
|
||||||
|
@ -69,7 +69,7 @@ dependencies = [
|
||||||
"gruut[de,es,fr]==2.2.3",
|
"gruut[de,es,fr]==2.2.3",
|
||||||
# Tortoise
|
# Tortoise
|
||||||
"einops>=0.6.0",
|
"einops>=0.6.0",
|
||||||
"transformers>=4.33.0",
|
"transformers>=4.33.0,<4.41.0",
|
||||||
# Bark
|
# Bark
|
||||||
"encodec>=0.1.1",
|
"encodec>=0.1.1",
|
||||||
# XTTS
|
# XTTS
|
||||||
|
|
Loading…
Reference in New Issue