File size: 211 Bytes
21fba64
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
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()