vue2.0+vue-video-player实现hls播放的案例

1. 安装依赖。

npm install vue-video-player --save

2. 在main.js引入vue-video-player。

import VueVideoPlayer from 'vue-video-player'
import 'videojs-contrib-hls'
Vue.use(VueVideoPlayer)

截图如下:

3. 编写myPlayer.vue组件,并引入其样式。

videoPlayer.vue:

<template>
    <div class="player-container">
      <video-player class="vjs-custom-skin video-player" :options="playerOptions"></video-player>
    </div>
</template>

<script>

import videojs from 'video.js'

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

import 'vue-video-player/src/custom-theme.css'

import {videoPlayer} from 'vue-video-player'

 

export default {

components: {

videoPlayer

},

  data () {

  return {

playerOptions: {

playbackRates: [0.7, 1.0, 1.5, 2.0], //播放速度

autoplay: false,

controls: true,

preload: 'auto', //视频预加载

muted: false, //默认情况下将会消除任何音频。

loop: false, //导致视频一结束就重新开始

language: 'zh-CN',

aspectRatio: '16:9', // 将播放器置于流畅模式,并在计算播放器的动态大小时使用该值。值应该代表一个比例 - 用冒号分隔的两个数字(例如"16:9"或"4:3")

fluid: true, // 当true时,Video.js player将拥有流体大小。换句话说,它将按比例缩放以适应其容器。

sources: [{

type: 'application/x-mpegURL',

src: 'https://video-dev.github.io/streams/x36xhzz/x36xhzz.m3u8'

}],

poster: "http://static.smartisanos.cn/pr/img/video/video_03_cc87ce5bdb.jpg", //你的封面地址

width: document.documentElement.clientWidth,

notSupportedMessage: '此视频暂无法播放,请稍后再试' //允许覆盖Video.js无法播放媒体源时显示的默认信息。

}

}

  }

}

</script>

<style type="text/css" scoped lang="scss">

</style>

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值