Spaces:
Sleeping
Sleeping
Commit ·
2233c98
1
Parent(s): 9fc8f5b
Update app.py
Browse files
app.py
CHANGED
|
@@ -21,7 +21,7 @@ def transcribe(audio):
|
|
| 21 |
fn=transcribe,
|
| 22 |
inputs=[gr.Audio(source="microphone", type="filepath")],
|
| 23 |
title="Audio-to-text",
|
| 24 |
-
description="
|
| 25 |
outputs=["textbox"]
|
| 26 |
).launch()
|
| 27 |
'''
|
|
@@ -30,6 +30,6 @@ demo = gr.Interface(fn=transcribe ,
|
|
| 30 |
inputs=[gr.Audio(source="microphone", type="filepath")],
|
| 31 |
outputs=[gr.Textbox(label="Result", lines=3)],
|
| 32 |
title="Audio-to-text",
|
| 33 |
-
description="
|
| 34 |
)
|
| 35 |
demo.launch()
|
|
|
|
| 21 |
fn=transcribe,
|
| 22 |
inputs=[gr.Audio(source="microphone", type="filepath")],
|
| 23 |
title="Audio-to-text",
|
| 24 |
+
description="text-to-speech model demo",
|
| 25 |
outputs=["textbox"]
|
| 26 |
).launch()
|
| 27 |
'''
|
|
|
|
| 30 |
inputs=[gr.Audio(source="microphone", type="filepath")],
|
| 31 |
outputs=[gr.Textbox(label="Result", lines=3)],
|
| 32 |
title="Audio-to-text",
|
| 33 |
+
description="text-to-speech model demo"
|
| 34 |
)
|
| 35 |
demo.launch()
|