使用方法:
1.安装插件
npm install vue-video-player -S
2.配置插件
在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的组件页面里
4.播放按钮的样式设置
.video-js .vjs-big-play-button{}
测试说明:
(1)发现很多的视频格式是无法播放的
sources: [ { // type: "video/webm", // ok,用ogg也可打开 type: "video/ogg", // ok,用webm也可打开 // type: "video/3gp", //ok // type: "video/mp4", // ok // type: "video/avi", //打不开 // type: "video/flv", // 打不开 // type: "video/mkv", // 打不开 // type: "video/mov", // 打不开 // type: "video/mpg", // 打不开 // type: "video/swf", // 打不开 // type: "video/ts", // 打不开 // type: "video/wmv", // 打不开 // type: "video/vob", // 没转化 // type: "video/mxf", // 转化出错 // type: "video/rm", // 转化出错 src: '/static/video/Video_2018-05-15_105711.webm'//本地测试url地址 // src: 'http://www.html5videoplayer.net/videos/madagascar3.mp4'//url地址 } ],
以上为我对一些格式的测试
在线视频文件格式转化工具:
在线播放MP4链接示例:http://www.html5videoplayer.net/videos/madagascar3.mp4
参考文档:
1.vue 调用视频播放插件:
2.vue-video-player插件官方例子:
3.vue使用vue-video-player在直播中的应用(暂未实践):
4.vue2.0+vue-dplayer实现hls播放(暂未实践):