rangm commited on
Commit
7aaced4
1 Parent(s): 4a47952

Update webgui.py

Browse files
Files changed (1) hide show
  1. webgui.py +2 -2
webgui.py CHANGED
@@ -261,7 +261,7 @@ with gr.Blocks() as demo:
261
  </div>
262
  """)
263
  with gr.Row():
264
- with gr.Column():
265
  uploaded_img = gr.Image(type="filepath", label="Reference Image")
266
  uploaded_audio = gr.Audio(type="filepath", label="Input Audio")
267
  with gr.Accordion(label=advanced_settings_label, open=False):
@@ -285,7 +285,7 @@ with gr.Blocks() as demo:
285
  fps = gr.Slider(label="FPS", minimum=1, maximum=60, step=1, value=default_values["fps"], interactive=available_property)
286
  device = gr.Radio(label="Device", choices=["cuda", "cpu"], value=default_values["device"], interactive=available_property)
287
  generate_button = gr.Button("Generate Video")
288
- with gr.Column():
289
  output_video = gr.Video()
290
  gr.Examples(
291
  label = "Portrait examples",
 
261
  </div>
262
  """)
263
  with gr.Row():
264
+ with gr.Column(min_width=250):
265
  uploaded_img = gr.Image(type="filepath", label="Reference Image")
266
  uploaded_audio = gr.Audio(type="filepath", label="Input Audio")
267
  with gr.Accordion(label=advanced_settings_label, open=False):
 
285
  fps = gr.Slider(label="FPS", minimum=1, maximum=60, step=1, value=default_values["fps"], interactive=available_property)
286
  device = gr.Radio(label="Device", choices=["cuda", "cpu"], value=default_values["device"], interactive=available_property)
287
  generate_button = gr.Button("Generate Video")
288
+ with gr.Column(min_width=250):
289
  output_video = gr.Video()
290
  gr.Examples(
291
  label = "Portrait examples",