Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -19,8 +19,8 @@ def transcribe(audio):
|
|
19 |
|
20 |
iface = gr.Interface(
|
21 |
fn=transcribe,
|
22 |
-
inputs=gr.
|
23 |
outputs="text"
|
24 |
)
|
25 |
|
26 |
-
iface.launch()
|
|
|
19 |
|
20 |
iface = gr.Interface(
|
21 |
fn=transcribe,
|
22 |
+
inputs=gr.Audio(source="microphone", type="filepath"),
|
23 |
outputs="text"
|
24 |
)
|
25 |
|
26 |
+
iface.launch(share=True)
|