Vue視頻播放器 vue-video-player

Vue視頻播放器 vue-video-player

本篇主要記錄一下 在 vue 項目中 如何使用 vue-video-player 來做爲視頻播放器,因爲最近在作博客的 輕鬆一刻模塊 因此拿這個嘗試一下 在此紀錄一下 以及遇到的小坑等。。css

1. 安裝 vue-video-player

直接輸入 npm install 命令 注意不要使用 cnpmvue

npm install vue-video-player -S

2.配置 全局main.js文件 引入

直接在 vue 項目的 main.js 中 引入 插件和其樣式npm

import VideoPlayer from 'vue-video-player'
require('video.js/dist/video-js.css')
require('vue-video-player/src/custom-theme.css')

Vue.use(VideoPlayer)

3.使用 vue-video-player

3.1 組件中引入

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

3.2 編寫 playerOptions

注意 必定要把 playerOptions 放入 computed 中去,不然會有報錯問題!!瀏覽器

computed: {
    playerOptions() {
      const playerOptionsObj = {
        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",
            src: "https://www.askajohnny.com/shipinyasuo_1579414465.mov",
          },
          // {
          //   type: 'application/x-mpegURL',
          //   src: this.playUrl
        ],
        poster: "", //你的封面地址
        // width: document.documentElement.clientWidth,
        notSupportedMessage: "此視頻暫沒法播放,請稍後再試", //容許覆蓋Video.js沒法播放媒體源時顯示的默認信息。
        controlBar: {
          timeDivider: true,
          durationDisplay: true,
          remainingTimeDisplay: false,
          fullscreenToggle: true, //全屏按鈕
        },
      };
      return playerOptionsObj;
    },
  },

4.遇到的坑

  1. 注意 必定要把 playerOptions 放入 computed 中去,不然會有報錯問題!!
  2. vue-video-player 依賴 video.js npm install vue-video-player 的時候 自動安裝了 video.js 千萬不要本身裝 video.js 千萬不要本身裝 video.js 千萬不要本身裝 video.js 不然會衝突直接報錯 pause 什麼的
  3. 能夠自定義樣式//引入css require(‘vue-video-player/src/custom-theme.css’) require(’…/static/css/myvideo.css’) //若是你須要自定義播放器的樣式,本身新建一個css

5. 效果圖

image-20200811205306524

相關文章
相關標籤/搜索