123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426 |
- <template>
- <div class="camera-page">
- <div class="nav">双预防视频监控平台</div>
- <div class="camera-container">
- <div class="video-container" v-for="(item,key) in items" :key="key" >
- <div class="name">{{ item.deviceName }}</div>
- <div :id="`video-`+item.deviceSerial" style="width:100%;height:100%;" v-if="key<20"></div>
- <iframe width="210" height="160" allowfullscreen :src="getIframeSrc(item.deviceSerial)" v-if="key>19"></iframe>
- <div class="camera-show-handle" @click.stop="showModel(item,2)" v-if="key>19"></div>
- <div class="camera-show-handle" @click.stop="showModel(item)" v-if="key<20"></div>
- </div>
- <!-- flv-video -->
- <!-- <div class="video-container" v-for="(item,key) in flvsItem" :key="key" >
- <div class="name">{{ item.name }}</div>
- <video class="flv-video" :id="item.id" style="width:100%;height:100%;"></video>
- </div> -->
- <div id="camera-model" v-show="device.model">
- <div id="camera-box">
- <div class="title">
- <a :href="'https://open.ys7.com/ezopen/h5/iframe?url=ezopen://open.ys7.com/'+device.deviceSerial+'/1.rec&autoplay=1&accessToken='+accessToken" target="_blank"><span>{{ device.deviceName }}</span></a>
- 【<span style="padding: 10px;color:#000;cursor: pointer;" @click="changePlayUrl">{{devicePlayIsRec?'录像':"监控"}}</span> 】
- <div class="close" @click="close">X</div>
- </div>
- <div id="camera-deviceSerial"></div>
- </div>
- </div>
- </div>
- </div>
- </template>
- <script>
- import "@/assets/js/ezuikit.js"
- import cameras from '@/assets/js/cameras.js';
- import axios from 'axios';
- export default {
- data() {
- return {
- items:[],
- flvsItem:[],
- accessToken:undefined,
- devicePlayIsRec:false,
- device:{
- model:false,
- deviceName:""
- }
- }
- },
- mounted() {
- this.init()
- },
- methods: {
- init(){
- axios({
- url:'https://open.ys7.com/api/lapp/token/get',
- method:"POST",
- params:{
- appKey:"edbf9171037f4908abdaa5c8215c0b06",
- appSecret:"3c271fe7e2d0c13a03b2acc297ff146f"
- }
- }).then((res)=>{
- this.accessToken=res.data.data.accessToken
- this.getData()
- // this.getDevicelist()
- })
- },
- showModel(item,type){
- if(type!==2){
- var destroyPromise = item.player.destroy();
- destroyPromise.then((data) => {
- console.log("销毁-promise 获取 数据", data)
- })
- event.stopPropagation()
- }
- let device={
- ...item,
- model:true,
- id:"camera-deviceSerial",
- width:900,
- height:700
- }
- this.device=device
- this.render(device)
- },
- close(){
- this.device.player.destroy()
- this.device.player.stop()
- this.device={}
- this.devicePlayIsRec=false;
- document.getElementById('camera-deviceSerial').innerHTML=""
- },
- changePlayUrl(){
- let type=this.devicePlayIsRec?'live':'rec'
- this.device.player.changePlayUrl({
- url: `ezopen://open.ys7.com/${this.device.deviceSerial}/1.${type}`,
- }).then(()=>{
- this.devicePlayIsRec=!this.devicePlayIsRec
- })
- },
- async getDevicelist(){
- var devicelist=[]
- const pageSize=20//最大50
- const res=await axios({
- url:'https://open.ys7.com/api/lapp/device/list',
- method:"POST",
- params:{
- accessToken:this.accessToken,
- pageSize
- }
- })
- devicelist=devicelist.concat(res.data.data)
- let total=res.data.page.total-pageSize
- for(let i=0;i<total/pageSize;i++){
- let result= await axios({
- url:'https://open.ys7.com/api/lapp/device/list',
- method:"POST",
- params:{
- accessToken:this.accessToken,
- pageStart:i+1,
- pageSize
- }
- })
- devicelist=devicelist.concat(result.data.data)
- }
- let online=devicelist.filter((item)=>item.status===1)
- let offline=devicelist.filter((item)=>item.status===0)
- let items=online.concat(offline)
- this.items=items
- for(let i=0;i<20;i++){
- await this.sleep(20)
- this.$nextTick(()=>{
- delete items[i].id
- this.render(items[i],function(item){
- if(i<21){
- setTimeout(()=>{
- item.player.capturePicture('default',function(data){
- item.file=data
- })
- },3000)
- }
- })
- })
- }
- },
- // 固定数据渲染处理 根据老板需求相同名字的放在一起 等一系列特殊需求
- async getData(){
- let items=[]
- for(let i=0;i<cameras.length;i++){
- items.push({
- ...cameras[i]
- })
- }
- this.items=items
- for(let i=0;i<20;i++){
- await this.sleep(20)
- this.$nextTick(()=>{
- this.render(items[i],function(item){
- if(i<21){
- setTimeout(()=>{
- item.player.capturePicture('default',function(data){
- item.file=data
- })
- },3000)
- }
- })
- })
- }
- },
- getIframeSrc(deviceSerial){
- return `https://open.ys7.com/ezopen/h5/iframe?url=ezopen://open.ys7.com/${deviceSerial}/1.live&autoplay=1&accessToken=${this.accessToken}`
- },
- sleep(){
- return new Promise((resolve)=>{
- setTimeout(resolve,1000)
- })
- },
- render(item={},callback){
- let accessToken=this.accessToken;
- let type=item.type==='rec'?'rec':'live'
- item.player = new EZUIKit.EZUIKitPlayer({
- id: item.id||`video-${item.deviceSerial}`,
- autoplay: false,
- url: `ezopen://open.ys7.com/${item.deviceSerial}/1.${type}`,
- accessToken: accessToken,
- plugin: ['talk'],
- width: item.width||210,
- height: item.height||160,
- audio:0,
- // useHardDev: true, //开启高性能模式
- themeData:{
- "autoFocus": 5,
- "poster":item.deviceCover||"https://resource.eziot.com/group1/M00/00/89/CtwQEmLl8r-AZU7wAAETKlvgerU237.png",
- "header": {
- "color": "#1890ff",
- "activeColor": "#FFFFFF",
- "backgroundColor": "#000000",
- "btnList": []
- },
- "footer": {
- "color": "#FFFFFF",
- "activeColor": "#1890FF",
- "backgroundColor": "#00000021",
- "btnList": [
- {
- "iconId": "play",
- "part": "left",
- "defaultActive": 1,
- "memo": "播放",
- "isrender": 0
- },
- {
- "iconId": "sound",
- "part": "left",
- "defaultActive": 0,
- "memo": "声音按钮",
- "isrender": 1
- },
- {
- "iconId": "pantile",
- "part": "left",
- "defaultActive": 1,
- "memo": "云台控制按钮",
- "isrender": 1
- },
- {
- "iconId": "talk",
- "part": "left",
- "defaultActive": 0,
- "memo": "对讲按钮",
- "isrender": 1
- },
- {
- "iconId": "expend",
- "part": "right",
- "defaultActive": 0,
- "memo": "全局全屏按钮",
- "isrender": 1
- }
- ]
- }
- },
- handleError: function(e) {
- console.log('捕获到错误', e)
- },
- handleSuccess: function() {
- console.log("播放成功回调函数,此处可执行播放成功后续动作");
- if(callback){
- callback(item)
- }
- },
- capturePictureCallBack: function(data){
- item.player.stop()
- item.player.destroy();
- document.getElementById(data.id).innerHTML=`<img src="${item.file.base64}" style="width:100%;height:100%;display:block;">`
- }
- });
- },
- renderflvitems(){
- function initVideo({id,url}){
- const video = document.getElementById(id);
- var flvPlayer = flvjs.createPlayer({
- type: 'flv', // 媒体类型,默认是 flv,
- isLive: true, // 是否是直播流
- // hasAudio: ture, // 是否有音频
- // hanVideo: ture, // 是否有视频
- url // 流地址
- },{
- // 其他的配置项可以根据项目实际情况参考 api 去配置
- autoCleanupMinBackwardDuration: true, // 清除缓存 对 SourceBuffer 进行自动清理
- })
- flvPlayer.attachMediaElement(video);
- flvPlayer.load();
- flvPlayer.play();
- return flvPlayer;
- }
- let flvs=[
- {
- id:"flv-video-1",
- name:"尧柏室外" ,
- url: 'https://rtmp01open.ys7.com:9188/v3/openlive/D17867806_1_1.flv?expire=1727866323&id=631202165163040768&t=b38d44dd320b261cbd4b49714d3bc5c77dce2f941cc749ef5d7cba1305ada9f8&ev=100'
- },
- {
- id:"flv-video-2",
- name:'尧柏室内',
- url:'https://rtmp01open.ys7.com:9188/v3/openlive/D21357992_1_1.flv?expire=1727866347&id=631202266972758016&t=213001a96c71218df4eb35a3ccfcc3e4e0477ebd88dd1277ce6de864325bd758&ev=100'
- }
- ]
- this.flvsItem=flvs
- this.$nextTick(()=>{
- for(let i=0;i<flvs.length;i++){
- initVideo({
- id:flvs[i].id,
- url:flvs[i].url
- })
- }
- })
- }
- },
- destroyed() {
- this.items.map(item=>{
- if(item.player&&item.player.destroy){
- var destroyPromise = item.player.destroy();
- destroyPromise.then((data) => {
- console.log("promise 获取 数据", data)
- })
- }
- })
- },
- }
- </script>
- <style>
- .flv-video{
- object-fit:fill;
- background-color: #ccc;
- }
- .camera-page{
- width: 100%;
- min-height: 100vh;
- background-color: #042B5A;
- }
- .nav{
- height: 50px;
- background-image: url('../../assets/images/head.png');
- background-size: 100% 100%;
- text-align: center;
- color: #fff;
- line-height: 35px;
- font-size: 24px;
- font-weight: 600;
- letter-spacing: 8px;
- }
- .camera-container{
- width: 100%;
- display: flex;
- align-items: center;
- justify-content: center;
- flex-wrap: wrap;
- padding: 10px;
- box-sizing: border-box;
- }
- .video-container{
- width:210px;
- height: 170px;
- box-sizing: border-box;
- margin: 6px;
- position: relative;
- overflow: hidden;
- cursor: pointer;
- }
- .video-container iframe{
- border: 0;
- box-sizing: border-box;
- display: block;
- }
- .video-container .name{
- color: #fff;
- padding: 3px 0;
- background-color: rgba(0,0,0,0.6);
- text-indent: 14px;
- font-size: 14px;
- text-overflow: ellipsis;
- white-space: nowrap;
- overflow: hidden;
- }
- .video-container .camera-show-handle{
- position: absolute;
- width: 100%;
- height: 100%;
- bottom: 36px;
- left: 0;
- z-index: 999;
- }
- .footer-controls{
- display: flex;
- justify-content: center;
- align-items: center;
- font-size: 28px;
- }
- #camera-model{
- position: fixed;
- left: 0;
- top: 0;
- bottom: 0;
- right: 0;
- background-color: rgba(0,0,0,0.6);
- z-index: 9999;
- }
- #camera-box{
- width: 900px;
- height: 750px;
- max-width: 100%;
- background-color: #fff;
- margin: 50px auto;
- border-radius: 10px;
- box-shadow: 1px 1px 6px rgba(0,0,0,0.6);
- overflow: hidden;
- padding: 10px;
- }
- #camera-box .title{
- widows: 100%;
- height: 50px;
- line-height: 50px;
- font-weight: 600;
- font-size: 20px;
- background-color: #fff;
- color: #333;
- border-bottom: 1px solid #eaeaea;
- position: relative;
- text-align: center;
- }
- #camera-box .title .close{
- width: 50px;
- height: 50px;
- color: #6e6c6c;
- text-align: center;
- line-height: 50px;
- position: absolute;
- right: 0;
- top: 0;
- cursor: pointer;
- font-size: 30px;
- }
- #camera-deviceSerial{
- width: 900px;
- height: 700px;
- background-color: #3333;
- }
- </style>
|