Update app.py
Browse files
app.py
CHANGED
@@ -171,8 +171,8 @@ iface = gr.Interface(
|
|
171 |
gr.Textbox(label="Transcription", lines=10),
|
172 |
gr.Slider(minimum=0, maximum=100, label="Progress", interactive=False),
|
173 |
gr.Textbox(label="Status"),
|
174 |
-
gr.File(label="Download Transcription (TXT)", type="
|
175 |
-
gr.File(label="Download Transcription (JSON)", type="
|
176 |
],
|
177 |
title="Multilingual Audio Transcriber with Real-time Display, Timestamps, and Speaker Diarization",
|
178 |
description="Upload an audio file to detect the language, select the transcription model, and get the transcription with timestamps and speaker labels in real-time. Download the transcription as TXT or JSON. Optimized for Spanish, English, and Portuguese.",
|
|
|
171 |
gr.Textbox(label="Transcription", lines=10),
|
172 |
gr.Slider(minimum=0, maximum=100, label="Progress", interactive=False),
|
173 |
gr.Textbox(label="Status"),
|
174 |
+
gr.File(label="Download Transcription (TXT)", type="filepath", interactive=True, value="transcription.txt"),
|
175 |
+
gr.File(label="Download Transcription (JSON)", type="filepath", interactive=True, value="transcription.json")
|
176 |
],
|
177 |
title="Multilingual Audio Transcriber with Real-time Display, Timestamps, and Speaker Diarization",
|
178 |
description="Upload an audio file to detect the language, select the transcription model, and get the transcription with timestamps and speaker labels in real-time. Download the transcription as TXT or JSON. Optimized for Spanish, English, and Portuguese.",
|