Update app.py
Browse files
app.py
CHANGED
@@ -8,9 +8,26 @@ from TTS.api import TTS
|
|
8 |
from TTS.utils.manage import ModelManager
|
9 |
|
10 |
|
11 |
-
title = ""
|
12 |
-
description = """
|
13 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
|
15 |
|
16 |
class TTS_local(TTS):
|
|
|
8 |
from TTS.utils.manage import ModelManager
|
9 |
|
10 |
|
11 |
+
title = "Coqui.ai: Text-to-Speech generation and Voice Conversion"
|
12 |
+
description = """
|
13 |
+
Coqui.ai is the library for advanced Text-to-Speech generation and Voice Conversion. It's built on the latest research,
|
14 |
+
was designed to achieve the best trade-off among ease-of-training, speed and quality. Coqui.ai comes with
|
15 |
+
pretrained models, tools for measuring dataset quality and already used in 20+ languages for products and research projects.
|
16 |
+
<b>How to use:</b> For the demo we preselected just 9 best performing TTS models from Coqui.ai library. Select a model.
|
17 |
+
There are multispiker/multilingual models [actually only one :) ] that allow to select speaker and/or language.
|
18 |
+
Upload or select from dropdown box a voice to be cloned [or record using the microphone -TBD].
|
19 |
+
Enter text in the text box or upload audio file [or record using the microphone -TBD]. Press "Text to speech" or
|
20 |
+
"Convert audio" button. For TTS task you can choose not to clone voice but hear original voice of the model.
|
21 |
+
|
22 |
+
"""
|
23 |
+
article = """
|
24 |
+
<div style='margin:20px auto;'>
|
25 |
+
<p>References: <a href="https://github.com/coqui-ai/TTS">original GitHub</a> |
|
26 |
+
<a href="https://tts.readthedocs.io/en/latest/">Documentation</a> |
|
27 |
+
<a href="https://app.coqui.ai/auth/signin">Voice cloning on Coqui Studio</a> |
|
28 |
+
<a href="https://github.com/erogol/TTS-papers">Text-to-Speech paper collection</a>
|
29 |
+
</div>
|
30 |
+
"""
|
31 |
|
32 |
|
33 |
class TTS_local(TTS):
|