Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -359,12 +359,14 @@ with gr.Blocks(title="Transcript Enhancer") as demo:
|
|
359 |
info="Your key is used for initial audio transcription.",
|
360 |
scale=1
|
361 |
)
|
362 |
-
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
-
|
367 |
-
|
|
|
|
|
368 |
|
369 |
with gr.Row():
|
370 |
transcribe_btn = gr.Button("📝 Transcribe & Gemini")
|
|
|
359 |
info="Your key is used for initial audio transcription.",
|
360 |
scale=1
|
361 |
)
|
362 |
+
|
363 |
+
with gr.Row():
|
364 |
+
audio_input = gr.File(
|
365 |
+
label="Upload Audio File",
|
366 |
+
type="binary",
|
367 |
+
file_count="single",
|
368 |
+
file_types=["audio"]
|
369 |
+
)
|
370 |
|
371 |
with gr.Row():
|
372 |
transcribe_btn = gr.Button("📝 Transcribe & Gemini")
|