gradio/demo/webcam/run.ipynb
Ali Abdalla de36820ef5
Fix various issues with demos on website (#6268)
* fix demos

* demos on landing page

* make code interactive on playground

* add changeset

* try new secret

* formatting

* fix fake_gan

* demo notebooks

---------

Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
Co-authored-by: Abubakar Abid <abubakar@huggingface.co>
2023-11-02 17:35:07 -07:00

833 B

Gradio Demo: webcam

In [ ]:
!pip install -q gradio 
In [ ]:
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()