01304 827609 info@use-ip.co.uk Find us

Viewing 12 cameras on a http stream

Slepmog

Member
Messages
9
Points
1
Trying to work out how to set a browser home page to display a composite display of 16 cameras from the NVR DS-7732NI-I4 / 16P Hopefully with no clicks, no logons
 
Thanks for your suggestion. It is a possibility, but the NVR is in the server room on the ground floor and the Screen needs to be 2 floor which is a network switch away. That network switch makes it harder to run HDMI over Cat5.
 
Not sure about getting the streams from the NVR to a web page. I'll play around on the weekend an see. I've done something similar to this via the individual camera IP's, but you need to set the sub-stream video encoding to MJPEG. In the body of a HTML page you could use iframes. Something like this:

HTML:
<!DOCTYPE html>
<html>
<body>

        <iframe width="640" height="480" src="http://192.168.1.64/ISAPI/Streaming/channels/102/httppreview"></iframe>
        <iframe width="640" height="480" src="http://192.168.1.65/ISAPI/Streaming/channels/102/httppreview"></iframe>

</body>
</html>

I'll experiment some more and get back to you.
 
Back
Top