awacke1 commited on
Commit
8d5f9e5
1 Parent(s): d2edd01

Create new file

Browse files
Files changed (1) hide show
  1. app.py +10 -0
app.py ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+
4
+ def video_flip(video):
5
+ return video
6
+
7
+
8
+ demo = gr.Interface(video_flip, gr.Video(), "playable_video")
9
+
10
+ demo.launch()