LAP-DEV commited on
Commit
717ca8e
·
verified ·
1 Parent(s): 673f304

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -341,8 +341,7 @@ class App:
341
  interactive=False,
342
  elem_id="md_disclaimer")
343
  with gr.Column(scale=1):
344
- tb_info = gr.Textbox(label="Output info", interactive=False, show_copy_button=True)
345
- files_subtitles = gr.Files(label="Output data", interactive=False, file_count="multiple", height="200px")
346
  # btn_openfolder = gr.Button('📂', scale=1)
347
 
348
  params = [input_file_audio, input_file_video, input_file_multi, input_multi, tb_input_folder, dd_file_format, cb_timestamp_file, cb_translate_output, dd_translate_model, dd_target_lang, cb_timestamp_preview]
@@ -357,6 +356,9 @@ class App:
357
  with gr.Column():
358
  gr.Markdown(device_info, label="Hardware info & installed packages")
359
 
 
 
 
360
  # Launch the app with optional gradio settings
361
  args = self.args
362
 
 
341
  interactive=False,
342
  elem_id="md_disclaimer")
343
  with gr.Column(scale=1):
344
+ tb_info = gr.Textbox(label="Output info", interactive=False, show_copy_button=True)
 
345
  # btn_openfolder = gr.Button('📂', scale=1)
346
 
347
  params = [input_file_audio, input_file_video, input_file_multi, input_multi, tb_input_folder, dd_file_format, cb_timestamp_file, cb_translate_output, dd_translate_model, dd_target_lang, cb_timestamp_preview]
 
356
  with gr.Column():
357
  gr.Markdown(device_info, label="Hardware info & installed packages")
358
 
359
+ with gr.Sidebar(open=False,position="right"):
360
+ files_subtitles = gr.Files(label="Output data", interactive=False, file_count="multiple", height="200px")
361
+
362
  # Launch the app with optional gradio settings
363
  args = self.args
364