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