Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
gradio
/
video_identity_2_main
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
7236551
video_identity_2_main
/
run.py
aliabd
HF staff
Upload folder using huggingface_hub
7236551
verified
7 months ago
raw
Copy download link
history
blame
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()