您好,登錄后才能下訂單哦!
vue-video-player視頻播放器使用的方法?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
1、安裝
npm install vue-video-player -save
2、在main.js中添加
import VueVideoPlayer from 'vue-video-player' // 視頻播放器 import 'video.js/dist/video-js.css' Vue.use(VueVideoPlayer)
3、新建一個vueVideoPlayer.vue組件供調用
<template> <div id="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 } }, data () { return { // 配置信息 playerOptions: { 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:10', // 將播放器置于流暢模式,并在計算播放器的動態大小時使用該值。值應該代表一個比例 - 用冒號分隔的兩個數字(例如"16:9"或"4:3") fluid: true, // 當true時,Video.js player將擁有流體大小。換句話說,它將按比例縮放以適應其容器。 sources: [{ src: this.src, // 路徑 type: 'video/mp4' // 類型 }], poster: this.cover_url, // 你的封面地址 // width: document.documentElement.clientWidth, notSupportedMessage: '此視頻暫無法播放,請稍后再試', // 允許覆蓋Video.js無法播放媒體源時顯示的默認信息。 controlBar: { timeDivider: true, durationDisplay: true, remainingTimeDisplay: false, fullscreenToggle: true // 全屏按鈕 } } } } }
4、在其他組件調用
<vueVideoPlayer :src="data.url" :cover_url="data.cover_url" /> import vueVideoPlayer from './module/vueVideoPlayer' // 不要忘記注冊 components: { vueVideoPlayer }
關于vue-video-player視頻播放器使用的方法問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。