Update app.py
Browse files
app.py
CHANGED
@@ -125,16 +125,15 @@ with gr.Blocks() as demo:
|
|
125 |
with gr.Column():
|
126 |
input_video = gr.Video(label="Input Video", interactive=False)
|
127 |
submit_btn = gr.Button("Submit")
|
|
|
|
|
|
|
|
|
|
|
128 |
with gr.Column():
|
129 |
|
130 |
output_result_4 = gr.Video(label="Result")
|
131 |
|
132 |
-
gr.Examples(
|
133 |
-
examples = video_examples,
|
134 |
-
inputs = [input_video],
|
135 |
-
examples_per_page = 3
|
136 |
-
)
|
137 |
-
|
138 |
submit_btn.click(
|
139 |
fn = generate,
|
140 |
inputs = [input_video],
|
|
|
125 |
with gr.Column():
|
126 |
input_video = gr.Video(label="Input Video", interactive=False)
|
127 |
submit_btn = gr.Button("Submit")
|
128 |
+
gr.Examples(
|
129 |
+
examples = video_examples,
|
130 |
+
inputs = [input_video],
|
131 |
+
examples_per_page = 5
|
132 |
+
)
|
133 |
with gr.Column():
|
134 |
|
135 |
output_result_4 = gr.Video(label="Result")
|
136 |
|
|
|
|
|
|
|
|
|
|
|
|
|
137 |
submit_btn.click(
|
138 |
fn = generate,
|
139 |
inputs = [input_video],
|