File size: 445 Bytes
0bd62e5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import gradio as gr
import os

def video_identity(video):
    return video

demo = gr.Interface(video_identity,
                    gr.Video(),
                    "playable_video",
                    examples=[
                        os.path.join(os.path.dirname(__file__),
                                     "video/video_sample.mp4")],
                    cache_examples=True)

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