astro-blend / app.py
Moibe's picture
Update app.py
e0bff1c
raw
history blame
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()