Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -730,6 +730,11 @@ with gr.Blocks() as demo:
|
|
730 |
with gr.Column(scale=1):
|
731 |
video_input = gr.Video(label="Upload a driving video (MP4 format)")
|
732 |
generate_video_button = gr.Button("Generate Video")
|
|
|
|
|
|
|
|
|
|
|
733 |
with gr.Column(scale=1):
|
734 |
video_output = gr.Video(label="Generated Spirit Animal Video")
|
735 |
|
|
|
730 |
with gr.Column(scale=1):
|
731 |
video_input = gr.Video(label="Upload a driving video (MP4 format)")
|
732 |
generate_video_button = gr.Button("Generate Video")
|
733 |
+
gr.Examples(
|
734 |
+
examples=["video1.jpg", "video2.jpg", "video3.jpg", "video4.jpg"],
|
735 |
+
inputs=image_input,
|
736 |
+
label="Example Images"
|
737 |
+
)
|
738 |
with gr.Column(scale=1):
|
739 |
video_output = gr.Video(label="Generated Spirit Animal Video")
|
740 |
|