当前位置:首页 » 《我的小黑屋》 » 正文

使用webrtc-streamer查看实时监控

15 人参与  2024年10月11日 17:20  分类 : 《我的小黑屋》  评论

点击全文阅读


摄像头配置(海康摄像头为例)

摄像头视频编码应改成H264格式

webrtc-streamer下载

webrtc-streamer下载地址

下载后解压出来双击运行,端口默认8000

VUE2项目引入文件

在项目静态文件“public”中需引入两个js文件“webrtcstreamer.js”与“adapter.min.js” “webrtcstreamer.js”在上面下载的“html”文件夹内 “adapter.min.js”上面下载的“html/bils”文件夹内 两个js文件放入项目中,在html文件引入

 组件对接

定义容器
      <section>        <video          muted          autoplay          controls          width="100%"          height="10vh"          ref="video"          id="video"        ></video>      </section>
定义data变量 初始化摄像头
    //192.168.3.11:8000是webrtc-streamer运行的ip和端口    //rtsp地址根据实际来查看    //此项目是后台返回监控信息,包括账号密码和摄像头ip地址        initVideo(item) {      this.webRtcServer = new WebRtcStreamer(        "video",        location.protocol + "//192.168.3.11:8000"      );      //需要查看的rtsp地址      this.webRtcServer.connect(        `rtsp://${item.account}:${item.password}@${item.ip}:554/h264/ch1/main/`      );    }


点击全文阅读


本文链接:http://m.zhangshiyu.com/post/170690.html

<< 上一篇 下一篇 >>

  • 评论(0)
  • 赞助本站

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

关于我们 | 我要投稿 | 免责申明

Copyright © 2020-2022 ZhangShiYu.com Rights Reserved.豫ICP备2022013469号-1