如何监控 DVR 摄像机?

如何监控 DVR 摄像机?

我安装了 DVR,并且运行良好...我有 IP 地址,当我在 IE9 中写入它时,它运行完美(通过网络服务)...我如何通过网络监控它们?

我尝试使用 Ubuntu 软件中心的每个浏览器,但看不到它们 =(...(我可以进入 DVR,但界面太差了)

答案1

Meye 或 Vmeyesuper 可以作为谷歌浏览器扩展程序运行。为此,您需要安装谷歌浏览器、浏览器的 Archon 扩展程序和 chromeos-apk。然后,您需要下载 apk,并使用 chromeos-apk 将其转换为谷歌浏览器扩展程序:chromeos-apk vmeyesuper.apk --archon。然后,您需要将 Archon 和转换后的 apk 作为解压的扩展程序加载到谷歌浏览器。

使用当前版本的 chromeos-apk,您需要将“message”:“VM”添加到 messages.json 文件的 extname 部分,如下所示:

{
  "appNotSupported": {
    "description": "Message displayed when the app is not supported.",
    "message": "This app is incompatible with your device. Check to make sure other Android apps work for you from the Chrome Web Store"
  },
  "extName": {
    "message": "VMeyesuper",
    "description": "Extension name"
  }
}

如果是 Ubuntu,那么您可以在 dash 中搜索 VMeyesuper 或您在 extname 部分中为应用程序指定的任何名称。

Ubuntu 上的 VMeyeSuperVMeyesuper 关于VMeyesuper 设置

答案2

您可以使用甚高频液晶,它有Linux、Windows、Android……版本。

在 Ubuntu 上安装

sudo apt install vlc*

这可确保您也安装了所有插件。

打开 VLC 并在菜单中媒体点击打开网络流或使用快捷方式Ctrl+n

现在您可以输入您的流媒体地址和配置,例如:

rtsp://192.168.1.55:554/user=USER&password=PWD&channel=1&stream=0.sdp?real_stream--rtp-caching=100 

可以在 VLC 网页上或使用以下网址找到更多文档

man vlc

答案3

如果您的 DVR 支持 rtsp,您可以通过 Firefox 中的 vlc 插件监控多个频道。

创建一个空白的 html 文件,其中包含以下内容:

<!DOCTYPE html>
<html>
<title>Net Surveilance</title>
<body>
<embed type="application/x-vlc-plugin" pluginspage="http://www.videolan.org"
       width="550"
       height="400"
       id="vlc" />

<script type="text/javascript">
<!--
var vlc = document.getElementById("vlc");
var options = new Array(":aspect-ratio=4:3", ":rtsp-tcp");
var id = vlc.playlist.add("rtsp://192.168.1.55:554/user=USER&password=PWD&channel=1&stream=1.sdp?real_stream--rtp-caching=100", "fancy name", options);
vlc.playlist.play();
//-->
</script>

<embed type="application/x-vlc-plugin" pluginspage="http://www.videolan.org"
       width="550"
       height="400"
       id="vlc2" />

<script type="text/javascript">
<!--
var vlc2 = document.getElementById("vlc2");
var options = new Array(":aspect-ratio=4:3", ":rtsp-tcp");
var id = vlc2.playlist.add("rtsp://192.168.1.55:554/user=USER&password=PWD&channel=2&stream=1.sdp?real_stream--rtp-caching=100", "fancy name", options);
vlc2.playlist.play();
//-->
</script>

<embed type="application/x-vlc-plugin" pluginspage="http://www.videolan.org"
       width="550"
       height="400"
       id="vlc3" />

<script type="text/javascript">
<!--
var vlc3 = document.getElementById("vlc3");
var options = new Array(":aspect-ratio=4:3", ":rtsp-tcp");
var id = vlc3.playlist.add("rtsp://192.168.1.55:554/user=USER&password=PWD&channel=3&stream=1.sdp?real_stream--rtp-caching=100", "fancy name", options);
vlc3.playlist.play();
//-->
</script>

<embed type="application/x-vlc-plugin" pluginspage="http://www.videolan.org"
       width="550"
       height="400"
       id="vlc4" />

<script type="text/javascript">
<!--
var vlc4 = document.getElementById("vlc4");
var options = new Array(":aspect-ratio=4:3", ":rtsp-tcp");
var id = vlc4.playlist.add("rtsp://192.168.1.55:554/user=USER&password=PWD&channel=4&stream=1.sdp?real_stream--rtp-caching=100", "fancy name", options);
vlc4.playlist.play();
//-->
</script>

</body>
</html>

替换链接中的 IP 地址和 USER、PWD:

rtsp://192.168.1.55:554/user=USER&password=PWD&channel=1&stream=0.sdp?real_stream--rtp-caching=100 

与您的数据。您还可以相应地修改 rtsp 链接以匹配您的 DVR。

通过远程 VPN 在 UBUNTU 上使用 vlc firefox 插件进行测试。

答案4

问题在于 DVR 使用 OCX (activex) 控制器,该控制器必须安装,并且只能在 iexplorer 中安装。最好有一个像 Meye 这样的程序(用于 iphone、bberry、android 等),也许可以使用这些移动系统的模拟器,然后加载 Meye 以查看 DVR 上的摄像头。

相关内容