|
@@ -0,0 +1,361 @@
|
|
|
+<template>
|
|
|
+ <div
|
|
|
+ class="widget-hikVideo"
|
|
|
+ v-loading="loading"
|
|
|
+ element-loading-text="拼命加载中"
|
|
|
+ element-loading-spinner="el-icon-loading"
|
|
|
+ >
|
|
|
+ <div id="playMain" class="playMain">
|
|
|
+ <div :id="`playWnd${videoPanelId}`" class="playWnd" :ref="`playWnd${this.videoPanelId}`"></div>
|
|
|
+ </div>
|
|
|
+ <div class="bottom">
|
|
|
+ <el-pagination
|
|
|
+ background
|
|
|
+ :current-page="pageparam.current"
|
|
|
+ :page-size="pageparam.size"
|
|
|
+ prev-text="上一页"
|
|
|
+ next-text="下一页"
|
|
|
+ layout="prev, pager, next"
|
|
|
+ :total="pageparam.total"
|
|
|
+ @size-change="handleSizeChange"
|
|
|
+ @current-change="handleCurrentChange"
|
|
|
+ >
|
|
|
+ </el-pagination>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script lang="ts">
|
|
|
+import { Vue, Component, Prop, Watch } from 'vue-property-decorator'
|
|
|
+import { getCamerList } from '../common/requestapis'
|
|
|
+const WebControl = (window as any).WebControl
|
|
|
+const JSEncrypt = (window as any).JSEncrypt
|
|
|
+//视频监控中心
|
|
|
+@Component({
|
|
|
+ name: 'hikVideo',
|
|
|
+ components: {}
|
|
|
+})
|
|
|
+export default class hikVideo extends Vue {
|
|
|
+ @Prop({ type: String, default: () => ({}) }) videoPanelId!: string
|
|
|
+ @Prop({ type: String, default: () => ({}) }) showNum!: string
|
|
|
+ @Watch('showNum')
|
|
|
+ onChangeNumMethod(val) {
|
|
|
+ switch (val) {
|
|
|
+ case 'single':
|
|
|
+ this.initparam.layout = '1x1'
|
|
|
+ this.pageparam.size = 1
|
|
|
+ break
|
|
|
+ case 'fourth':
|
|
|
+ this.initparam.layout = '2x2'
|
|
|
+ this.pageparam.size = 4
|
|
|
+ break
|
|
|
+ case 'ninth':
|
|
|
+ this.initparam.layout = '3x3'
|
|
|
+ this.pageparam.size = 9
|
|
|
+ break
|
|
|
+ }
|
|
|
+ this.destroyWnd()
|
|
|
+ this.initPlugin()
|
|
|
+ }
|
|
|
+ loading = true
|
|
|
+ //视频播放插件参数
|
|
|
+ initparam = {
|
|
|
+ appKey: '26361415',
|
|
|
+ secret: '12hp9GRlHu1BkL09nL0Q',
|
|
|
+ apiIp: '183.255.30.6',
|
|
|
+ apiPort: 10443,
|
|
|
+ isLive: 0,
|
|
|
+ layout: '3x3'
|
|
|
+ }
|
|
|
+ cameraIndexCode = ''
|
|
|
+ oWebControl = null
|
|
|
+ settingId = ''
|
|
|
+ initCount = 0
|
|
|
+ pubKey = ''
|
|
|
+ //分页参数
|
|
|
+ pageparam = {
|
|
|
+ current: 1,
|
|
|
+ size: 9,
|
|
|
+ total: 0,
|
|
|
+ pagecount: 0
|
|
|
+ }
|
|
|
+ //computed
|
|
|
+ get playWnd() {
|
|
|
+ return this.$refs[`playWnd${this.videoPanelId}`] as any
|
|
|
+ }
|
|
|
+ mounted() {
|
|
|
+ this.initPlugin()
|
|
|
+ }
|
|
|
+ handleSizeChange(pageSize) {
|
|
|
+ this.loading = true
|
|
|
+ this.pageparam.size = pageSize
|
|
|
+ this.videoPreview()
|
|
|
+ }
|
|
|
+ handleCurrentChange(currentPage) {
|
|
|
+ this.loading = true
|
|
|
+ this.pageparam.current = currentPage
|
|
|
+ this.videoPreview()
|
|
|
+ }
|
|
|
+ //初始化插件
|
|
|
+ initPlugin() {
|
|
|
+ const that = this
|
|
|
+ that.settingId = this.videoPanelId
|
|
|
+ that.oWebControl = new WebControl({
|
|
|
+ szPluginContainer: 'playWnd' + that.settingId, // 指定容器id
|
|
|
+ iServicePortStart: 15900, // 指定起止端口号,建议使用该值
|
|
|
+ iServicePortEnd: 15909,
|
|
|
+ szClassId: '23BF3B0A-2C56-4D97-9C03-0CB103AA8F11', // 用于IE10使用ActiveX的clsid
|
|
|
+ cbConnectSuccess: () => {
|
|
|
+ that.initCount = 0
|
|
|
+ // ----------创建WebControl实例成功 启动插件---------
|
|
|
+ // ---------------2.JS_StartService-----------------
|
|
|
+ // 创建WebControl实例成功
|
|
|
+ that.oWebControl
|
|
|
+ .JS_StartService('window', {
|
|
|
+ // WebControl实例创建成功后需要启动服务
|
|
|
+ dllPath: './VideoPluginConnect.dll' // 值"./VideoPluginConnect.dll"写死
|
|
|
+ })
|
|
|
+ .then(
|
|
|
+ () => {
|
|
|
+ // 启动插件服务成功
|
|
|
+ that.oWebControl.JS_SetWindowControlCallback({})
|
|
|
+ //JS_CreateWnd创建视频播放窗口,宽高可设定
|
|
|
+ that.oWebControl
|
|
|
+ .JS_CreateWnd('playWnd' + that.settingId, that.playWnd.offsetWidth, that.playWnd.offsetHeight)
|
|
|
+ .then(() => {
|
|
|
+ this.oWebControl.JS_HideWnd()
|
|
|
+ this.init()
|
|
|
+ })
|
|
|
+ },
|
|
|
+ function () {
|
|
|
+ // 启动插件服务失败
|
|
|
+ console.log('JS_CreateWnd error')
|
|
|
+ }
|
|
|
+ )
|
|
|
+ },
|
|
|
+ cbConnectError: () => {
|
|
|
+ // 创建WebControl实例失败
|
|
|
+ that.oWebControl = null
|
|
|
+ WebControl.JS_WakeUp('VideoWebPlugin://') // 程序未启动时执行error函数,采用wakeup来启动程序
|
|
|
+ that.initCount++
|
|
|
+ if (that.initCount < 3) {
|
|
|
+ setTimeout(() => {
|
|
|
+ that.initPlugin() // 重新创建播放实例
|
|
|
+ }, 3000)
|
|
|
+ } else {
|
|
|
+ window.open('/HikVision/plugin/VideoWebPlugin.exe', '_blank')
|
|
|
+ // $('#playWnd').html('插件启动失败,请检查插件是否安装!')
|
|
|
+ this.$message('插件启动失败,请检查插件是否安装!')
|
|
|
+ }
|
|
|
+ },
|
|
|
+ cbConnectClose: () => {
|
|
|
+ //bNormalClose
|
|
|
+ // 异常断开:bNormalClose = false
|
|
|
+ // JS_Disconnect正常断开:bNormalClose = true
|
|
|
+ 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' //自定义工具条按钮
|
|
|
+ this.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 //自定义工具条按钮
|
|
|
+ // toolBarButtonIDs:toolBarButtonIDs//自定义工具条按钮字符串
|
|
|
+ // name:name//无效
|
|
|
+ })
|
|
|
+ })
|
|
|
+ .then(() => {
|
|
|
+ // 初始化后resize一次,规避firefox下首次显示窗口后插件窗口未与DIV窗口重合问题
|
|
|
+ this.oWebControl.JS_Resize(this.playWnd.offsetWidth, this.playWnd.offsetHeight)
|
|
|
+ if (this.initparam.isLive == 0) {
|
|
|
+ this.videoPreview()
|
|
|
+ } else {
|
|
|
+ this.startPlayback() //初始化后开启回放
|
|
|
+ }
|
|
|
+ this.oWebControl.JS_ShowWnd()
|
|
|
+ })
|
|
|
+ })
|
|
|
+ }
|
|
|
+ //获取公钥
|
|
|
+ getPubKey(callback) {
|
|
|
+ const that = this
|
|
|
+ that.oWebControl
|
|
|
+ .JS_RequestInterface({
|
|
|
+ funcName: 'getRSAPubKey',
|
|
|
+ argument: JSON.stringify({
|
|
|
+ keyLength: 1024
|
|
|
+ })
|
|
|
+ })
|
|
|
+ .then(function (oData) {
|
|
|
+ if (oData.responseMsg.data) {
|
|
|
+ that.pubKey = oData.responseMsg.data
|
|
|
+ callback()
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }
|
|
|
+ //RSA加密
|
|
|
+ setEncrypt(value) {
|
|
|
+ var encrypt = new JSEncrypt()
|
|
|
+ encrypt.setPublicKey(this.pubKey)
|
|
|
+ return encrypt.encrypt(value)
|
|
|
+ }
|
|
|
+ /**
|
|
|
+ * @description 预览视频
|
|
|
+ */
|
|
|
+ videoPreview() {
|
|
|
+ //API视频预览
|
|
|
+ getCamerList(this.pageparam)
|
|
|
+ .then((res) => {
|
|
|
+ if (res.code == 1) {
|
|
|
+ //摄像头数量
|
|
|
+ this.pageparam.total = res.result.result.total
|
|
|
+ this.pageparam.pagecount = res.result.result.pages
|
|
|
+ res.result.result.records.forEach((item, index) => {
|
|
|
+ this.startPreview({
|
|
|
+ cameraIndexCode: item.code,
|
|
|
+ wndId: index + 1
|
|
|
+ }) //初始化后开启预览
|
|
|
+ })
|
|
|
+ }
|
|
|
+ this.loading = false
|
|
|
+ })
|
|
|
+ .catch((err) => {
|
|
|
+ this.loading = false
|
|
|
+ })
|
|
|
+
|
|
|
+ // 自定义缩放
|
|
|
+ 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
|
|
|
+ //去除cameraIndexCode内前后的空格
|
|
|
+ let cameraIndexCode = cameraparam.cameraIndexCode.replace(/(^\s*)/g, '') //获取输入的监控点编号值,必填
|
|
|
+ cameraIndexCode = cameraparam.cameraIndexCode.replace(/(\s*$)/g, '')
|
|
|
+ this.oWebControl
|
|
|
+ .JS_RequestInterface({
|
|
|
+ funcName: 'startPreview',
|
|
|
+ argument: JSON.stringify({
|
|
|
+ cameraIndexCode: cameraIndexCode,
|
|
|
+ streamMode: streamMode,
|
|
|
+ transMode: transMode,
|
|
|
+ gpuMode: gpuMode,
|
|
|
+ wndId: wndId,
|
|
|
+ ezvizDirect: 0,
|
|
|
+ cascade: 1
|
|
|
+ })
|
|
|
+ })
|
|
|
+ .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-启用
|
|
|
+ // let wndId = -1; //播放窗口序号(在2x2以上布局下可指定播放窗口)
|
|
|
+ // let cameraIndexCode = this.cameraIndexCode; //获取输入的监控点编号值,必填
|
|
|
+ let cameraIndexCode = this.cameraIndexCode //获取输入的监控点编号值,必填
|
|
|
+
|
|
|
+ //去除cameraIndexCode内前后的空格
|
|
|
+ cameraIndexCode = cameraIndexCode.replace(/(^\s*)/g, '')
|
|
|
+ cameraIndexCode = cameraIndexCode.replace(/(\s*$)/g, '')
|
|
|
+
|
|
|
+ this.oWebControl.JS_RequestInterface({
|
|
|
+ funcName: 'startPlayback',
|
|
|
+ argument: JSON.stringify({
|
|
|
+ cameraIndexCode: cameraIndexCode, //监控点编号
|
|
|
+ recordLocation: recordLocation, // 录像存储类型
|
|
|
+ streamMode: streamMode, //主子码流标识
|
|
|
+ transMode: transMode, //传输协议
|
|
|
+ gpuMode: gpuMode, //是否开启GPU硬解
|
|
|
+ // wndId: wndId, //可指定播放窗口
|
|
|
+ startTimeStamp: Math.floor(startTimeStamp / 1000).toString(), //录像查询开始时间戳,单位:秒
|
|
|
+ endTimeStamp: Math.floor(endTimeStamp / 1000).toString() //录像结束开始时间戳,单位:秒
|
|
|
+ })
|
|
|
+ })
|
|
|
+ }
|
|
|
+ // 销毁插件
|
|
|
+ destroyWnd() {
|
|
|
+ if (this.oWebControl) {
|
|
|
+ this.oWebControl.JS_HideWnd()
|
|
|
+ this.oWebControl
|
|
|
+ .JS_DestroyWnd({
|
|
|
+ funcName: 'destroyeWnd'
|
|
|
+ })
|
|
|
+ .then(function (oData) {
|
|
|
+ console.log('销毁成功')
|
|
|
+ })
|
|
|
+ } else {
|
|
|
+ console.log('没有实例')
|
|
|
+ }
|
|
|
+ }
|
|
|
+ beforeDestroy() {
|
|
|
+ this.destroyWnd()
|
|
|
+ }
|
|
|
+}
|
|
|
+</script>
|
|
|
+
|
|
|
+<style lang='scss' scoped>
|
|
|
+.widget-hikVideo {
|
|
|
+ height: 100%;
|
|
|
+ width: 100%;
|
|
|
+ z-index: 99;
|
|
|
+ .playMain {
|
|
|
+ height: calc(100% - 40px);
|
|
|
+ width: 100%;
|
|
|
+ .playWnd {
|
|
|
+ overflow: hidden;
|
|
|
+ height: 100%;
|
|
|
+ width: 100%;
|
|
|
+ padding: 5px;
|
|
|
+ margin: 0 auto;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .bottom {
|
|
|
+ height: 40px;
|
|
|
+ // width: 100%;
|
|
|
+ position: absolute;
|
|
|
+ right: 0;
|
|
|
+ display: flex;
|
|
|
+ align-items: flex-end;
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|