Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
Moibe/demo
Moibe
/
video-blend
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
1f5f680
video-blend
/
app.py
Moibe
Update app.py
1f5f680
about 1 year ago
raw
Copy download link
history
blame
Safe
133 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"OK"
iface = gr.Interface(fn=greet, inputs=
"video"
, outputs=
"video"
)
iface.launch()