mirror of
https://github.com/gradio-app/gradio.git
synced 2025-01-30 11:00:11 +08:00
19 lines
436 B
Python
19 lines
436 B
Python
|
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()
|