Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
|
@@ -530,13 +530,13 @@ with gr.Blocks(css=css, theme=gr.themes.Ocean(font=[gr.themes.GoogleFont("Lexend
|
|
| 530 |
with gr.Group():
|
| 531 |
video_i_hidden = gr.Textbox(label="video_i", visible=False, value=None)
|
| 532 |
image_i2v = gr.Image(label="Input Image", type="filepath", sources=["upload", "clipboard"]) # Removed webcam
|
| 533 |
-
i2v_prompt = gr.Textbox(label="Prompt", value="
|
| 534 |
i2v_button = gr.Button("Generate Image-to-Video", variant="primary")
|
| 535 |
with gr.Tab("text-to-video") as text_tab:
|
| 536 |
with gr.Group():
|
| 537 |
image_n_hidden = gr.Textbox(label="image_n", visible=False, value=None)
|
| 538 |
video_n_hidden = gr.Textbox(label="video_n", visible=False, value=None)
|
| 539 |
-
t2v_prompt = gr.Textbox(label="Prompt", value="
|
| 540 |
t2v_button = gr.Button("Generate Text-to-Video", variant="primary")
|
| 541 |
with gr.Tab("video-to-video", visible=False) as video_tab:
|
| 542 |
with gr.Group():
|
|
|
|
| 530 |
with gr.Group():
|
| 531 |
video_i_hidden = gr.Textbox(label="video_i", visible=False, value=None)
|
| 532 |
image_i2v = gr.Image(label="Input Image", type="filepath", sources=["upload", "clipboard"]) # Removed webcam
|
| 533 |
+
i2v_prompt = gr.Textbox(label="Prompt", value="", lines=3)
|
| 534 |
i2v_button = gr.Button("Generate Image-to-Video", variant="primary")
|
| 535 |
with gr.Tab("text-to-video") as text_tab:
|
| 536 |
with gr.Group():
|
| 537 |
image_n_hidden = gr.Textbox(label="image_n", visible=False, value=None)
|
| 538 |
video_n_hidden = gr.Textbox(label="video_n", visible=False, value=None)
|
| 539 |
+
t2v_prompt = gr.Textbox(label="Prompt", value="a playfull penguin", lines=3)
|
| 540 |
t2v_button = gr.Button("Generate Text-to-Video", variant="primary")
|
| 541 |
with gr.Tab("video-to-video", visible=False) as video_tab:
|
| 542 |
with gr.Group():
|