Update app.py
Browse files
app.py
CHANGED
@@ -99,7 +99,9 @@ class App:
|
|
99 |
with gr.Column(scale=1):
|
100 |
with gr.Row():
|
101 |
input_multi = gr.Radio(["Single", "Multiple"], label="Process one or multiple files", value="Single")
|
|
|
102 |
dd_file_format = gr.Dropdown(choices=["CSV","SRT","TXT"], value="CSV", label="Output format", multiselect=True, interactive=True, visible=True)
|
|
|
103 |
cb_timestamp_preview = gr.Checkbox(value=whisper_params["add_timestamp_preview"],label="Show preview with timestamps", interactive=True)
|
104 |
cb_timestamp_file = gr.Checkbox(value=whisper_params["add_timestamp_file"], label="Add timestamp to filenames", interactive=True)
|
105 |
with gr.Column(scale=4):
|
|
|
99 |
with gr.Column(scale=1):
|
100 |
with gr.Row():
|
101 |
input_multi = gr.Radio(["Single", "Multiple"], label="Process one or multiple files", value="Single")
|
102 |
+
with gr.Row():
|
103 |
dd_file_format = gr.Dropdown(choices=["CSV","SRT","TXT"], value="CSV", label="Output format", multiselect=True, interactive=True, visible=True)
|
104 |
+
with gr.Row():
|
105 |
cb_timestamp_preview = gr.Checkbox(value=whisper_params["add_timestamp_preview"],label="Show preview with timestamps", interactive=True)
|
106 |
cb_timestamp_file = gr.Checkbox(value=whisper_params["add_timestamp_file"], label="Add timestamp to filenames", interactive=True)
|
107 |
with gr.Column(scale=4):
|