Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
Moibe/demo
Moibe
/
video-blend
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
39a29d7
video-blend
/
app.py
Moibe
Update app.py
35e7909
about 1 year ago
raw
Copy download link
history
blame
Safe
153 Bytes
import
gradio
as
gr
def
greet
(
input_video
):
return
input_video
iface = gr.Interface(greet, gr.Video(height=
200
, width=
200
),
"video"
)
iface.launch()