fffiloni commited on
Commit
dafd4d1
1 Parent(s): 6a04784

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -56,10 +56,10 @@ with gr.Blocks(css='style.css') as demo:
56
  with gr.Row():
57
  with gr.Column():
58
  prompt = gr.Textbox(placeholder="enter prompt")
59
- video_inp = gr.Video(source="upload", type="filepath")
60
- seed_inp = Number(value=123456)
61
  with gr.Column():
62
- video_out = gr.Video()
63
  submit_btn = gr.Button("Generate Pix2Pix video")
64
 
65
  inputs = [prompt,video_inp,seed_inp]
 
56
  with gr.Row():
57
  with gr.Column():
58
  prompt = gr.Textbox(placeholder="enter prompt")
59
+ video_inp = gr.Video(label="Video source", source="upload", type="filepath")
60
+ seed_inp = gr.Number(label="Seed", value=123456)
61
  with gr.Column():
62
+ video_out = gr.Video(label="Pix2pix video result")
63
  submit_btn = gr.Button("Generate Pix2Pix video")
64
 
65
  inputs = [prompt,video_inp,seed_inp]