How to display multiple webcam images?

Hello.
Iโ€™m building object recognition using a web camera.
But I can only see one webcam.
Is there a way to display the second one?

Paste the code you are trying.
thanks.

import gradio as gr

def webcam(video0,video1):
    return video0,video1

interface = gr.Interface(
    fn=webcam,
    inputs=[gr.Webcam(mirror_webcam=False,streaming=True),
            gr.Webcam(mirror_webcam=True,streaming=True),
            ],
    outputs=["image","image"],
    )

if __name__ == "__main__":
    interface.launch()

Hi @tomtechjp, this works for me here:

Try the latest version of gradio (currently gradio==3.4b3).

Also, Iโ€™m not sure if you can have two different streaming webcams (or why youโ€™d need that?) But two non-streaming webcams should definitely work

Hellow,@abidlabs
Thank you for taking the time out of your busy schedule to respond.
I wanted to use two different cameras to recognize objects from two directions at the same time.

I would like to find another way.
Thank you very much.

For that, weโ€™d need to first support secondary webcams. Can you chime in here on this open issue with your use case so we can make sure to report it? Adding Rear Camera Support for Mobile Phones ยท Issue #818 ยท gradio-app/gradio (github.com)