组件对接
定义容器
<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/` ); }