Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
sekhyea
/
ImageToVideo
like
2
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
21fba64
ImageToVideo
/
app.py
sekhyea
Create app.py
21fba64
verified
about 2 months ago
raw
Copy download link
history
blame
Safe
211 Bytes
import
gradio
as
gr
def
image_to_video
(
image
):
return
image
iface = gr.Interface(
fn=image_to_video,
inputs=
"image"
,
outputs=
"video"
,
title=
"AI Image to Video Generator"
)
iface.launch()