Update app.py
Browse files
app.py
CHANGED
@@ -82,10 +82,7 @@ with gr.Blocks() as demo:
|
|
82 |
input_video = gr.Video(label="Input Video")
|
83 |
submit_btn = gr.Button("Submit")
|
84 |
with gr.Column():
|
85 |
-
|
86 |
-
output_result_1 = gr.Video(label="Result")
|
87 |
-
output_result_2 = gr.Video(label="Result")
|
88 |
-
output_result_3 = gr.Video(label="Result")
|
89 |
output_result_4 = gr.Video(label="Result")
|
90 |
|
91 |
gr.Examples(
|
@@ -97,10 +94,6 @@ with gr.Blocks() as demo:
|
|
97 |
fn = generate,
|
98 |
inputs = [input_video],
|
99 |
outputs = [
|
100 |
-
output_result_0,
|
101 |
-
output_result_1,
|
102 |
-
output_result_2,
|
103 |
-
output_result_3,
|
104 |
output_result_4
|
105 |
]
|
106 |
)
|
|
|
82 |
input_video = gr.Video(label="Input Video")
|
83 |
submit_btn = gr.Button("Submit")
|
84 |
with gr.Column():
|
85 |
+
|
|
|
|
|
|
|
86 |
output_result_4 = gr.Video(label="Result")
|
87 |
|
88 |
gr.Examples(
|
|
|
94 |
fn = generate,
|
95 |
inputs = [input_video],
|
96 |
outputs = [
|
|
|
|
|
|
|
|
|
97 |
output_result_4
|
98 |
]
|
99 |
)
|