Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -39,4 +39,17 @@ gr.Interface(
|
|
| 39 |
outputs=[
|
| 40 |
"textbox"
|
| 41 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 42 |
live=True).launch()
|
|
|
|
| 39 |
outputs=[
|
| 40 |
"textbox"
|
| 41 |
],
|
| 42 |
+
|
| 43 |
+
live=True).launch()
|
| 44 |
+
|
| 45 |
+
gr.Interface(
|
| 46 |
+
title = 'OpenAI Whisper ASR Gradio Web UI',
|
| 47 |
+
fn=transcribe,
|
| 48 |
+
inputs=[
|
| 49 |
+
gr.inputs.Audio(source="microphone", type="filepath")
|
| 50 |
+
],
|
| 51 |
+
outputs=[
|
| 52 |
+
"textbox"
|
| 53 |
+
],
|
| 54 |
+
|
| 55 |
live=True).launch()
|