Spaces:
Running
Running
File size: 429 Bytes
c3f5eec 5f2d7fd c3f5eec 5f2d7fd c3f5eec 5f2d7fd |
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()
|