vue 海康 视频 展现

1. 下载并安装海康 web 插件

https://open.hikvision.com/download/5c67f1e2f05948198c909700?type=10

 

2. 把上一步解压的三个 js, 复制到你的项目中, 根据路径, 自己引入到  index.html 中

3. 建议运行它的 demo, 大概看看代码, 了解一下它的大致结构, 它的注解很详细, 3 分钟就能看完

4. 贴上我的代码(我的是每次只显示一个画面, 点击摄像头切换画面)

<template>
    <!--视频窗口展示-->
    <div id="playWnd" class="playWnd" style="left: 109px; top: 133px;"></div>
</template>
<script>
  import publicUtils from "../../utils/publicUtils";    // 我自己的工具类, 可以不要
  let divWidth = 500;                                   // 容器宽
  let divHeight = 300;                                  // 容器高
  //声明公用变量
  let initCount = 0;                                    // 初始化重试次数,3次失败则报错
  let oWebControl;                                    // 页面控制对象
  let pubKey = '';
  export default {
    name: 'hkVideo',
    data() {
      return {      // 视频播放
        cameraIndexCode: this.cameraIndexCodeProp,      // 摄像头的code, 我是父页面传过来的
      }
    },
    props: ['cameraIndexCodeProp'],        // 接收父页面传来的摄像头 code
    methods: {
      // 创建播放实例, 这里不用改
      initPlugin() {                        // 初始化播放插件, 相当于准备播放环境(不是重点, 但要记着这是每次加载的第一步, 不然切换画面会有坑)
        const _this = this;
        oWebControl = new WebControl({
          szPluginContainer: "playWnd",                       // 指定容器id
          iServicePortStart: 15900,                           // 指定起止端口号,建议使用该值
          iServicePortEnd: 15909,
          szClassId: "23BF3B0A-2C56-4D97-9C03-0CB103AA8F11",   // 用于IE10使用ActiveX的clsid
          cbConnectSuccess: function () {                     // 创建WebControl实例成功
            oWebControl.JS_StartService("window", {         // WebControl实例创建成功后需要启动服务
              dllPath: "./VideoPluginConnect.dll"         // 值"./VideoPluginConnect.dll"写死
            }).then(function () {                           // 启动插件服务成功
              oWebControl.JS_SetWindowControlCallback({   // 设置消息回调
                cbIntegrationCallBack: _this.cbIntegrationCallBack
              });

              oWebControl.JS_CreateWnd("playWnd", divWidth, divHeight).then(function () { //JS_CreateWnd创建视频播放窗口,宽高可设定
                _this.init();  // 创建播放实例成功后初始化
              });
            }, function () { // 启动插件服务失败
            });
          },
          cbConnectError: function () { // 创建WebControl实例失败
            oWebControl = null;
            publicUtils.notify('warn', "插件未启动,正在尝试启动,请稍候...");
            WebControl.JS_WakeUp("VideoWebPlugin://"); // 程序未启动时执行error函数,采用wakeup来启动程序
            initCount++;
            if (initCount < 3) {
              setTimeout(function () {
                this.initPlugin();
              }, 3000)
            } else {
              publicUtils.notify('error', "插件启动失败,请检查插件是否安装!");
            }
          },
          cbConnectClose: function (bNormalClose) {
            // 异常断开:bNormalClose = false
            // JS_Disconnect正常断开:bNormalClose = true
            if (!bNormalClose) {
              publicUtils.notify('error', "视屏链接异常中断!");
            }
            oWebControl = null;
          }
        });
      },

      //初始化, 主要改这里
      init() {
        const _this = this;
        this.getPubKey(function () {
          ////////////////////////////////// 请自行修改以下变量值	////////////////////////////////////
          let appkey = "你的appkey";                           //综合安防管理平台提供的appkey,必填
          let secret = _this.setEncrypt("你的secret");   //综合安防管理平台提供的secret,必填
          let ip = "192.168.2.110";                           //综合安防管理平台IP地址,必填
          let playMode = 0;                                  //初始播放模式:0-预览,1-回放
          let port = 443;                                    //综合安防管理平台端口,若启用HTTPS协议,默认443
          let snapDir = "D:\\SnapDir";                       //抓图存储路径
          let videoDir = "D:\\VideoDir";                     //紧急录像或录像剪辑存储路径
          let layout = "1x1";                                //playMode指定模式的布局
          let enableHTTPS = 1;                               //是否启用HTTPS协议与综合安防管理平台交互,这里总是填1
          let encryptedFields = 'secret';					   //加密字段,默认加密领域为secret
          let showToolbar = 0;                               //是否显示工具栏,0-不显示,非0-显示
          let showSmart = 1;                                 //是否显示智能信息(如配置移动侦测后画面上的线框),0-不显示,非0-显示
          let buttonIDs = "";                               //自定义工具条按钮
          ////////////////////////////////// 请自行修改以上变量值	////////////////////////////////////

          oWebControl.JS_RequestInterface({
            funcName: "init",
            argument: JSON.stringify({
              appkey: appkey,                            //API网关提供的appkey
              secret: secret,                            //API网关提供的secret
              ip: ip,                                    //API网关IP地址
              playMode: playMode,                        //播放模式(决定显示预览还是回放界面)
              port: port,                                //端口
              snapDir: snapDir,                          //抓图存储路径
              videoDir: videoDir,                        //紧急录像或录像剪辑存储路径
              layout: layout,                            //布局
              enableHTTPS: enableHTTPS,                  //是否启用HTTPS协议
              encryptedFields: encryptedFields,          //加密字段
              showToolbar: showToolbar,                  //是否显示工具栏
              showSmart: showSmart,                      //是否显示智能信息
              buttonIDs: buttonIDs                       //自定义工具条按钮
            })
          }).then(function (oData) {
            oWebControl.JS_Resize(divWidth, divHeight);  // 初始化后resize一次,规避firefox下首次显示窗口后插件窗口未与DIV窗口重合问题
          });
        });
      },

      //获取公钥, 不用改
      getPubKey(callback) {
        oWebControl.JS_RequestInterface({
          funcName: "getRSAPubKey",
          argument: JSON.stringify({
            keyLength: 1024
          })
        }).then(function (oData) {
          console.log(oData);
          if (oData.responseMsg.data) {
            pubKey = oData.responseMsg.data;
            callback()
          }
        })
      },

      //RSA加密, 不用改
      setEncrypt(value) {
        let encrypt = new JSEncrypt();
        encrypt.setPublicKey(pubKey);
        return encrypt.encrypt(value);
      },

      // 设置窗口裁剪,当因滚动条滚动导致窗口需要被遮住的情况下需要JS_CuttingPartWindow部分窗口
      setWndCover() {
        let iWidth = $(window).width();
        let iHeight = $(window).height();
        let oDivRect = $("#playWnd").get(0).getBoundingClientRect();

        let iCoverLeft = (oDivRect.left < 0) ? Math.abs(oDivRect.left) : 0;
        let iCoverTop = (oDivRect.top < 0) ? Math.abs(oDivRect.top) : 0;
        let iCoverRight = (oDivRect.right - iWidth > 0) ? Math.round(oDivRect.right - iWidth) : 0;
        let iCoverBottom = (oDivRect.bottom - iHeight > 0) ? Math.round(oDivRect.bottom - iHeight) : 0;

        iCoverLeft = (iCoverLeft > 1000) ? 1000 : iCoverLeft;
        iCoverTop = (iCoverTop > 600) ? 600 : iCoverTop;
        iCoverRight = (iCoverRight > 1000) ? 1000 : iCoverRight;
        iCoverBottom = (iCoverBottom > 600) ? 600 : iCoverBottom;

        oWebControl.JS_RepairPartWindow(0, 0, 1001, 600);    // 多1个像素点防止还原后边界缺失一个像素条
        if (iCoverLeft != 0) {
          oWebControl.JS_CuttingPartWindow(0, 0, iCoverLeft, 600);
        }
        if (iCoverTop != 0) {
          oWebControl.JS_CuttingPartWindow(0, 0, 1001, iCoverTop);    // 多剪掉一个像素条,防止出现剪掉一部分窗口后出现一个像素条
        }
        if (iCoverRight != 0) {
          oWebControl.JS_CuttingPartWindow(1000 - iCoverRight, 0, iCoverRight, 600);
        }
        if (iCoverBottom != 0) {
          oWebControl.JS_CuttingPartWindow(0, 600 - iCoverBottom, 1000, iCoverBottom);
        }
      },

      //视频预览功能, 就设置 cameraIndexCode 就行了
      startPreview() {
        let _this = this;
        let cameraIndexCode = _this.cameraIndexCode;     //获取输入的监控点编号值,必填
        let streamMode = 0;                                     //主子码流标识:0-主码流,1-子码流
        let transMode = 1;                                      //传输协议:0-UDP,1-TCP
        let gpuMode = 0;                                        //是否启用GPU硬解,0-不启用,1-启用
        let wndId = -1;                                         //播放窗口序号(在2x2以上布局下可指定播放窗口)

        cameraIndexCode = cameraIndexCode.replace(/(^\s*)/g, "");
        cameraIndexCode = cameraIndexCode.replace(/(\s*$)/g, "");

        oWebControl.JS_RequestInterface({
          funcName: "startPreview",
          argument: JSON.stringify({
            cameraIndexCode: cameraIndexCode,                //监控点编号
            streamMode: streamMode,                         //主子码流标识
            transMode: transMode,                           //传输协议
            gpuMode: gpuMode,                               //是否开启GPU硬解
            wndId: wndId                                     //可指定播放窗口
          })
        })
      },
        // 这里根据你的需要去改, 只加载一次的话, 就放到 mounted 中就行了
      initView(){
        // 先准备环境, 环境准备好才能加载, 所以给了个延迟, 用 Promise 同步执行, 加载不出来.只能用此下策, 有空再优化
        if(this.cameraIndexCode){
          this.initPlugin();
          setTimeout(this.startPreview, 1000);
        }
      },
      //停止全部预览
      stopAllPreview() {
        oWebControl.JS_RequestInterface({
          funcName: "stopAllPreview"
        })
      },
      destroyedView(){
        if (oWebControl != null) {
          this.stopAllPreview();
          oWebControl.JS_HideWnd();   // 先让窗口隐藏,规避可能的插件窗口滞后于浏览器消失问题
          oWebControl.JS_Disconnect().then(function () {  // 断开与插件服务连接成功
            },
            function () {  // 断开与插件服务连接失败
            });
        }
      }
    },
    mounted() {
      // 有摄像头 code, 才加载, 另外因为我每次只显示一个, 所以显示之前要把之前显示的摄像头销毁, 所以加了 oWebControl == null 的判断.
      if(this.cameraIndexCode && oWebControl == null){
        this.initView();
      }else{
        // 如果 code 不为空, 则先销毁现有摄像头, 再去加载新的摄像头
        this.destroyedView();
        setTimeout(this.initView, 1000);
      }
    },
    destroyed() {
      this.destroyedView();
    }
  }
