Spaces:
Runtime error
Runtime error
PIL
Browse files
app.py
CHANGED
|
@@ -293,9 +293,9 @@ with gr.Blocks(theme=gr.themes.Citrus(), css=css) as app:
|
|
| 293 |
randomize_seed_checkbox = gr.Checkbox(label="Randomize seed", value=True)
|
| 294 |
|
| 295 |
with gr.Accordion("Debug", open=False):
|
| 296 |
-
input_image_debug = gr.Image(type="
|
| 297 |
input_video_debug = gr.Video(sources='upload', label="Input Video Debug", height=320)
|
| 298 |
-
end_image_debug = gr.Image(type="
|
| 299 |
prompt_debug = gr.Textbox(label="Prompt Debug", value='')
|
| 300 |
total_second_length_debug = gr.Slider(label="Additional Video Length to Generate (seconds) Debug", minimum=1, maximum=120, value=1, step=0.1)
|
| 301 |
|
|
|
|
| 293 |
randomize_seed_checkbox = gr.Checkbox(label="Randomize seed", value=True)
|
| 294 |
|
| 295 |
with gr.Accordion("Debug", open=False):
|
| 296 |
+
input_image_debug = gr.Image(type="pil", label="Image Debug", height=320)
|
| 297 |
input_video_debug = gr.Video(sources='upload', label="Input Video Debug", height=320)
|
| 298 |
+
end_image_debug = gr.Image(type="pil", label="End Image Debug", height=320)
|
| 299 |
prompt_debug = gr.Textbox(label="Prompt Debug", value='')
|
| 300 |
total_second_length_debug = gr.Slider(label="Additional Video Length to Generate (seconds) Debug", minimum=1, maximum=120, value=1, step=0.1)
|
| 301 |
|