赞
踩
因为要在页面显示监控实时情况,所以百度了一下,最后发现了GitHub上的一个开源项目vue-video-player的组件
在npm下安装vue-vide-player 和 videojs-flash
npm install vue-video-player videojs-flash --save
在main.js中引用
import VideoPlayer from 'vue-video-player'
import 'vue-video-player/src/custom-theme.css'
import 'video.js/dist/video-js.css'
Vue.use(VideoPlayer)
在子组件使用也要引入
import 'video.js/dist/video-js.css'
import 'vue-video-player/src/custom-theme.css'
import 'videojs-contrib-hls'
import 'video.js/dist/video-js.css'
import { videoPlayer } from 'vue-video-player'
export default {
components: {
videoPlayer
},
<<template> <div class="liveView"> <video-player class="vjs-custom-skin" ref="videoPlayer" :options="playerOptions" @ready="onPlayerReadied" @timeupdate="onTimeupdate" :playsinline="playsinline"> </video-player> </div> </template> <script> import 'video.js/dist/video-js.css' import 'vue-video-player/src/custom-theme.css' import 'videojs-contrib-hls' import 'video.js/dist/video-js.css' import { videoPlayer } from 'vue-video-player' export default { components: { videoPlayer }, name: 'video', data() { return { initialized: false, currentTech: '', streams: { rtmp: '', hls: '' }, playerOptions: { overNative: true, autoplay: false, controls: true, techOrder: ['html5'], sourceOrder: true, flash: { hls: { withCredentials: false } }, html5: { hls: { withCredentials: false } }, fluid: true,//当true时,Video.js player将拥有流体大小。换句话说,它将按比例缩放以适应其容器。 muted: false,// 默认情况下将会消除任何音频。 sources: [ { withCredentials: false, type: 'application/x-mpegURL', src: '' } ], notSupportedMessage: '此视频暂无法播放,请稍后再试' //允许覆盖Video.js无法播放媒体源时显示的默认信息。, } } }, computed: { player () { return this.$refs.videoPlayer.player }, currentStream () { return this.currentTech === 'Flash' ? 'RTMP' : 'HLS' }, playsinline () { let ua = navigator.userAgent.toLocaleLowerCase() // x5内核 if (ua.match(/tencenttraveler/) != null || ua.match(/qqbrowse/) != null) { return false } else { // ios端 return true } } }, methods: { onPlayerReadied () { if (!this.initialized) { this.initialized = true this.currentTech = this.player.techName_ } }, // record current time onTimeupdate (e) { console.log('currentTime', e.cache_.currentTime) }, } } </script>
以上就可以简单的在vue中使用vue-video-player组件
在页面中data中配置可以改变组件的样式 参数 根据自身需求在date中添加
playerOptions: { // playbackRates: [0.7, 1.0, 1.5, 2.0], //播放速度 autoplay: false, // 如果true,浏览器准备好时开始回放。 muted: false, // 默认情况下将会消除任何音频。 loop: false, // 导致视频一结束就重新开始。 preload: 'auto', // 建议浏览器在<video>加载元素后是否应该开始下载视频数据。auto浏览器选择最佳行为,立即开始加载视频(如果浏览器支持) language: 'zh-CN', aspectRatio: '16:9', // 将播放器置于流畅模式,并在计算播放器的动态大小时使用该值。值应该代表一个比例 - 用冒号分隔的两个数字(例如"16:9"或"4:3") fluid: true, // 当true时,Video.js player将拥有流体大小。换句话说,它将按比例缩放以适应其容器。 sources: [ { type: 'video/mp4', // 这里的种类支持很多种:基本视频格式、直播、流媒体等,具体可以参看git网址项目 src: 'https://cdn.letvcdn.com/2018/12/05/JOCeEEUuoteFrjCg/playlist.m3u8' // url地址 替换为你的即可 } ], hls: true, poster: 'http://pic33.nipic.com/20131007/13639685_123501617185_2.jpg', // 你的封面地址 width: document.documentElement.clientWidth, // 播放器宽度 notSupportedMessage: '此视频暂无法播放,请稍后再试', // 允许覆盖Video.js无法播放媒体源时显示的默认信息。 controlBar: { timeDivider: true, durationDisplay: true, remainingTimeDisplay: false, fullscreenToggle: true // 全屏按钮 } },
以上就是本文的全部内容,希望对大家的学习有所帮助,
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。