test2e1 / app.py
XciD's picture
XciD HF staff
Update app.py
c191ad2 verified
raw
history blame contribute delete
212 Bytes
import gradio as gr
def video_identity(video):
return video
demo = gr.Interface(video_identity,
gr.Video(),
"playable_video",
)
demo.launch()