Spaces:
Sleeping
Sleeping
File size: 397 Bytes
bd60378 e6d73c1 78272ae bd60378 149a86b e6d73c1 82ba62a f976e3b 82ba62a bd60378 |
1 2 3 4 5 6 7 8 9 10 11 12 |
import gradio as gr
def greet(img1, img2, video1):
return video1
demo = gr.Interface(fn=greet,
inputs=["image", "image", "video"],
outputs="video",
#examples=[["27-24522.jpg", "28-24766.jpg"]],
examples=[["27-24522.jpg", "28-24766.jpg", "wizard.mp4"]],
cache_examples=True,)
demo.launch() |