fffiloni commited on
Commit
b5a5c95
1 Parent(s): 6a046f7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -98,8 +98,9 @@ with gr.Blocks(css=css) as demo:
98
  """)
99
  prompt = gr.Textbox(label="prompt")
100
  video_path = gr.Video(source="upload", type="filepath")
101
- condition = gr.Dropdown(label="Condition", choices=["depth", "canny", "pose"], value="depth")
102
- video_length = gr.Slider(label="Video length", info="How many frames do you want to process ?", minimum=1, maximum=12, step=1, value=2)
 
103
  #seed = gr.Number(label="seed", value=42)
104
  submit_btn = gr.Button("Submit")
105
  video_res = gr.Video(label="result")
 
98
  """)
99
  prompt = gr.Textbox(label="prompt")
100
  video_path = gr.Video(source="upload", type="filepath")
101
+ with gr.Row():
102
+ condition = gr.Dropdown(label="Condition", choices=["depth", "canny", "pose"], value="depth")
103
+ video_length = gr.Slider(label="Video length", info="How many frames do you want to process ?", minimum=1, maximum=12, step=1, value=2)
104
  #seed = gr.Number(label="seed", value=42)
105
  submit_btn = gr.Button("Submit")
106
  video_res = gr.Video(label="result")