Spaces:
Running
on
A10G
Running
on
A10G
Update app.py
Browse files
app.py
CHANGED
@@ -100,11 +100,11 @@ with gr.Blocks(css='style.css') as demo:
|
|
100 |
with gr.Column():
|
101 |
prompt = gr.Textbox(label="Prompt", placeholder="enter prompt", show_label=False)
|
102 |
video_inp = gr.Video(label="Video source", source="upload", type="filepath")
|
103 |
-
|
104 |
-
with gr.Column():
|
105 |
with gr.Row():
|
106 |
seed_inp = gr.Slider(minimum=0, maximum=10000, step=1, value=123456)
|
107 |
trim_in = gr.Slider(label="Cut video at (s)", minimun=2, maximum=10, step=1, value=2)
|
|
|
|
|
108 |
video_out = gr.Video(label="Pix2pix video result")
|
109 |
submit_btn = gr.Button("Generate Pix2Pix video")
|
110 |
gr.HTML(article)
|
|
|
100 |
with gr.Column():
|
101 |
prompt = gr.Textbox(label="Prompt", placeholder="enter prompt", show_label=False)
|
102 |
video_inp = gr.Video(label="Video source", source="upload", type="filepath")
|
|
|
|
|
103 |
with gr.Row():
|
104 |
seed_inp = gr.Slider(minimum=0, maximum=10000, step=1, value=123456)
|
105 |
trim_in = gr.Slider(label="Cut video at (s)", minimun=2, maximum=10, step=1, value=2)
|
106 |
+
with gr.Column():
|
107 |
+
|
108 |
video_out = gr.Video(label="Pix2pix video result")
|
109 |
submit_btn = gr.Button("Generate Pix2Pix video")
|
110 |
gr.HTML(article)
|