| 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) | |