mrcuddle commited on
Commit
72dd1bb
·
verified ·
1 Parent(s): 823d980

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -42,9 +42,9 @@ 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", 5],
46
- ["videos/generated.mp4", 15]
47
  ]
 
48
  )
49
  # Launch the interface
50
  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", "video/generated.mp4"],
 
46
  ]
47
+ gr.Examples(examples, [image_input, video_input])
48
  )
49
  # Launch the interface
50
  iface.launch()