Vue视频播放器 vue-video-player
本篇主要记录一下 在 vue 项目中 如何使用 vue-video-player 来作为视频播放器,由于最近在做博客的 轻松一刻模块 所以拿这个尝试一下 在此记录一下 以及遇到的小坑等。。
1. 安装 vue-video-player
直接输入 npm install 命令 注意不要使用 cnpm
npm install vue-video-player -S
2.配置 全局main.js文件 引入
直接在 vue 项目的 main.js 中 引入 插件和其样式
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", // 建议浏览器在 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.遇到的坑
- 注意 一定要把 playerOptions 放入 computed 中去,否则会有报错问题!!
- vue-video-player 依赖 video.jsnpm install vue-video-player 的时候 自动安装了 video.js千万不要自己装 video.js 千万不要自己装 video.js 千万不要自己装 video.js否则会冲突直接报错 pause 什么的
- 可以自定义样式//引入cssrequire(‘vue-video-player/src/custom-theme.css’)require(’…/static/css/myvideo.css’) //如果你需要自定义播放器的样式,自己新建一个css