I need to re-broadcast IP camera
-
I have an IP camera hooked up to my laptop - locally I can see video. How do I re-broadcast the video out my 2 network connection so it can be seen from the web, or at least another computer. What I need is a netmeeting type project that can use an IP camera instead of a capture card. tks xlthim
-
I have an IP camera hooked up to my laptop - locally I can see video. How do I re-broadcast the video out my 2 network connection so it can be seen from the web, or at least another computer. What I need is a netmeeting type project that can use an IP camera instead of a capture card. tks xlthim
Try hunting for IP camera Sony, www.axis.com might be a good sample.. alternatively, you can use your webcam to capture video and stream it over HTTP.. is you are looking for ready product for that.. LEADTOOLS might be of help.. if you have looking for sample code and want to learn the how-to of it, then you already are at codeproject.. so what are you waiting for buddy...
-
I have an IP camera hooked up to my laptop - locally I can see video. How do I re-broadcast the video out my 2 network connection so it can be seen from the web, or at least another computer. What I need is a netmeeting type project that can use an IP camera instead of a capture card. tks xlthim
I've done that for some cameras that contain a web server in them (usually IP cameras do). All you have to do is implement the browser side. In my case a simple GET or POST is enough for the camera to start outputing JPEG sequences which you can forward as you like. I've also encoutered other more complex servers that require the browser to install ActiveX controlls or something like that. I didn't want to go to all that trouble, so I just sniffed the packets with Ethereal, then saved them so that I can use them in my application. I don't know how they work (because I didn't bother looking at their contents), but they do. Rilhas