tonyassi's picture
Update app.py
e6d73c1 verified
raw
history blame
353 Bytes
import gradio as gr
def greet(img1, img2, video1):
return img2
demo = gr.Interface(fn=greet,
inputs=["image", "image", "video"],
outputs="image",
#examples=[["27-24522.jpg", "28-24766.jpg"]],
examples=[["27-24522.jpg", "28-24766.jpg", "wizard.mp4"]])
demo.launch()