File size: 240 Bytes
ad2c0ca
 
f0b9647
 
ad2c0ca
f0b9647
 
 
 
ad2c0ca
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
import gradio as gr

def video_identity(video):
    return video

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

if __name__ == "__main__":
    demo.launch()