Update app.py
Browse files
app.py
CHANGED
@@ -1,10 +1,12 @@
|
|
1 |
import gradio as gr
|
2 |
|
3 |
-
def
|
4 |
-
return
|
5 |
|
6 |
|
7 |
-
demo = gr.Interface(
|
8 |
-
|
|
|
|
|
9 |
|
10 |
demo.launch()
|
|
|
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 |
demo.launch()
|