1a3844d
f1fe7a3
1a3844d
f1fe7a3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
import gradio as gr
def snap(image, video):
return [image, video]
demo = gr.Interface(
snap,
[gr.Image(), gr.Video()],
["image", "video"],
)
if __name__ == "__main__":
demo.launch(share=True)
|