Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
|
@@ -42,8 +42,11 @@ iface = gr.Interface(
|
|
| 42 |
title="Stable Video Diffusion",
|
| 43 |
description="Generate a video from an uploaded image using Stable Video Diffusion.",
|
| 44 |
examples=[
|
| 45 |
-
[
|
| 46 |
-
]
|
|
|
|
|
|
|
|
|
|
| 47 |
)
|
| 48 |
# Launch the interface
|
| 49 |
iface.launch()
|
|
|
|
| 42 |
title="Stable Video Diffusion",
|
| 43 |
description="Generate a video from an uploaded image using Stable Video Diffusion.",
|
| 44 |
examples=[
|
| 45 |
+
["image.jpeg", "42"]
|
| 46 |
+
],
|
| 47 |
+
# Add a separate section for the example video
|
| 48 |
+
gr.Markdown("## Example Output Video")
|
| 49 |
+
example_video = gr.Video("example_output_video.mp4")
|
| 50 |
)
|
| 51 |
# Launch the interface
|
| 52 |
iface.launch()
|