vue项目用vue-video-player播放m3u8踩坑

播放m3u8 用vue-video-player

千万不能自己安装 videojs、千万不能自己安装 videojs、千万不能自己安装 videojs、

                npm install vue-video-player --save

                npm install --save videojs-contrib-hls


main.js 中

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)

引用页面

                ref="videoPlayer"

                :playsinline="true"

                :options="playerOptions"

                @play="onPlayerPlay($event)"

                @pause="onPlayerPause($event)"

              >

playerOptions: {

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

        autoplay: false, // 如果true,浏览器准备好时开始回放。

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

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

        preload: 'auto', // 建议浏览器在

加载元素后是否应该开始下载视频数据。auto浏览器选择最佳行为,立即开始加载视频(如果浏览器支持)

        language: 'zh-CN',

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

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

        sources: [

          {


            src:' https://oss.test.lesmartx.com/SP/lesmart/T600202101230000002/live/room/900-8325114-986802/videos/o-vod.m3u8',

            type: 'application/x-mpegURL', // 这里的种类支持很多种:基本视频格式、直播、流媒体等,具体可以参看git网址项目

            // type:"video/mp4",

            //  src: 'https://oss.test.lesmartx.com/SP/lesmart/T600202101230000002/live/room/900-8324913-659955/videos/66132143455001813715294126897663772535.mp4' // url地址

          }

        ],

        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: {

onPlayerPlay(play){

      play.play()

    },

    onPlayerPause(player) {

      console.log("pause");

      },

},

你可能感兴趣的:(vue项目用vue-video-player播放m3u8踩坑)