We have Sony security cameras which have an inbuilt web server, giving a web interface to view and control the camera. We would like to integrate the camera picture into a Java web application, is there a way to connect to the camera from my code?

I see plenty of generic software (for PC, PDA, Iphone etc) whereby you just tell the software your camera model and IP address and it will pull in the camera image - obviously it talks to the camera and bypasses the web interface because you it just gives the image, not the whole web interface. How do these programs work and how can I replicate that?

link|improve this question

69% accept rate
1  
Contact the manufacturer and ask them. – Will Sep 9 '09 at 12:52
feedback

4 Answers

It's not a requirement that they "bypass" the web interface, they might just "surf" the camera programmatically. If the camera's design is simple enough, the image might even have a static URI, e.g. http://camera.ip.address/images/image00.jpg or whatever might always return the latest image.

You should probably read the HTML source served by the camera to figure out how the images are accessed, and mimic that.

link|improve this answer
It's an mpeg, somehow served with activex. – Fletch Sep 9 '09 at 13:10
feedback

Is it a video feed or just plain images? It should be fairly easy if you just use that elements URL in your Java app. Obviously maintenance wise it's fairly messy, but it would work.

For instance if the camera outputs it's images to a url like:

192.168.0.2:80/camera/cameraimage.jpg

or

192.168.0.2:80/camera/cameraimage.swf,

you just reference that in your app. Shouldn't be too troublesome.

link|improve this answer
Just remember that java does not support flash ;-) – Paul de Vrieze Sep 9 '09 at 13:02
Yeah I tried that... the URL creates the border around the image and then calls a .cab file. It's all done with horrible Javascript (!). And I guess the cab does the rest. I'm not too familiar with this .cab stuff... not sure what to do. The second issue is that I need to integrate basic authentication (no prompting). function activateAViewerAuto () { document.write('<OBJECT ID="SonySncP5View" CLASSID="CLSID:5CB430A9-CAAC-4C91-AF61-6D410EEE1221" CODEBASE="../program/SonySncP5View.cab'); document.write('#version='); document.write(AViwerVer); document.write('"></OBJECT>'); } – Fletch Sep 9 '09 at 13:08
feedback

Most CCTV cameras that I have worked with (and I have worked for 2 CCTV camera companies) interface directly to the camera using RS-232 or RS-423 (I think). Typically, the cameras are connected directly to a remote system using some serial protocol. You control the remote system using some wider networking protocol. Typically, they are connected to an ISDN like or something similar.

There may well be USB connections now to cameras, but certainly a lot of the current systems are using serial communications.

link|improve this answer
Nah there's no serial connection, it's connected to an ethernet cable. – Fletch Sep 9 '09 at 13:09
feedback

Generally your Sony camera is going to stream video on a specific port. You'll have to negotiate with the camera on that port to receive the images. Certain companies like Verint, Avigilon, and others have added support for those cameras into their software. As for RS232 and it's 422 not 423, this is usually used for PTZ cameras. Video is only sent via COAX on older cameras and now TCP/IP. If you would like to add Sony cameras to stream through your software contact Sony for White papers and using their SDK.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.