Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
XciD
/
test2e1
like
0
Sleeping
App
Files
Files
Community
main
test2e1
/
app.py
XciD
HF staff
Update app.py
c191ad2
verified
5 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
212 Bytes
import
gradio
as
gr
def
video_identity
(
video
):
return
video
demo = gr.Interface(video_identity,
gr.Video(),
"playable_video"
,
)
demo.launch()