video-blend / app.py
Moibe's picture
Update app.py
35e7909
raw
history blame
No virus
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()