赞
踩
webrtc-streamer下载
webrtc-streamer下载地址
下载后解压出来双击运行,端口默认8000
组件对接
- 定义容器
<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/` ); }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。