mrcuddle commited on
Commit
f9db44b
·
verified ·
1 Parent(s): d31ee2f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -2
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
- [["image.jpeg", "42"],"generated.mp4"]
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()