Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
aliabid94
/
golfy
like
1
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
golfy
/
run.py
aliabid94
Update run.py
ac7b8ee
almost 3 years ago
raw
Copy download link
history
blame
contribute
delete
Safe
232 Bytes
import
gradio
as
gr
import
os
def
video_identity
(
video
):
return
video
demo = gr.Interface(video_identity,
gr.Video(),
"playable_video"
)
if
__name__ ==
"__main__"
:
demo.launch()