Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -321,6 +321,9 @@ with app:
|
|
| 321 |
with gr.Column():
|
| 322 |
edge_tts_output = gr.Audio(label="Edge Voice", type="filepath")
|
| 323 |
tts_output = gr.Audio(label="Result")
|
|
|
|
|
|
|
|
|
|
| 324 |
but0.click(
|
| 325 |
tts,
|
| 326 |
[
|
|
@@ -333,7 +336,7 @@ with app:
|
|
| 333 |
index_rate,
|
| 334 |
protect0,
|
| 335 |
],
|
| 336 |
-
[info_text, edge_tts_output, tts_output],
|
| 337 |
)
|
| 338 |
with gr.Row():
|
| 339 |
examples = gr.Examples(
|
|
|
|
| 321 |
with gr.Column():
|
| 322 |
edge_tts_output = gr.Audio(label="Edge Voice", type="filepath")
|
| 323 |
tts_output = gr.Audio(label="Result")
|
| 324 |
+
|
| 325 |
+
with gr.Column():
|
| 326 |
+
text_output = gr.Textbox()
|
| 327 |
but0.click(
|
| 328 |
tts,
|
| 329 |
[
|
|
|
|
| 336 |
index_rate,
|
| 337 |
protect0,
|
| 338 |
],
|
| 339 |
+
[info_text, edge_tts_output, tts_output, text_output],
|
| 340 |
)
|
| 341 |
with gr.Row():
|
| 342 |
examples = gr.Examples(
|