</script>

<style scoped>
    html, body {
        padding: 0;
        margin: 0;
    }

    .playWnd {
        width: 500px; /*播放容器的宽和高设定*/
        height: 300px;
    }

    .operate {
        margin-top: 24px;
    }

    .operate::after {
        content: '';
        display: block;
        clear: both;
    }

    .module {
        float: left;
        width: 340px;
        /*min-height: 320px;*/
        margin-left: 16px;
        padding: 16px 8px;
        box-sizing: border-box;
        border: 1px solid #e5e5e5;
    }

    .module .item {
        margin-bottom: 4px;
    }

    .module input[type="text"] {
        box-sizing: border-box;
        display: inline-block;
        vertical-align: middle;
        margin-left: 0;
        width: 150px;
        min-height: 20px;
    }

    .module .btn {
        min-width: 80px;
        min-height: 24px;
        margin-top: 100px;
        margin-left: 80px;
    }
</style>

5. 父页面代码

// key设置的当前时间, 为了每次点击都加载新的组件, 避免画面重叠, 不刷新
<div v-if="hkVideoble" class="visual-background-hkVideo-div">
                    <hkVideoView :key="timer" v-bind:cameraIndexCodeProp="cameraIndexCode"/>   
                </div>



// js 方法, 这是在另一个组件里调的, 就不贴出来了. 就是点击摄像头图片, 触发这个方法而已
openCamera(e) {    
//如果点击同一个, 则关闭画面
        if(this.cameraIndexCode == e.cameraIndexCode){
          this.hkVideoble = false;
          this.cameraIndexCode = null;
        }else{
          this.hkVideoble = true;
          this.cameraIndexCode = e.cameraIndexCode;
          this.timer = new Date().getTime();
        }
}

6. index.html 引用也贴出来吧, 这个应该都会吧

7. 没了, 希望能帮到你们

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章