|
@@ -6,156 +6,152 @@
|
|
|
element-loading-spinner="el-icon-loading"
|
|
|
>
|
|
|
<div id="playMain" class="playMain">
|
|
|
- <div
|
|
|
- :id="`playWnd${videoPanelId}`"
|
|
|
- class="playWnd"
|
|
|
- :ref="`playWnd${this.videoPanelId}`"
|
|
|
- ></div>
|
|
|
+ <div :id="`playWnd${videoPanelId}`" class="playWnd" :ref="`playWnd${this.videoPanelId}`"></div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
-<script lang="ts">
|
|
|
-const WebControl = window.WebControl;
|
|
|
-const JSEncrypt = window.JSEncrypt;
|
|
|
-//视频监控中心
|
|
|
+<script >
|
|
|
+const WebControl = window.WebControl
|
|
|
+const JSEncrypt = window.JSEncrypt
|
|
|
export default {
|
|
|
- name: "hikVideo",
|
|
|
+ name: 'hikVideo',
|
|
|
+ props: {
|
|
|
+ videoPanelId: {},
|
|
|
+ showNum: {},
|
|
|
+ cameraList: {}
|
|
|
+ },
|
|
|
+ watch: {
|
|
|
+ cameraList() {
|
|
|
+ this.initPlugin()
|
|
|
+ },
|
|
|
+ showNum(val) {
|
|
|
+ switch (val) {
|
|
|
+ case 'single':
|
|
|
+ this.initparam.layout = '1x1'
|
|
|
+ break
|
|
|
+ case 'fourth':
|
|
|
+ this.initparam.layout = '2x2'
|
|
|
+ break
|
|
|
+ case 'ninth':
|
|
|
+ this.initparam.layout = '3x3'
|
|
|
+ break
|
|
|
+ }
|
|
|
+ this.initPlugin()
|
|
|
+ }
|
|
|
+ },
|
|
|
data() {
|
|
|
return {
|
|
|
- videoPanelId: "",
|
|
|
- showNum: "",
|
|
|
- cameraList: [],
|
|
|
loading: true,
|
|
|
+
|
|
|
+ //视频播放插件参数
|
|
|
initparam: {
|
|
|
- appKey: "26361415",
|
|
|
- secret: "12hp9GRlHu1BkL09nL0Q",
|
|
|
- apiIp: "183.255.30.6",
|
|
|
+ appKey: '26361415',
|
|
|
+ secret: '12hp9GRlHu1BkL09nL0Q',
|
|
|
+ apiIp: '183.255.30.6',
|
|
|
apiPort: 10443,
|
|
|
isLive: 0,
|
|
|
- layout: "3x3",
|
|
|
+ layout: '3x3'
|
|
|
},
|
|
|
- cameraIndexCode: "",
|
|
|
+ cameraIndexCode: '',
|
|
|
oWebControl: null,
|
|
|
- settingId: "",
|
|
|
+ settingId: '',
|
|
|
initCount: 0,
|
|
|
- pubKey: "",
|
|
|
- };
|
|
|
- },
|
|
|
- watch: {
|
|
|
- cameraList(nVal, oVal) {
|
|
|
- this.initPlugin();
|
|
|
- },
|
|
|
- showNum(nVal, oVal) {
|
|
|
- switch (nVal) {
|
|
|
- case "single":
|
|
|
- this.initparam.layout = "1x1";
|
|
|
- break;
|
|
|
- case "fourth":
|
|
|
- this.initparam.layout = "2x2";
|
|
|
- break;
|
|
|
- case "ninth":
|
|
|
- this.initparam.layout = "3x3";
|
|
|
- break;
|
|
|
- }
|
|
|
- this.initPlugin();
|
|
|
- },
|
|
|
+ pubKey: ''
|
|
|
+ }
|
|
|
},
|
|
|
+ //computed
|
|
|
+
|
|
|
computed: {
|
|
|
playWnd() {
|
|
|
- return this.$refs[`playWnd${this.videoPanelId}`];
|
|
|
- },
|
|
|
+ return this.$refs[`playWnd${this.videoPanelId}`]
|
|
|
+ }
|
|
|
},
|
|
|
mounted() {
|
|
|
- this.initPlugin();
|
|
|
+ this.initPlugin()
|
|
|
},
|
|
|
methods: {
|
|
|
//初始化插件
|
|
|
initPlugin() {
|
|
|
- this.destroyWnd();
|
|
|
- const that = this;
|
|
|
- this.settingId = this.videoPanelId;
|
|
|
+ this.destroyWnd()
|
|
|
+ const that = this
|
|
|
+ this.settingId = this.videoPanelId
|
|
|
this.oWebControl = new WebControl({
|
|
|
- szPluginContainer: "playWnd" + that.settingId, // 指定容器id
|
|
|
+ szPluginContainer: 'playWnd' + that.settingId, // 指定容器id
|
|
|
iServicePortStart: 15900, // 指定起止端口号,建议使用该值
|
|
|
iServicePortEnd: 15909,
|
|
|
- szClassId: "23BF3B0A-2C56-4D97-9C03-0CB103AA8F11", // 用于IE10使用ActiveX的clsid
|
|
|
+ szClassId: '23BF3B0A-2C56-4D97-9C03-0CB103AA8F11', // 用于IE10使用ActiveX的clsid
|
|
|
cbConnectSuccess: () => {
|
|
|
- that.initCount = 0;
|
|
|
+ that.initCount = 0
|
|
|
// ----------创建WebControl实例成功 启动插件---------
|
|
|
// ---------------2.JS_StartService-----------------
|
|
|
// 创建WebControl实例成功
|
|
|
that.oWebControl
|
|
|
- .JS_StartService("window", {
|
|
|
+ .JS_StartService('window', {
|
|
|
// WebControl实例创建成功后需要启动服务
|
|
|
- dllPath: "./VideoPluginConnect.dll", // 值"./VideoPluginConnect.dll"写死
|
|
|
+ dllPath: './VideoPluginConnect.dll' // 值"./VideoPluginConnect.dll"写死
|
|
|
})
|
|
|
.then(
|
|
|
() => {
|
|
|
// 启动插件服务成功
|
|
|
- that.oWebControl.JS_SetWindowControlCallback({});
|
|
|
+ that.oWebControl.JS_SetWindowControlCallback({})
|
|
|
//JS_CreateWnd创建视频播放窗口,宽高可设定
|
|
|
that.oWebControl
|
|
|
- .JS_CreateWnd(
|
|
|
- "playWnd" + that.settingId,
|
|
|
- that.playWnd.offsetWidth,
|
|
|
- that.playWnd.offsetHeight
|
|
|
- )
|
|
|
+ .JS_CreateWnd('playWnd' + that.settingId, that.playWnd.offsetWidth, that.playWnd.offsetHeight)
|
|
|
.then(() => {
|
|
|
- this.oWebControl.JS_HideWnd();
|
|
|
- this.init();
|
|
|
- });
|
|
|
+ this.oWebControl.JS_HideWnd()
|
|
|
+ this.init()
|
|
|
+ })
|
|
|
},
|
|
|
function () {
|
|
|
// 启动插件服务失败
|
|
|
- console.log("JS_CreateWnd error");
|
|
|
+ console.log('JS_CreateWnd error')
|
|
|
}
|
|
|
- );
|
|
|
+ )
|
|
|
},
|
|
|
cbConnectError: () => {
|
|
|
// 创建WebControl实例失败
|
|
|
- that.oWebControl = null;
|
|
|
- WebControl.JS_WakeUp("VideoWebPlugin://"); // 程序未启动时执行error函数,采用wakeup来启动程序
|
|
|
- that.initCount++;
|
|
|
+ that.oWebControl = null
|
|
|
+ WebControl.JS_WakeUp('VideoWebPlugin://') // 程序未启动时执行error函数,采用wakeup来启动程序
|
|
|
+ that.initCount++
|
|
|
if (that.initCount < 3) {
|
|
|
setTimeout(() => {
|
|
|
- that.initPlugin(); // 重新创建播放实例
|
|
|
- }, 3000);
|
|
|
+ that.initPlugin() // 重新创建播放实例
|
|
|
+ }, 3000)
|
|
|
} else {
|
|
|
- window.open("/HikVision/plugin/VideoWebPlugin.exe", "_blank");
|
|
|
+ window.open('/HikVision/plugin/VideoWebPlugin.exe', '_blank')
|
|
|
// $('#playWnd').html('插件启动失败,请检查插件是否安装!')
|
|
|
- this.$message("插件启动失败,请检查插件是否安装!");
|
|
|
+ this.$message('插件启动失败,请检查插件是否安装!')
|
|
|
}
|
|
|
},
|
|
|
cbConnectClose: () => {
|
|
|
//bNormalClose
|
|
|
// 异常断开:bNormalClose = false
|
|
|
// JS_Disconnect正常断开:bNormalClose = true
|
|
|
- this.oWebControl = null;
|
|
|
- },
|
|
|
- });
|
|
|
+ this.oWebControl = null
|
|
|
+ }
|
|
|
+ })
|
|
|
},
|
|
|
//初始化
|
|
|
init() {
|
|
|
this.getPubKey(() => {
|
|
|
- var appkey = this.initparam.appKey; //综合安防管理平台提供的appkey,必填
|
|
|
- var secret = this.setEncrypt(this.initparam.secret); //综合安防管理平台提供的secret,必填
|
|
|
- var ip = this.initparam.apiIp; //综合安防管理平台IP地址,必填
|
|
|
- var playMode = this.initparam.isLive; //初始播放模式:0-预览,1-回放
|
|
|
- var port = this.initparam.apiPort; //综合安防管理平台端口,若启用HTTPS协议,默认443
|
|
|
- var snapDir = ""; //抓图存储路径
|
|
|
- var videoDir = ""; //紧急录像或录像剪辑存储路径
|
|
|
- var layout = this.initparam.layout; //playMode指定模式的布局
|
|
|
- var enableHTTPS = 1; //是否启用HTTPS协议与综合安防管理平台交互,这里总是填1
|
|
|
- var encryptedFields = "secret"; //加密字段,默认加密领域为secret
|
|
|
- var showToolbar = 0; //是否显示工具栏,0-不显示,非0-显示
|
|
|
- var showSmart = 1; //是否显示智能信息(如配置移动侦测后画面上的线框),0-不显示,非0-显示
|
|
|
- var buttonIDs =
|
|
|
- "0,1,256,257,258,259,260,512,513,514,515,516,517,768,769"; //自定义工具条按钮
|
|
|
+ var appkey = this.initparam.appKey //综合安防管理平台提供的appkey,必填
|
|
|
+ var secret = this.setEncrypt(this.initparam.secret) //综合安防管理平台提供的secret,必填
|
|
|
+ var ip = this.initparam.apiIp //综合安防管理平台IP地址,必填
|
|
|
+ var playMode = this.initparam.isLive //初始播放模式:0-预览,1-回放
|
|
|
+ var port = this.initparam.apiPort //综合安防管理平台端口,若启用HTTPS协议,默认443
|
|
|
+ var snapDir = '' //抓图存储路径
|
|
|
+ var videoDir = '' //紧急录像或录像剪辑存储路径
|
|
|
+ var layout = this.initparam.layout //playMode指定模式的布局
|
|
|
+ var enableHTTPS = 1 //是否启用HTTPS协议与综合安防管理平台交互,这里总是填1
|
|
|
+ var encryptedFields = 'secret' //加密字段,默认加密领域为secret
|
|
|
+ var showToolbar = 0 //是否显示工具栏,0-不显示,非0-显示
|
|
|
+ var showSmart = 1 //是否显示智能信息(如配置移动侦测后画面上的线框),0-不显示,非0-显示
|
|
|
+ var buttonIDs = '0,1,256,257,258,259,260,512,513,514,515,516,517,768,769' //自定义工具条按钮
|
|
|
this.oWebControl
|
|
|
.JS_RequestInterface({
|
|
|
//通用请求响应接口
|
|
|
- funcName: "init", // 功能标识
|
|
|
+ funcName: 'init', // 功能标识
|
|
|
argument: JSON.stringify({
|
|
|
appkey: appkey, //API网关提供的appkey
|
|
|
secret: secret, //API网关提供的secret
|
|
@@ -169,48 +165,45 @@ export default {
|
|
|
encryptedFields: encryptedFields, //加密字段
|
|
|
showToolbar: showToolbar, //是否显示工具栏
|
|
|
showSmart: showSmart, //是否显示智能信息
|
|
|
- buttonIDs: buttonIDs, //自定义工具条按钮
|
|
|
+ buttonIDs: buttonIDs //自定义工具条按钮
|
|
|
// toolBarButtonIDs:toolBarButtonIDs//自定义工具条按钮字符串
|
|
|
// name:name//无效
|
|
|
- }),
|
|
|
+ })
|
|
|
})
|
|
|
.then(() => {
|
|
|
// 初始化后resize一次,规避firefox下首次显示窗口后插件窗口未与DIV窗口重合问题
|
|
|
- this.oWebControl.JS_Resize(
|
|
|
- this.playWnd.offsetWidth,
|
|
|
- this.playWnd.offsetHeight
|
|
|
- );
|
|
|
+ this.oWebControl.JS_Resize(this.playWnd.offsetWidth, this.playWnd.offsetHeight)
|
|
|
if (this.initparam.isLive == 0) {
|
|
|
- this.videoPreview();
|
|
|
+ this.videoPreview()
|
|
|
} else {
|
|
|
- this.startPlayback(); //初始化后开启回放
|
|
|
+ this.startPlayback() //初始化后开启回放
|
|
|
}
|
|
|
- this.oWebControl.JS_ShowWnd();
|
|
|
- });
|
|
|
- });
|
|
|
+ this.oWebControl.JS_ShowWnd()
|
|
|
+ })
|
|
|
+ })
|
|
|
},
|
|
|
//获取公钥
|
|
|
getPubKey(callback) {
|
|
|
- const that = this;
|
|
|
+ const that = this
|
|
|
that.oWebControl
|
|
|
.JS_RequestInterface({
|
|
|
- funcName: "getRSAPubKey",
|
|
|
+ funcName: 'getRSAPubKey',
|
|
|
argument: JSON.stringify({
|
|
|
- keyLength: 1024,
|
|
|
- }),
|
|
|
+ keyLength: 1024
|
|
|
+ })
|
|
|
})
|
|
|
.then(function (oData) {
|
|
|
if (oData.responseMsg.data) {
|
|
|
- that.pubKey = oData.responseMsg.data;
|
|
|
- callback();
|
|
|
+ that.pubKey = oData.responseMsg.data
|
|
|
+ callback()
|
|
|
}
|
|
|
- });
|
|
|
+ })
|
|
|
},
|
|
|
//RSA加密
|
|
|
setEncrypt(value) {
|
|
|
- var encrypt = new JSEncrypt();
|
|
|
- encrypt.setPublicKey(this.pubKey);
|
|
|
- return encrypt.encrypt(value);
|
|
|
+ var encrypt = new JSEncrypt()
|
|
|
+ encrypt.setPublicKey(this.pubKey)
|
|
|
+ return encrypt.encrypt(value)
|
|
|
},
|
|
|
/**
|
|
|
* @description 预览视频
|
|
@@ -220,30 +213,27 @@ export default {
|
|
|
this.cameraList.forEach((item, index) => {
|
|
|
this.startPreview({
|
|
|
cameraIndexCode: item.code,
|
|
|
- wndId: index + 1,
|
|
|
- }); //初始化后开启预览
|
|
|
- });
|
|
|
+ wndId: index + 1
|
|
|
+ }) //初始化后开启预览
|
|
|
+ })
|
|
|
|
|
|
// 自定义缩放
|
|
|
- window.addEventListener("resize", () => {
|
|
|
- this.oWebControl.JS_Resize(
|
|
|
- this.playWnd.offsetWidth,
|
|
|
- this.playWnd.offsetHeight
|
|
|
- );
|
|
|
- });
|
|
|
+ window.addEventListener('resize', () => {
|
|
|
+ this.oWebControl.JS_Resize(this.playWnd.offsetWidth, this.playWnd.offsetHeight)
|
|
|
+ })
|
|
|
},
|
|
|
//视频“预览”功能
|
|
|
startPreview(cameraparam) {
|
|
|
- let streamMode = 0; //主子码流标识:0-主码流,1-子码流
|
|
|
- let transMode = 1; //传输协议:0-UDP,1-TCP
|
|
|
- let gpuMode = 0; //是否启用GPU硬解,0-不启用,1-启用
|
|
|
- let wndId = cameraparam.wndId; //播放窗口序号(在2x2以上布局下可指定播放窗口) -1
|
|
|
+ let streamMode = 0 //主子码流标识:0-主码流,1-子码流
|
|
|
+ let transMode = 1 //传输协议:0-UDP,1-TCP
|
|
|
+ let gpuMode = 0 //是否启用GPU硬解,0-不启用,1-启用
|
|
|
+ let wndId = cameraparam.wndId //播放窗口序号(在2x2以上布局下可指定播放窗口) -1
|
|
|
//去除cameraIndexCode内前后的空格
|
|
|
- let cameraIndexCode = cameraparam.cameraIndexCode.replace(/(^\s*)/g, ""); //获取输入的监控点编号值,必填
|
|
|
- cameraIndexCode = cameraparam.cameraIndexCode.replace(/(\s*$)/g, "");
|
|
|
+ let cameraIndexCode = cameraparam.cameraIndexCode.replace(/(^\s*)/g, '') //获取输入的监控点编号值,必填
|
|
|
+ cameraIndexCode = cameraparam.cameraIndexCode.replace(/(\s*$)/g, '')
|
|
|
this.oWebControl
|
|
|
.JS_RequestInterface({
|
|
|
- funcName: "startPreview",
|
|
|
+ funcName: 'startPreview',
|
|
|
argument: JSON.stringify({
|
|
|
cameraIndexCode: cameraIndexCode,
|
|
|
streamMode: streamMode,
|
|
@@ -251,29 +241,29 @@ export default {
|
|
|
gpuMode: gpuMode,
|
|
|
wndId: wndId,
|
|
|
ezvizDirect: 0,
|
|
|
- cascade: 1,
|
|
|
- }),
|
|
|
+ cascade: 1
|
|
|
+ })
|
|
|
})
|
|
|
- .then(function (oData) {});
|
|
|
+ .then(function (oData) {})
|
|
|
},
|
|
|
//视频“回放”功能
|
|
|
startPlayback() {
|
|
|
- var startTimeStamp = new Date().getTime();
|
|
|
- var endTimeStamp = startTimeStamp + 60 * 60 * 24 * 1000 - 1;
|
|
|
- let recordLocation = 1; //录像存储类型 0-中心存储 1-设备存储
|
|
|
- let streamMode = 0; //主子码流标识:0-主码流,1-子码流
|
|
|
- let transMode = 1; //传输协议:0-UDP,1-TCP
|
|
|
- let gpuMode = 0; //是否启用GPU硬解,0-不启用,1-启用
|
|
|
+ var startTimeStamp = new Date().getTime()
|
|
|
+ var endTimeStamp = startTimeStamp + 60 * 60 * 24 * 1000 - 1
|
|
|
+ let recordLocation = 1 //录像存储类型 0-中心存储 1-设备存储
|
|
|
+ let streamMode = 0 //主子码流标识:0-主码流,1-子码流
|
|
|
+ let transMode = 1 //传输协议:0-UDP,1-TCP
|
|
|
+ let gpuMode = 0 //是否启用GPU硬解,0-不启用,1-启用
|
|
|
// let wndId = -1; //播放窗口序号(在2x2以上布局下可指定播放窗口)
|
|
|
// let cameraIndexCode = this.cameraIndexCode; //获取输入的监控点编号值,必填
|
|
|
- let cameraIndexCode = this.cameraIndexCode; //获取输入的监控点编号值,必填
|
|
|
+ let cameraIndexCode = this.cameraIndexCode //获取输入的监控点编号值,必填
|
|
|
|
|
|
//去除cameraIndexCode内前后的空格
|
|
|
- cameraIndexCode = cameraIndexCode.replace(/(^\s*)/g, "");
|
|
|
- cameraIndexCode = cameraIndexCode.replace(/(\s*$)/g, "");
|
|
|
+ cameraIndexCode = cameraIndexCode.replace(/(^\s*)/g, '')
|
|
|
+ cameraIndexCode = cameraIndexCode.replace(/(\s*$)/g, '')
|
|
|
|
|
|
this.oWebControl.JS_RequestInterface({
|
|
|
- funcName: "startPlayback",
|
|
|
+ funcName: 'startPlayback',
|
|
|
argument: JSON.stringify({
|
|
|
cameraIndexCode: cameraIndexCode, //监控点编号
|
|
|
recordLocation: recordLocation, // 录像存储类型
|
|
@@ -282,29 +272,30 @@ export default {
|
|
|
gpuMode: gpuMode, //是否开启GPU硬解
|
|
|
// wndId: wndId, //可指定播放窗口
|
|
|
startTimeStamp: Math.floor(startTimeStamp / 1000).toString(), //录像查询开始时间戳,单位:秒
|
|
|
- endTimeStamp: Math.floor(endTimeStamp / 1000).toString(), //录像结束开始时间戳,单位:秒
|
|
|
- }),
|
|
|
- });
|
|
|
+ endTimeStamp: Math.floor(endTimeStamp / 1000).toString() //录像结束开始时间戳,单位:秒
|
|
|
+ })
|
|
|
+ })
|
|
|
},
|
|
|
|
|
|
// 销毁插件
|
|
|
destroyWnd() {
|
|
|
if (this.oWebControl) {
|
|
|
- this.oWebControl.JS_HideWnd();
|
|
|
+ this.oWebControl.JS_HideWnd()
|
|
|
this.oWebControl
|
|
|
.JS_DestroyWnd({
|
|
|
- funcName: "destroyeWnd",
|
|
|
+ funcName: 'destroyeWnd'
|
|
|
})
|
|
|
.then(function (oData) {
|
|
|
- console.log("销毁成功");
|
|
|
- });
|
|
|
+ console.log('销毁成功')
|
|
|
+ })
|
|
|
}
|
|
|
- },
|
|
|
- beforeDestroy() {
|
|
|
- this.destroyWnd();
|
|
|
- },
|
|
|
+ }
|
|
|
},
|
|
|
-};
|
|
|
+
|
|
|
+ beforeDestroy() {
|
|
|
+ this.destroyWnd()
|
|
|
+ }
|
|
|
+}
|
|
|
</script>
|
|
|
|
|
|
<style lang='scss' scoped>
|