Tom Gibara, released some public-domain code ('The code is public domain. I make no warranty as to its fitness for any particular purpose.') which can easily be used to connect to a remote WebCam over IP and Port (for example to your Desktop PC).
The Code needed to benefit from his source is really short:
Using java Syntax Highlighting
- CameraSource cs = new RemoteCamera("192.168.0.100", 9889, 320, 240);
- if (!cs.open()) { /* deal with failure to obtain camera */ }
- while(/*some condition*/) {
- cs.capture(canvas); //capture the frame onto the canvas
- }
- cs.close();
Parsed in 0.030 seconds, using GeSHi 1.0.8.4
On the "Server"-Side you need to run a small app: "WebcamBroadcaster", that makes the Camera-Images available over IP.
[align=center]Download the handful of Java-Files on his Page
http://www.tomgibara.com/android/camera-source[/align]
Regards,
plusminus




).


