vue-video-player实现实时视频播放(监控设备-rtmp流)
1导入vue-video-player插件npm install vue-video-player --save2 在main.js导入import 'videojs-flash'require('video.js/dist/video-js.css')require('vue-video-player/src/custom-theme.css')3 父组件<template><
·
1导入vue-video-player插件
npm install vue-video-player --save
2 在main.js导入
import 'videojs-flash'
require('video.js/dist/video-js.css')
require('vue-video-player/src/custom-theme.css')
3 父组件
<template>
<div class="about" style="width: 100%;height: 100%;">
<video-player
ref="playerObj"
style="width: 480px;height: 300px;"
v-if="tempplayerOptionsSourcesSrc != '' && tempvideoSrc != ''"
:Src="tempvideoSrc"
:playerOptionsSourcesSrc="tempplayerOptionsSourcesSrc"
></video-player>
</div>
</template>
<script>
import VideoPlayer from './VideoPlayer.vue';
export default {
inject: ['mapreload'], //用于刷新页面不出现白页
components: {
VideoPlayer
},
props: {
showsxt: {
type: Boolean,
default: false
},
videoSrc: {
type: String,
default: null
},
playerOptionsSourcesSrc: {
type: String,
default: null
}
},
data() {
return {
tempvideoSrc: this.videoSrc,
tempplayerOptionsSourcesSrc: this.playerOptionsSourcesSrc
};
},
watch: {
videoSrc(newVal) {
this.tempvideoSrc = newVal;
},
playerOptionsSourcesSrc(newVal) {
this.tempplayerOptionsSourcesSrc = newVal;
},
showsxt(newVal) {
if (!newVal) {
this.tempvideoSrc = null;
this.tempplayerOptionsSourcesSrc = null;
this.$destroy('VideoPlayer'); //将videoPlayer组件去除
this.mapreload(); //用于解决第二次打开实时监控时失败的问题
}
}
},
created() {},
methods: {}
};
</script>
4 子组件
<template>
<div class="video-js">
<div v-if="videoSrc===''" class="no-video">
暂未播放视频
</div>
<video-player v-else class="video-player vjs-custom-skin"
ref="videoPlayer"
:playsinline="true"
:options="playerOptions">
</video-player>
</div>
</template>
<script>
import videojs from 'video.js'
import {videoPlayer} from 'vue-video-player'
import 'videojs-flash'
import SWF_URL from 'videojs-swf/dist/video-js.swf'
videojs.options.flash.swf = SWF_URL // 设置flash路径,Video.js会在不支持html5的浏览中使用flash播放视频文件
export default {
components: {
videoPlayer
},
props:{
Src:{
type:String,
default:''
},
playerOptionsSourcesSrc:{
type:String,
default:''
}
},
created() {
this.playerOptions.sources[0].src=this.playerOptionsSourcesSrc;
},
data () {
return {
videoSrc: this.Src,
playerOptions: {
live: true,
autoplay: true, // 如果true,浏览器准备好时开始播放
muted: false, // 默认情况下将会消除任何音频
loop: false, // 是否视频一结束就重新开始
preload: 'auto', // 建议浏览器在<video>加载元素后是否应该开始下载视频数据。auto浏览器选择最佳行为,立即开始加载视频(如果浏览器支持)
aspectRatio: '16:9', // 将播放器置于流畅模式,并在计算播放器的动态大小时使用该值。值应该代表一个比例 - 用冒号分隔的两个数字(例如"16:9"或"4:3")
fluid: true, // 当true时,Video.js player将拥有流体大小。换句话说,它将按比例缩放以适应其容器。
controlBar: {
timeDivider: false,
durationDisplay: false,
remainingTimeDisplay: false,
currentTimeDisplay: false, // 当前时间
volumeControl: false, // 声音控制键
playToggle: false, // 暂停和播放键
progressControl: false, // 进度条
fullscreenToggle: true // 全屏按钮
},
techOrder: ['flash'], // 兼容顺序
flash: {
hls: {
withCredentials: false
},
swf: SWF_URL
},
sources: [{
type: 'rtmp/flv',
// type:"video/mp4",
src: '' // 视频地址-改变它的值播放的视频会改变
}],
notSupportedMessage: '此视频暂无法播放,请稍后再试' // 允许覆盖Video.js无法播放媒体源时显示的默认信息。
}
}
}
}
</script>
<style scoped lang="less">
.video-js{
width:100%;
height:100%;
.no-video{
display:flex;
height:100%;
font-size:14px;
text-align:center;
justify-content: center;
align-items:center;
}
}
</style>
更多推荐
所有评论(0)