gra / run.py
noamholz's picture
fix
f1fe7a3
raw
history blame
218 Bytes
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)