Spaces:
Running
Running
add title
Browse files
app.py
CHANGED
|
@@ -105,6 +105,8 @@ def inference(
|
|
| 105 |
|
| 106 |
|
| 107 |
def main():
|
|
|
|
|
|
|
| 108 |
text = gr.Textbox(
|
| 109 |
lines=4,
|
| 110 |
label="Text (Provide either text, or upload a newline separated text file below):",
|
|
@@ -149,6 +151,8 @@ def main():
|
|
| 149 |
seed,
|
| 150 |
split_by_newline,
|
| 151 |
],
|
|
|
|
|
|
|
| 152 |
outputs=[output_audio, output_text],
|
| 153 |
)
|
| 154 |
interface.launch()
|
|
|
|
| 105 |
|
| 106 |
|
| 107 |
def main():
|
| 108 |
+
title = "Tortoise TTS 🐢"
|
| 109 |
+
description = "A text-to-speech interface for Tortoise TTS, Strong multi-voice capabilities, Highly realistic prosody and intonation."
|
| 110 |
text = gr.Textbox(
|
| 111 |
lines=4,
|
| 112 |
label="Text (Provide either text, or upload a newline separated text file below):",
|
|
|
|
| 151 |
seed,
|
| 152 |
split_by_newline,
|
| 153 |
],
|
| 154 |
+
title=title,
|
| 155 |
+
description=description,
|
| 156 |
outputs=[output_audio, output_text],
|
| 157 |
)
|
| 158 |
interface.launch()
|