当前位置:   article > 正文

vue-video-player播放m3u8格式视频详解(版本有坑)_vue-video-player m3u8

vue-video-player m3u8

下载vue-video-player及videojs-contrib-hls

// 记住下载这两个包就够了,千万不要下载video.js,因为vue-video-player会自动下载video.js,不然会冲突
// videojs-contrib-hls该组件是要兼容m3u8格式视频才需要的,若是一般的mp4文件,则不需要
npm install vue-video-player@5.0.1 -save
npm install videojs-contrib-hls@5.15.0 -save
  • 1
  • 2
  • 3
  • 4

在main.js里面导入

//引入video插件
import VideoPlayer from 'vue-video-player'
import 'video.js/dist/video-js.css'
//引入 hls
import 'videojs-contrib-hls'
Vue.use(VideoPlayer)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

封装组件

<template>
  <div class="vueVideoPlayer">
    <video-player class="video-player vjs-custom-skin" ref="videoPlayer" :playsinline="true" :options="playerOptions">
    </video-player>
  </div>
</template>

<script>

export default {
  name: 'vueVideoPlayer',
  props: {
    src: {
      type: String
    },
    cover_url: {
      type: String
    },
    autoplay: {
      type: Boolean,
      default: false
    }
  },
  data () {
    return {
      // 配置信息
      playerOptions: {
        playbackRates: [0.7, 1.0, 1.5, 2.0], // 播放速度
        autoplay: this.autoplay, // 如果true,浏览器准备好时自动播放视频
        muted: false, // 默认情况下将会消除任何音频。
        loop: false, // 导致视频一结束就重新开始。
        preload: 'auto', // 建议浏览器在<video>加载元素后是否应该开始下载视频数据。auto浏览器选择最佳行为,立即开始加载视频(如果浏览器支持)
        language: 'zh-CN',
        aspectRatio: '16:10', // 将播放器置于流畅模式,并在计算播放器的动态大小时使用该值。值应该代表一个比例 - 用冒号分隔的两个数字(例如"16:9"或"4:3")
        fluid: true, // 当true时,Video.js player将拥有流体大小。换句话说,它将按比例缩放以适应其容器。
        sources: [{
          withCredentials: true,
          type: "application/x-mpegURL", // m3u8视频的类型,而mp4的为video/mp4
          // src: "/hls/live/1/index.m3u8",
          src: this.src
        }],
        // poster: this.cover_url, // 你的封面地址
        width: document.documentElement.clientWidth,
        notSupportedMessage: '此视频暂无法播放,请稍后再试', // 允许覆盖Video.js无法播放媒体源时显示的默认信息。
        controlBar: {
          timeDivider: true, // 当前时间和持续时间的分隔符
          durationDisplay: true, // 显示持续时间
          remainingTimeDisplay: false, // 是否显示剩余时间功能
          fullscreenToggle: true // 是否显示全屏按钮
        }
      }
    }
  },
  methods: {},
  mounted () {
    console.log(this.src);
  }
}
</script>

<style lang="less">
.vueVideoPlayer {
  & .video-js {
    & .vjs-big-play-button {
      top: 49%;
      left: 46%;
    }
  }
}
</style>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 注:可能会出现跨域问题,自行解决
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Monodyee/article/detail/92573
推荐阅读
相关标签
  

闽ICP备14008679号