ImageToVideo / app.py
sekhyea's picture
Create app.py
21fba64 verified
raw
history blame
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()