I'm working a project where I need to display two video streams from two webcams. I was able to do this based on the GSVideo capture example
here, which I tweaked to make two capture objects and display them both. This works fine provided that the names of the cameras are unique. The problem is that the two cameras I want to use have the same Windows device name and conflict with each other. Both cameras are called 'USB 2.0 PC Camera' in GSCapture.list() which prevents me from using them simultaneously. Please help!!
Source:
GSCapture cam1;
GSCapture cam2;
public void setup() {
size(1280, 480);
String[] cameras = GSCapture.list();
if (cameras.length == 0)
{
println("There are no cameras available for capture.");