Update app.py
Browse files
app.py
CHANGED
|
@@ -305,9 +305,7 @@ def build_interface():
|
|
| 305 |
with gr.Column(scale=4):
|
| 306 |
file_input = gr.File(label="Upload Video/Audio File")
|
| 307 |
language_input = gr.Dropdown(["en", "es", "fr", "zh"], label="Select Language") # Language codes
|
| 308 |
-
process_mode = gr.Radio(choices=["Transcription", "Transcription with Voiceover"],
|
| 309 |
-
label="Choose Processing Type",
|
| 310 |
-
value="Transcription" # Default to "Transcription")
|
| 311 |
submit_button = gr.Button("Post and Process")
|
| 312 |
editable_translations = gr.State(value=[])
|
| 313 |
|
|
|
|
| 305 |
with gr.Column(scale=4):
|
| 306 |
file_input = gr.File(label="Upload Video/Audio File")
|
| 307 |
language_input = gr.Dropdown(["en", "es", "fr", "zh"], label="Select Language") # Language codes
|
| 308 |
+
process_mode = gr.Radio(choices=["Transcription", "Transcription with Voiceover"], label="Choose Processing Type", value="Transcription" # Default to "Transcription")
|
|
|
|
|
|
|
| 309 |
submit_button = gr.Button("Post and Process")
|
| 310 |
editable_translations = gr.State(value=[])
|
| 311 |
|