EC2 Default User commited on
Commit
b9be9f3
1 Parent(s): 1ebcd4e

add 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 video_identity(video):
4
+ return video
5
+
6
+
7
+ demo = gr.Interface(video_identity,
8
+ gr.Video(),
9
+ "playable_video",
10
+ )
11
+
12
+ if __name__ == "__main__":
13
+ demo.launch()