VLC (Server) re-stream Security Camera Feed

Posted by Aaron on Super User See other posts from Super User or by Aaron
Published on 2012-05-31T02:28:44Z Indexed on 2012/05/31 4:43 UTC
Read the original article Hit count: 1297

I purchased a Swann Home Security DVR system and was hoping for some help on how to duplicate the streaming video on my server.

In order to get their web view (streaming video in the browser) to work, I had to install the following plugins:

HiDvrPlugin.dmg for mac.
Hidvrocx.cab for Windows.

I was originally thinking it was a sign of some form of DRM? Maybe. Maybe not.

HTML wise, the following code is in the source of the safari version of the web view:

<embed pluginspage="SurveilClient.dmg" width="10px" height="10px" type="application/x-scplugin" id="MacDiv" style="height: 592px; width: 720px; left: 278px; top: 61px; ">

It seems to be the main display area.

Using wireshark, I am able to see that the video stream is on port 9000. However, I have no idea what type of stream it is. I've tried opening it in VLC with no such luck.

http://dvr_ip:9000
tcp://dvr_ip:9000

My hope was to do the following to redistribute the feed

vlc dvr_ip:9000 --sout h264-version-on-localhost:3000

TLDR; Trying to re-distribute a stream from a security camera (can't tell the format) using vlc (re-distribute via h.264 / HTML5). Not sure how to accomplish this. Is it possible that the software has some type of DRM that only the plugins can decode?

© Super User or respective owner

Related posts about vlc

Related posts about video-streaming