Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
schnorby
/
new-space
like
0
Sleeping
App
Files
Files
Community
main
new-space
/
app.py
schnorby
initial commit
f0b9647
verified
about 1 month ago
raw
Copy download link
history
blame
contribute
delete
Safe
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()