Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -23,8 +23,8 @@ def transcribe_audio(file):
|
|
23 |
# Set up the Gradio interface
|
24 |
gr.Interface(
|
25 |
fn=transcribe_audio,
|
26 |
-
inputs=gr.Audio(
|
27 |
outputs="text",
|
28 |
-
title="
|
29 |
-
description="Upload an audio file in Persian, and this
|
30 |
).launch()
|
|
|
23 |
# Set up the Gradio interface
|
24 |
gr.Interface(
|
25 |
fn=transcribe_audio,
|
26 |
+
inputs=gr.Audio(type="file"), # Updated here
|
27 |
outputs="text",
|
28 |
+
title="Persian ASR Transcription",
|
29 |
+
description="Upload an audio file in Persian, and this app will transcribe it."
|
30 |
).launch()
|