File size: 212 Bytes
352228b
8dac2c8
c191ad2
 
8dac2c8
352228b
c191ad2
 
 
 
352228b
 
1
2
3
4
5
6
7
8
9
10
11
12
import gradio as gr

def video_identity(video):
    return video


demo = gr.Interface(video_identity, 
                    gr.Video(), 
                    "playable_video", 
                    )

demo.launch()