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
IP CAM (Read 1227 times)
IP CAM
Jun 24th, 2009, 6:02am
 
hi everyone,

i 'm going to buy several IP video camera.
Is it possible to get the incoming video flux into processing?
i'd like to have the source of each IP camera...

Thanks a lot!
Re: IP CAM
Reply #1 - Jun 30th, 2009, 6:10am
 
hi again!

ok, so Smiley ... does anyone have already use this kind of device?

thanks for yor help!
Re: IP CAM
Reply #2 - May 6th, 2010, 5:55am
 
DESPERATE FOR ANY HELP TO MOVE THIS FORWARD AS TIME IS RUNNING OUT

Hi there i m trying to read 5 edimax 1510wg webcams in processing
below is the code i m trying to use any ideas???
I M LOST !!!!

import codeanticode.gsvideo.*;
import hypermedia.video.*;
GSPipeline pipe;
OpenCV opencv;
void setup() {
//  pipe = new GSPipeline(this, "gnomevfssrc location=http://192.168.1.118/axis-cgi/mjpg/video.cgi?resolution=640x480 ! jpegdec ! ffmpegcolorspace");
//  http://192.168.2.3/jpg/image.jpg
pipe = new GSPipeline(this, "gnomevfssrc location=http://192.168.2.3/mjpg/video.mjpg");
opencv = new OpenCV( this );
opencv.allocate(width,height);
}
void draw() {
if (pipe.available() == true) {
  pipe.read();
  opencv.copy(pipe, 0, 0, 640, 480, 0, 0, width, height);
  print ("   hello    ");
}
print ("   not found   ");
}
Page Index Toggle Pages: 1