mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-09 02:00:44 +08:00
de36820ef5
* 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>
833 B
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()