Commit
·
595fb7a
1
Parent(s):
6d2da72
add korean and hungarian and v2
Browse files
app.py
CHANGED
|
@@ -394,7 +394,7 @@ description = """
|
|
| 394 |
<img style="margin-top: 0em; margin-bottom: 0em" src="https://bit.ly/3gLdBN6" alt="Duplicate Space"></a>
|
| 395 |
</div>
|
| 396 |
|
| 397 |
-
<a href="https://huggingface.co/coqui/XTTS-
|
| 398 |
<br/>
|
| 399 |
XTTS is built on previous research, like Tortoise, with additional architectural innovations and training to make cross-language voice cloning and multilingual speech generation possible.
|
| 400 |
<br/>
|
|
@@ -409,6 +409,8 @@ Leave a star on the Github <a href="https://github.com/coqui-ai/TTS">🐸TTS</a>
|
|
| 409 |
Arabic: ar, Brazilian Portuguese: pt , Chinese: zh-cn, Czech: cs,<br/>
|
| 410 |
Dutch: nl, English: en, French: fr, Italian: it, Polish: pl,<br/>
|
| 411 |
Russian: ru, Spanish: es, Turkish: tr, Japanese: ja <br/>
|
|
|
|
|
|
|
| 412 |
</p>
|
| 413 |
<img referrerpolicy="no-referrer-when-downgrade" src="https://static.scarf.sh/a.png?x-pxid=0d00920c-8cc9-4bf3-90f2-a615797e5f59" />
|
| 414 |
"""
|
|
@@ -550,6 +552,26 @@ examples = [
|
|
| 550 |
False,
|
| 551 |
True,
|
| 552 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 553 |
]
|
| 554 |
|
| 555 |
|
|
@@ -579,6 +601,8 @@ gr.Interface(
|
|
| 579 |
"ar",
|
| 580 |
"zh-cn",
|
| 581 |
"ja",
|
|
|
|
|
|
|
| 582 |
],
|
| 583 |
max_choices=1,
|
| 584 |
value="en",
|
|
|
|
| 394 |
<img style="margin-top: 0em; margin-bottom: 0em" src="https://bit.ly/3gLdBN6" alt="Duplicate Space"></a>
|
| 395 |
</div>
|
| 396 |
|
| 397 |
+
<a href="https://huggingface.co/coqui/XTTS-v2">XTTS</a> is a Voice generation model that lets you clone voices into different languages by using just a quick 6-second audio clip.
|
| 398 |
<br/>
|
| 399 |
XTTS is built on previous research, like Tortoise, with additional architectural innovations and training to make cross-language voice cloning and multilingual speech generation possible.
|
| 400 |
<br/>
|
|
|
|
| 409 |
Arabic: ar, Brazilian Portuguese: pt , Chinese: zh-cn, Czech: cs,<br/>
|
| 410 |
Dutch: nl, English: en, French: fr, Italian: it, Polish: pl,<br/>
|
| 411 |
Russian: ru, Spanish: es, Turkish: tr, Japanese: ja <br/>
|
| 412 |
+
Korean: ko, Hungarian: hu <br/>
|
| 413 |
+
|
| 414 |
</p>
|
| 415 |
<img referrerpolicy="no-referrer-when-downgrade" src="https://static.scarf.sh/a.png?x-pxid=0d00920c-8cc9-4bf3-90f2-a615797e5f59" />
|
| 416 |
"""
|
|
|
|
| 552 |
False,
|
| 553 |
True,
|
| 554 |
],
|
| 555 |
+
[
|
| 556 |
+
"한번은 내가 여섯 살이었을 때 멋진 그림을 보았습니다.",
|
| 557 |
+
"ko",
|
| 558 |
+
"examples/female.wav",
|
| 559 |
+
None,
|
| 560 |
+
False,
|
| 561 |
+
True,
|
| 562 |
+
False,
|
| 563 |
+
True,
|
| 564 |
+
],
|
| 565 |
+
[
|
| 566 |
+
"Egyszer hat éves koromban láttam egy csodálatos képet",
|
| 567 |
+
"hu",
|
| 568 |
+
"examples/male.wav",
|
| 569 |
+
None,
|
| 570 |
+
False,
|
| 571 |
+
True,
|
| 572 |
+
False,
|
| 573 |
+
True,
|
| 574 |
+
],
|
| 575 |
]
|
| 576 |
|
| 577 |
|
|
|
|
| 601 |
"ar",
|
| 602 |
"zh-cn",
|
| 603 |
"ja",
|
| 604 |
+
"ko",
|
| 605 |
+
"hu"
|
| 606 |
],
|
| 607 |
max_choices=1,
|
| 608 |
value="en",
|