sekhyea commited on
Commit
21fba64
·
verified ·
1 Parent(s): c3701b0

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +13 -0
app.py ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ def image_to_video(image):
4
+ return image
5
+
6
+ iface = gr.Interface(
7
+ fn=image_to_video,
8
+ inputs="image",
9
+ outputs="video",
10
+ title="AI Image to Video Generator"
11
+ )
12
+
13
+ iface.launch()