最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

vue + typescript + video.js實現(xiàn) 流媒體播放 視頻監(jiān)控功能

 更新時間:2019年07月07日 14:30:56   作者:element  
視頻才用流媒體,有后臺實時返回數(shù)據(jù), 要支持flash播放, 所以需安裝對應的flash插件。這篇文章主要介紹了vue + typescript + video.js 流媒體播放 視頻監(jiān)控,需要的朋友可以參考下

視頻才用流媒體,有后臺實時返回數(shù)據(jù), 要支持flash播放, 所以需安裝對應的flash插件。當視頻播放時,每間隔3秒向后臺發(fā)送請求供檢測心跳,表明在線收看狀態(tài),需要后臺持續(xù)發(fā)送視頻數(shù)據(jù)。

1. yarn add video.js videojs-flash

2. 創(chuàng)建videp.js聲明文件 

 

3. 創(chuàng)建video_player.vue組件,供外部調(diào)用。源碼如下

<script lang="ts">
import { Component, Emit, Prop, Vue } from 'vue-property-decorator';

import 'video.js/dist/video-js.css';

import _videojs from 'video.js';
const videojs = (window as any).videojs || _videojs;
import 'videojs-flash';


@Component({
 name: 'video-player',
})
export default class VideoPlayer extends Vue {
 /* ------------------------ INPUT & OUTPUT ------------------------ */
 @Prop({ type: Object, default: () => {}}) private options!: object;

 /* ------------------------ VUEX (vuex getter & vuex action) ------------------------ */

 /* ------------------------ LIFECYCLE HOOKS (created & mounted & ...) ------------------------ */
 private mounted() {
  this.player = videojs(this.$refs.videoPlayer, this.options, function onPlayerReady() {
   // console.log('onPlayerReady');
  });
 }

 private beforeDestroy() {
  if (this.player) {
   this.player.dispose();
  }
 }
 /* ------------------------ COMPONENT STATE (data & computed & model) ------------------------ */
 private player: any;

 /* ------------------------ WATCH ------------------------ */

 /* ------------------------ METHODS ------------------------ */
}

</script>

<template>
<div class="module_video_player">
 <video ref="videoPlayer" class="video-js" autoplay></video>
</div>
</template>

<style lang="stylus" scoped>
@import '~@/assets/styles/var.styl';

.module_video_player
 position relative
 width 780px

</style>

4. 在需要使用的模塊(如show_monitor.vue)調(diào)用。組件創(chuàng)建后,向后臺發(fā)送輕輕獲取rtmp視頻播放地址,并更新videoOptions中的src。觸發(fā)video_player的創(chuàng)建、掛載等。

import VideoPlayer from '@/components/video_player.vue';

components: {
 VideoPlayer,
}

 private videoOptions = {
  techOrder: ['flash', 'html5'],
  sourceOrder: true,
  flash: {
   hls: { withCredentials: false },
  },
  html5: { hls: { withCredentials: false } },
  sources: [{
   type: 'rtmp/flv',
   src: '', // 'rtmp://live.hkstv.hk.lxdns.com/live/hks2', // 香港衛(wèi)視,可使用此地址測試
  }],
  autoplay: true,
  controls: true,
  width: '778',
  height: '638',
 };
<video-player :options="videoOptions" v-if="videoOptions.sources[0].src !== ''"></video-player>

5. 心跳檢測

在show_monitor.vue創(chuàng)建時,新建定時器,每隔3秒向后臺發(fā)送一個包含當前監(jiān)控設備id的請求,告知后臺此設備監(jiān)控被調(diào)用播放。show_monitor.vue銷毀時,清空定時器,后臺將停止傳輸視頻數(shù)據(jù)。

private intervalFunc: any;

private created() {
 // ****
 this.intervalFunc = setInterval(() => {
  EquipmentService.monitor_continue_test(this.eqmtid);
 }, 3000);
}

private destroyed() {
 clearInterval(this.intervalFunc);
}

注: 可以再電腦安裝VLC media player下載 , 播放獲取到的rtmp路徑,已檢測數(shù)據(jù)獲取是否成功

總結(jié)

以上所述是小編給大家介紹的vue + typescript + video.js實現(xiàn) 流媒體播放 視頻監(jiān)控功能,希望對大家有所幫助,如果大家有任何疑問歡迎給我留言,小編會及時回復大家的!

相關文章

最新評論

神木县| 新乡县| 牙克石市| 鄢陵县| 深州市| 和政县| 黑龙江省| 开远市| 怀柔区| 松江区| 平阳县| 翁源县| 和林格尔县| 巴林右旗| 虹口区| 卢氏县| 陆丰市| 曲麻莱县| 日土县| 四川省| 嘉祥县| 贵阳市| 福清市| 雷波县| 汨罗市| 深泽县| 扶沟县| 双鸭山市| 金平| 南漳县| 甘肃省| 桦甸市| 孝昌县| 巴马| 中江县| 满洲里市| 西充县| 延安市| 彩票| 朝阳县| 抚顺市|