gbsim commited on
Commit
fc181fa
·
1 Parent(s): 5f386ea
Files changed (2) hide show
  1. app.py +8 -0
  2. requirments.txt +1 -0
app.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ def test(vid):
4
+ return vid
5
+
6
+
7
+ iface = gr.Interface(fn=test, inputs='video', outputs='video')
8
+ iface.lauch(share=True)
requirments.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ gradio