File size: 527 Bytes
15bc41b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import gradio as gr
import requests



import gradio as gr
import os


def video_identity(video):
    print(video)
    return video


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

if __name__ == "__main__":
    demo.launch(server_name="0.0.0.0", server_port=7860)