We closed this forum 18 June 2010. It has served us well since 2005 as the ALPHA forum did before it from 2002 to 2005. New discussions are ongoing at the new URL http://forum.processing.org. You'll need to sign up and get a new user account. We're sorry about that inconvenience, but we think it's better in the long run. The content on this forum will remain online.
Page Index Toggle Pages: 1
Capture devices (Read 1476 times)
Capture devices
May 4th, 2005, 5:28am
 
I am working on a Powerbook with 1 FireWire port. I have a hub that has 2 additional FireWire ports. How do I capture a second device?
Re: Capture devices
Reply #1 - May 4th, 2005, 8:42am
 
If you have multiple devices attached, you should be able to call Capture.list() within setup() to see their names. Make a new Capture object for each. For more information, please see the example:
http://processing.org/learning/examples/capture.html
Re: Capture devices
Reply #2 - May 17th, 2005, 2:11am
 
newbie question!

How can I link to webcams not attached to my computer? I want to link remote cams that already exist on the web to an installation I am constructing.

Thank you,

Matthew
Re: Capture devices
Reply #3 - May 17th, 2005, 1:06pm
 
If you're running the sketch from processing, and not from an applet, then you could use something like this:
Code:
PImage cam;

void draw()
{
cam=loadImage("http://www.someties.com/url/of/image.jpg");
}


That'll download the current webcam image from the server you specify.
If the sketch is going to be shown as an applet, it'd need to be signed, otherwise the Java SandBox won't let it download the images.
Page Index Toggle Pages: 1