mrcuddle commited on
Commit
823d980
·
verified ·
1 Parent(s): 51d8bb5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -0
app.py CHANGED
@@ -41,6 +41,10 @@ iface = gr.Interface(
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
  # Launch the interface
46
  iface.launch()
 
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
+ examples = [
45
+ ["image.jpeg", 5],
46
+ ["videos/generated.mp4", 15]
47
+ ]
48
  )
49
  # Launch the interface
50
  iface.launch()