fffiloni commited on
Commit
d891024
1 Parent(s): 9e5183b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -117,13 +117,13 @@ with gr.Blocks(css='style.css') as demo:
117
  with gr.Row():
118
  with gr.Column():
119
  prompt = gr.Textbox(label="Prompt", placeholder="enter prompt", show_label=False, elem_id="prompt-in")
120
- video_inp = gr.Video(label="Video source", source="upload", type="filepath", elem_id="video-in")
121
  with gr.Row():
122
  seed_inp = gr.Slider(minimum=0, maximum=10000, step=1, value=123456)
123
  trim_in = gr.Slider(label="Cut video at (s)", minimun=1, maximum=3, step=1, value=1)
124
  with gr.Column():
125
 
126
- video_out = gr.Video(label="Pix2pix video result", elem_id="video-out")
127
  submit_btn = gr.Button("Generate Pix2Pix video")
128
 
129
  with gr.Group(elem_id="share-btn-container", visible=False) as share_group:
 
117
  with gr.Row():
118
  with gr.Column():
119
  prompt = gr.Textbox(label="Prompt", placeholder="enter prompt", show_label=False, elem_id="prompt-in")
120
+ video_inp = gr.Video(label="Video source", source="upload", type="filepath", elem_id="input-vid")
121
  with gr.Row():
122
  seed_inp = gr.Slider(minimum=0, maximum=10000, step=1, value=123456)
123
  trim_in = gr.Slider(label="Cut video at (s)", minimun=1, maximum=3, step=1, value=1)
124
  with gr.Column():
125
 
126
+ video_out = gr.Video(label="Pix2pix video result", elem_id="video-output")
127
  submit_btn = gr.Button("Generate Pix2Pix video")
128
 
129
  with gr.Group(elem_id="share-btn-container", visible=False) as share_group: