new-space / app.py
schnorby's picture
initial commit
f0b9647 verified
raw
history blame contribute delete
240 Bytes
import gradio as gr
def video_identity(video):
return video
demo = gr.Interface(video_identity,
gr.Video(),
"playable_video",
)
if __name__ == "__main__":
demo.launch()