Update app.py
Browse files
app.py
CHANGED
@@ -110,11 +110,11 @@ mf_transcribe = gr.Interface(
|
|
110 |
|
111 |
file_transcribe = gr.Interface(
|
112 |
fn=transcribe,
|
113 |
-
inputs=[
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
outputs="text",
|
119 |
title="Whisper Large V3: Transcribe Audio",
|
120 |
description=(
|
|
|
110 |
|
111 |
file_transcribe = gr.Interface(
|
112 |
fn=transcribe,
|
113 |
+
#inputs=[
|
114 |
+
# gr.Audio(sources="upload", type="filepath", label="Audio file"),
|
115 |
+
# gr.Radio(["transcribe", "translate"], label="Task", value="transcribe"),
|
116 |
+
#],
|
117 |
+
inputs=gr.File(file_count='multiple')
|
118 |
outputs="text",
|
119 |
title="Whisper Large V3: Transcribe Audio",
|
120 |
description=(
|