uptest / run.py
abidlabs's picture
abidlabs HF Staff
Upload folder using huggingface_hub
9f01794 verified
raw
history blame
242 Bytes
import gradio as gr
def snap(image, video):
return [image, video]
demo = gr.Interface(
snap,
[gr.Image(sources=["webcam"]), gr.Video(sources=["webcam"])],
["image", "video"],
)
if __name__ == "__main__":
demo.launch()