Update app.py
Browse files
app.py
CHANGED
@@ -13,11 +13,11 @@ 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 |
-
|
17 |
-
|
18 |
-
Upload or select
|
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
|
21 |
|
22 |
"""
|
23 |
article = """
|
@@ -26,6 +26,17 @@ article = """
|
|
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 |
|
|
|
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 |
+
For the demo we selected 6 best performing TTS models from Coqui.ai library. <b>How to use:</b> Select a model from
|
17 |
+
dropdown box. Some multispeaker/multilingual models allow to select speaker and language as well.
|
18 |
+
Upload or select 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 and hear original voice of the model.
|
21 |
|
22 |
"""
|
23 |
article = """
|
|
|
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 |
+
<pre>
|
30 |
+
With few exceptions, Voice Conversion in Coqui.ai is implemented with FreeVC model
|
31 |
+
@misc{li2022freevc,
|
32 |
+
title={FreeVC: Towards High-Quality Text-Free One-Shot Voice Conversion},
|
33 |
+
author={Jingyi li and Weiping tu and Li xiao},
|
34 |
+
year={2022},
|
35 |
+
eprint={2210.15418},
|
36 |
+
archivePrefix={arXiv},
|
37 |
+
primaryClass={cs.SD}
|
38 |
+
}
|
39 |
+
</pre>
|
40 |
</div>
|
41 |
"""
|
42 |
|