imseldrith commited on
Commit
bee0e67
·
1 Parent(s): 6faa03d

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -0
app.py ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ import gradio as gr
2
+ def vi(video):
3
+ return video
4
+
5
+ gr.Interface(fn=vi, inputs=gr.Video(),outputs=gr.Video()).launch()