Light camera stream viewer (for PC)

chipreibel

n3wb
Joined
Dec 24, 2014
Messages
19
Reaction score
2
Location
Commerce Twp, MI
Camera stream viewer (for PC)

I have 4 Hikvision cameras and have a dedicated PC running the Hikvision iVMS NVR software. I've been using the VLC media player to view the cameras one at a time from my laptop, but am looking for a light-weight stream viewing software that I can use to view 3 or 4 of the camera streams in a single tiled-view (not looking for any functionality other than to view the stream - no recording, etc).

I tried "IP Camera Viewer", but it won't recognize/display my model 2332 cameras. I tried using the 4 different Hikvision profiles that I lists and none of them are working...

Any suggestions?
 
Last edited by a moderator:

bp2008

Staff member
Joined
Mar 10, 2014
Messages
12,678
Reaction score
14,035
Location
USA
Yeah, you should be able to use the VLC web plugin to view multiple cameras in a grid in Chrome or Firefox.

Here is something to get you started, though you'll have to tinker with the table layout, widths, heights, and rtsp URLs.

Save this as a .html file, edit, and open in your favorite browser.

HTML:
<html>
	<head>
		<title></title>
		<style type="text/css">
			body
			{
				background-color:black;
				margin:0;
				color: Gray;
			}
			table
			{
				border-collapse:collapse;
			}
			td
			{
				padding:0;
			}
		</style>
	</head>
	<body>
		<table>
			<tr>
				<td>
				</td>
				<td>
					<embed type="application/x-vlc-plugin" pluginspage="http://www.videolan.org" width="480" height="270" toolbar="false" src="rtsp://192.168.0.76/mpeg4" mute="true" />
				</td>
				<td>
					<embed type="application/x-vlc-plugin" pluginspage="http://www.videolan.org" width="480" height="270" toolbar="false" src="rtsp://192.168.0.77/mpeg4" mute="true" />
				</td>
				<td>
					<embed type="application/x-vlc-plugin" pluginspage="http://www.videolan.org" width="480" height="270" toolbar="false" src="rtsp://192.168.0.88/ch0_0.h264" mute="true" />
				</td>
			</tr>
			<tr>
				<td>
					<embed type="application/x-vlc-plugin" pluginspage="http://www.videolan.org" width="480" height="270" toolbar="false" src="rtsp://192.168.0.56/" mute="true" />
				</td>
				<td>
					<embed type="application/x-vlc-plugin" pluginspage="http://www.videolan.org" width="480" height="270" toolbar="false" src="rtsp://192.168.0.68/" mute="true" />
				</td>
				<td>
					<embed type="application/x-vlc-plugin" pluginspage="http://www.videolan.org" width="480" height="270" toolbar="false" src="rtsp://192.168.0.67/" mute="true" />
				</td>
				<td>
					<embed type="application/x-vlc-plugin" pluginspage="http://www.videolan.org" width="480" height="270" toolbar="false" src="rtsp://192.168.0.69/" mute="true" />
				</td>
			</tr>
			<tr>
				<td>
					<embed type="application/x-vlc-plugin" pluginspage="http://www.videolan.org" width="480" height="270" toolbar="false" src="rtsp://192.168.0.81/ch0_0.h264" mute="true" />
				</td>
				<td>
					<embed type="application/x-vlc-plugin" pluginspage="http://www.videolan.org" width="480" height="270" toolbar="false" src="rtsp://192.168.0.78/" mute="true" />
				</td>
				<td>
					<embed type="application/x-vlc-plugin" pluginspage="http://www.videolan.org" width="480" height="270" toolbar="false" src="rtsp://192.168.0.59/" mute="true" />
				</td>
				<td>
					<embed type="application/x-vlc-plugin" pluginspage="http://www.videolan.org" width="480" height="270" toolbar="false" src="rtsp://192.168.0.58/" mute="true" />
				</td>
			</tr>
			<tr>
				<td>
					<embed type="application/x-vlc-plugin" pluginspage="http://www.videolan.org" width="480" height="270" toolbar="false" src="rtsp://192.168.0.89/mpeg4" mute="true" />
				</td>
			</tr>
		</table>
	</body>
</html>
 
Top