一、简介:
1、m3u8文件是指UTF-8编码格式的M3U文件,是记录了小段视频的索引记录,通过这些索引记录,就能获取到对应的视频。
参考资料: https://zhuanlan.zhihu.com/p/346683119
二、vue项目播放rtmp、hls (m3u8) 视频
1、安装播放库
选用video.js 作为视频播放库,如果要支持hls m3u8 还需要videojs-contrib-hls组件的支持:
# 安装Video.js
npm install video.js --save
# 安装videojs-contrib-hls
npm install --save videojs-contrib-hls
2、在main.js 引用库文件
import 'videojs-contrib-hls'
import VideoPlayer from 'vue-video-player'
require('video.js/dist/video-js.css')
require('vue-video-player/src/custom-theme.css')
const hls = require('videojs-contrib-hls')
Vue.use(hls)
Vue.use(VideoPlayer)
创建一个vue的播放视频页面
<template>
<div class="video">
<video-player class="video-player vjs-custom-skin"
ref="videoPlayer"
:playsinline="true"
:options="playerOptions"
@ready="playerReadied"
@play="onPlayerPlay($event)"
@pause="onPlayerPause($event)"/>
</div>
</template>
<script>
export default {
name: "VideoPlayer",
data() {
return {
playerOptions: {
playbackRates: [0.7, 1.0, 1.5, 2.0], //播放速度
techOrder: ['html5'], // 兼容顺序
autoplay: true, //如果true,浏览器准备好时开始回放。
controls: true, //控制条
preload: 'auto', //视频预加载
muted: false, //默认情况下将会消除任何音频。
loop: false, //导致视频一结束就重新开始。
language: 'zh-CN',
aspectRatio: '16:9', // 将播放器置于流畅模式,并在计算播放器的动态大小时使用该值。值应该代表一个比例 - 用冒号分隔的两个数字(例如"16:9"或"4:3")
fluid: true, // 当true时,Video.js player将拥有流体大小。换句话说,它将按比例缩放以适应其容器。
sourceOrder: true, //
html5: { hls: { withCredentials: false } },
sources: [{
withCredentials: false,
type: 'application/x-mpegURL',
src: 'http://cctvalih5ca.v.myalicdn.com/live/cctv1_2/index.m3u8'
}],
hls: true,
poster: '', //你的封面地址
width: document.documentElement.clientWidth,
notSupportedMessage: '此视频暂无法播放,请稍后再试', //允许覆盖Video.js无法播放媒体源时显示的默认信息。
// controlBar: {
// timeDivider: true,
// durationDisplay: true,
// remainingTimeDisplay: false,
// fullscreenToggle: true // 全屏按钮
// }
}
}
},
computed() {
player() {
return this.$refs.videoPlayer.player
}
},
methods: {
}
}
</script>
到这里就可以正常播放了。
如果有问题可以参考git官方给的demo。
参考资料:
https://savokiss.com/tech/web-live-tech-with-vue.html
https://github.surmon.me/vue-video-player/(有案例demo)
网友评论