首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
MCP广场
社区首页 >问答首页 >我如何监控DVR摄像机?

我如何监控DVR摄像机?
EN

Ask Ubuntu用户
提问于 2012-02-06 12:04:59
回答 5查看 38.7K关注 0票数 6

我安装了一台DVR,效果很好.我有IP地址,当我用IE9写它时非常完美(通过web服务).我如何通过网络监控他们?

我试着用Ubuntu软件中心的每个浏览器,但我看不到它们=(.(我可以进入DVR,但接口只是一个耻辱)

EN

回答 5

Ask Ubuntu用户

回答已采纳

发布于 2014-10-19 07:18:23

Meye或Vmeyesuper可以作为google扩展运行。为了做到这一点,您需要安装Google,浏览器的Archon扩展和chromeos。然后您需要下载apk并使用chromeos将其转换为google扩展: chromeos-apk vmeyesuper.apk -archon。然后,您需要加载Archon和转换后的apk作为google的未打包扩展。

在chromeos的当前版本中,您需要将"message":"VM“添加到messages.json文件的extname部分,如下所示:

代码语言:javascript
运行
复制
{
  "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的情况下,您可以在破折号中搜索VMeyesuper或在extname部分中给应用程序指定的任何名称。

票数 3
EN

Ask Ubuntu用户

发布于 2015-03-30 15:25:17

您可以在Linux (POL)上安装Play,然后只安装IE6。

在设置中安装之后,安装vcrun6库(这也包括mfc42.dll )。

然后在此虚拟驱动器中运行随DVR提供的OCX安装软件,在POL设置杂项窗格中运行exe文件,并安装OCX。

成功安装OCX后,运行Internet,输入DVR地址并登录。登录后你就能看到摄像头了。

在linux上使用的IE7或IE8在与葡萄酒的兼容性和与DVR的结合方面都做得不太好。你可以试一试,不管它是否适用于你的DVR。如果IE崩溃,您可以尝试不同版本的DVR软件,这至少对我有效。

您还可以通过POL: WEB监视、DVR OCX和Internet 6:https://www.playonlinux.com/en/app-2604-WEB_监视_DVR_OCX_使用_互联网_资源管理器_6.html中的自动脚本安装它

票数 1
EN

Ask Ubuntu用户

发布于 2015-04-05 07:04:51

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

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

代码语言:javascript
运行
复制
<!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地址和用户,PWD:

代码语言:javascript
运行
复制
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插件进行测试。

票数 1
EN
页面原文内容由Ask Ubuntu提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://askubuntu.com/questions/101847

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档