Spaces:
Running on Zero
Running on Zero
Vicente Alvarez commited on
Commit ·
2f7ed25
1
Parent(s): 11bb843
Use visible Textbox/Video components for prompt2/prompt3 and multi-clip outputs
Browse files
app.py
CHANGED
|
@@ -542,12 +542,12 @@ with gr.Blocks(title="Element-16 Video", delete_cache=(3600, 7200)) as demo: #
|
|
| 542 |
|
| 543 |
with gr.Column():
|
| 544 |
output_video = gr.Video(label="Generated Video", autoplay=True)
|
| 545 |
-
|
| 546 |
-
|
| 547 |
-
|
| 548 |
-
|
| 549 |
-
|
| 550 |
-
|
| 551 |
|
| 552 |
gr.Examples(
|
| 553 |
examples=[
|
|
|
|
| 542 |
|
| 543 |
with gr.Column():
|
| 544 |
output_video = gr.Video(label="Generated Video", autoplay=True)
|
| 545 |
+
output_video2 = gr.Video(label="Generated Video 2", autoplay=True)
|
| 546 |
+
output_video3 = gr.Video(label="Generated Video 3", autoplay=True)
|
| 547 |
+
|
| 548 |
+
with gr.Row():
|
| 549 |
+
prompt2 = gr.Textbox(label="Prompt 2 (optional)", value="", lines=2)
|
| 550 |
+
prompt3 = gr.Textbox(label="Prompt 3 (optional)", value="", lines=2)
|
| 551 |
|
| 552 |
gr.Examples(
|
| 553 |
examples=[
|