mrcuddle commited on
Commit
0bfa377
·
verified ·
1 Parent(s): d54560c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -40,10 +40,11 @@ iface = gr.Interface(
40
  ],
41
  outputs=gr.Video(label="Generated Video"),
42
  title="Stable Video Diffusion",
 
 
 
 
43
  description="Generate a video from an uploaded image using Stable Video Diffusion.",
44
  )
45
-
46
- example_image = "image.jpeg"
47
- example_video = "videos/generated.mp4"
48
  # Launch the interface
49
  iface.launch()
 
40
  ],
41
  outputs=gr.Video(label="Generated Video"),
42
  title="Stable Video Diffusion",
43
+ examples=[
44
+ [image.jpeg],
45
+ [videos/generated.mp4]
46
+ ]
47
  description="Generate a video from an uploaded image using Stable Video Diffusion.",
48
  )
 
 
 
49
  # Launch the interface
50
  iface.launch()