vue使用vue-video-player無法播放本地視頻的問題及解決
使用vue-video-player無法播放本地視頻
方法
因為引入的是本地資源,要把資源寫在“require”方法裡
sources: [ { //類型 type: 'video/mp4', src: // 'https://vdept.bdstatic.com/456b54495743493962554345724c6657/75666c454a4d3637/6bcdb2c5d34e42a7e415eb94fd256c0776f262dd6b4a0ae236ec49141d30aee0d7d2168a1c3578a306b0aa646ced25250a8b77a59e758bf998ca67e20a951294.mp4?auth_key=1588762628-0-0-f0a1425379b81c7627fd77316fe1af10' require('../../assets/video/xing.mp4') }, ]
使用vue-video-player播放視頻及遇到的問題
寫評論功能的時候需要把用戶評論時上傳的視頻播放出來,我選擇瞭vue-video-player組件;
npm鏈接:https://www.npmjs.com/package/vue-video-player
安裝
npm install vue-video-player --save
引入
安裝後在需要用的頁面引入組件,當然也可以全局引入,全局引入的方法請參考npm;
import 'video.js/dist/video-js.css' import 'vue-video-player/src/custom-theme.css' import { videoPlayer } from 'vue-video-player'
html 部分
<video-player class="video-player vjs-custom-skin" ref="videoPlayer" :playsinline="true" :options="playerOptions" ></video-player>
js部分
const w = window as any const screenWidth: number = w.document.documentElement.clientWidth const screenHeight: number = w.document.documentElement.clientHeight this.playerOptions = { playsinline: true, autoplay: false, // 如果true,瀏覽器準備好時開始回放。 muted: true, // 默認情況下將會消除任何音頻。 loop: false, // 導致視頻一結束就重新開始。 preload: 'auto', // 建議瀏覽器在<video>加載元素後是否應該開始下載視頻數據。auto瀏覽器選擇最佳行為,立即開始加載視頻(如果瀏覽器支持) language: 'zh-CN', aspectRatio: screenWidth + ':' + screenHeight, // 將播放器置於流暢模式,並在計算播放器的動態大小時使用該值。值應該代表一個比例 - 用冒號分隔的兩個數字(例如"16:9"或"4:3") fluid: true, // 當true時,Video.js player將擁有流體大小。換句話說,它將按比例縮放以適應其容器。 sources: [{ type: 'video/mp4', // 這裡的種類支持很多種:基本視頻格式、直播、流媒體等,具體可以參看git網址項目 src: this.fileUrl, // url地址 }], poster: this.fileUrl + '?vframe/jpg/offset/1', // 你的封面地址。?vframe/jpg/offset/1添加的七牛參數,截取視頻首屏作為封面; controlBar: { timeDivider: true, durationDisplay: true, remainingTimeDisplay: false, fullscreenToggle: false, // 全屏按鈕 }, }
主要想說的是aspectRatio,我用的是屏幕的寬高比,這樣就算播放視頻的時候不會溢出頁面,播放器下面的進度條就不會被遮擋;
以上為個人經驗,希望能給大傢一個參考,也希望大傢多多支持WalkonNet。
推薦閱讀:
- 使用vue-video-player實現直播的方式
- 基於vue的video播放器的實現示例
- vue-video-player 斷點續播的實現
- 如何在vue中使用video.js播放m3u8格式的視頻
- vue+video.js實現視頻播放列表