当前位置:   article > 正文

Video.js 使用教程 - 手把手教你基于 Vue 搭建 HTML 5 视频播放器_videojs

videojs

转自https://blog.csdn.net/weixin_48201324/article/details/123810653

本文首发:《Video.js 使用教程 - 手把手教你基于 Vue 搭建 HTML 5 视频播放器

Video.js 是最强大的网页嵌入式 HTML 5 视频播放器的组件库之一,也是大多数人首选的网页视频播放解决方案。复杂的网页视频渲染,在引入 Video.js 后,轻松解决。本教程手把手教你搭建一套基于 Vue 的 Video.js 视频播放页。

跟随本教程学习,最终你可以自己搭建一套可以播放本地视频文件及网络流媒体的网页视频播放器。学习如何修改 video.js 的默认样式来实现播放按钮自定义形状(圆形)、居中及播放时间的显示与否, 如何播放 m3u8 格式,以及如何使用 video 的属性、事件及方法,音量增减,最终实现一个功能齐全的视频播放器。

跟随本教程学习,搭建的最终 video.js HTML5 视频播放效果。

另外,这个世界已经悄然发生变化,现在根本无需写任何前端代码,直接使用卡拉云 —— 新一代低代码开发工具帮你搭建后台工具,卡拉云可一键接入常见数据库及 API ,无需懂前端,内置完善的各类前端组件,无需调试,拖拽即用。原来三天的工作量,现在 1 小时搞定,谁用谁知道,用上早下班,详见本文文末。

配置 Vue 环境 - 基础部分

通过 npm 安装 Vue 脚手架 vue-cli

npm install -g @vue/cli

 然后创建一个 Vue 项目 kalacloud-vue-video

vue create kalacloud-video

选择合适的选项后,安装完成,通过 cd 命令进入 kalacloud-vue-video 目录(此目录为我们的主开发目录),使用 npm run serve 命令,可以将项目运行起来。

在 Vue 中使用 videojs

首先使用 npm 安装 video.js

npm i video.js

 安装完毕后,在 main.js 中进行引入

import videojs from "video.js";

import "video.js/dist/video-js.css";

Vue.prototype.$video = videojs;

为了代码复用性,我们来创建一个 PlayerVideo 组件。在组件中我们分别定义 template 部分和 script 如下

最开始我们选用默认源链接: https://playtv-live.ifeng.com/live/06OLEGEGM4G.m3u8 

  1. <!-- controls:向用户显示播放按钮控件 -->
  2. <template>
  3. <video
  4. ref="video"
  5. class="video-js vjs-default-skin"
  6. width="600"
  7. height="400"
  8. controls
  9. >
  10. <source src="https://playtv-live.ifeng.com/live/06OLEGEGM4G.m3u8" />
  11. </video>
  12. </template>
  13. export default {
  14. data() {
  15. return {
  16. player: null, // 用来存储当前 video
  17. };
  18. },
  19. mounted() { // 渲染视频
  20. this.player = this.$video(this.$refs.video);
  21. },
  22. };

然后删除掉初始化 vue 项目默认的 App.vue 内代码,将 PlayerVideo 组件添加到 App 中,并调整播放器至中间。

  1. <template>
  2. <div id="app">
  3. <div class="video-content">
  4. <player-video :src="src"></player-video>
  5. </div>
  6. </div>
  7. </template>
  8. <script>
  9. import PlayerVideo from "./components/PlayerVideo.vue";
  10. export default {
  11. components: {
  12. PlayerVideo,
  13. data() {
  14. return {
  15. src: "http://vjs.zencdn.net/v/oceans.mp4",
  16. };
  17. },
  18. },
  19. };
  20. </script>
  21. <style lang="scss">
  22. #app {
  23. font-family: Avenir, Helvetica, Arial, sans-serif;
  24. -webkit-font-smoothing: antialiased;
  25. -moz-osx-font-smoothing: grayscale;
  26. text-align: center;
  27. color: #2c3e50;
  28. .video-content {
  29. display: flex;
  30. justify-content: center;
  31. flex-direction: column;
  32. align-items: center;
  33. }
  34. }
  35. </style>

在 kalacloud-vue-video 根目录使用 npm 运行下列命令:

npm run serve

在浏览器打开 http://localhost:8080/ 就可以成功渲染视频。 

我们大致的来看一下目前视频播放器拥有的功能:

  • 播放与暂停功能(目前播放按钮位于左上角)
  • 可以调节音量
  • 支持全屏与小屏播放

同样我们也可以发现一些不符合日常习惯的地方:

  • 播放按钮通常位于中间
  • 播放按钮一般为圆形
  • 暂停时会显示播放按钮

下面我们就讲述一些 tips 优化一下播放器。

扩展阅读:《最好用的 6 款 Vue 拖拽组件库推荐

如何使 Video.js 播放按钮垂直居中

将播放按钮垂直居中非常容易实现,video 官方提供了 vjs-big-play-centered。给 <video> 标签添加 vjs-big-play-centered 类名就可以实现播放按钮垂直居中。

<video class="video-js vjs-default-skin vjs-big-play-centered"></video>

如何修改 Video.js 播放按钮为圆形

修改播放按钮为圆形需要修改对应类名的 CSS 样式。我们在 PlayerVideo 组件的 style 中添加下列样式代码。

修改时属性必须设置为 !important ,否则不会生效。

  1. .video-js .vjs-big-play-button {
  2. font-size: 2.5em !important;
  3. line-height: 2.3em !important;
  4. height: 2.5em !important;
  5. width: 2.5em !important;
  6. -webkit-border-radius: 2.5em !important;
  7. -moz-border-radius: 2.5em !important;
  8. border-radius: 2.5em !important;
  9. background-color: #73859f;
  10. background-color: rgba(115, 133, 159, 0.5) !important;
  11. border-width: 0.15em !important;
  12. margin-top: -1.25em !important;
  13. margin-left: -1.75em !important;
  14. }
  15. .vjs-big-play-button .vjs-icon-placeholder {
  16. font-size: 1.63em !important;
  17. }

 

扩展阅读:《最好用的 12 款 Vue Timepicker 时间日期选择器测评推荐

如何修改 Video.js 暂停时显示播放按钮

这个功能同样可以通过修改 CSS 实现。在 PlayerVideo 组件的 style 中添加下列样式代码。 

  1. .vjs-paused .vjs-big-play-button,
  2. .vjs-paused.vjs-has-started .vjs-big-play-button {
  3. display: block !important;
  4. }

如何设置 Video.js 显示当前播放时间

通过修改两个类的状态可以实现显示播放时间的功能,在 PlayerVideo 组件中设置下列样式代码:

  1. .video-js .vjs-time-control {
  2. display: block !important;
  3. }
  4. .video-js .vjs-remaining-time {
  5. display: none !important;
  6. }

 扩展阅读:《vue.draggable 入门指南 - 手把手教你开发任务看板

进阶使用部分

基础部分我们使用 this.$video(this.$refs.video) 渲染出播放器,但 this.$video 本质上是 video.js 提供的 videojs 函数,

videojs 函数共有三个参数,第一个参数是绑定播放器的元素,第二参数为 options 对象,提供播放器的配置项,第三个参数为播放器渲染后的回调函数。

我们给 PlayerVideo 组件的 data 添加 options 对象,并设置 controls 为 false,同时设定一个简单的回调函数。

controls 属性是用来控制播放器是否具有与用户交互的控件——播放按钮等。如果设置为 false ,播放器将不显示播放控件,那么视频只能通过 Player API 或者 autoplay 控制播放。

  1. export default {
  2. data() {
  3. return {
  4. player: null,
  5. options: { controls: false },
  6. };
  7. },
  8. mounted() {
  9. this.player = this.$video(this.$refs.video, this.options, () => {
  10. alert("播放器渲染完成");
  11. });
  12. },
  13. };

 我们可以发现,播放器渲染完成后,浏览器发出了通知,并且播放器上没有控件出现。

更多的配置项链接: video-options

Video.js 常用事件

video 提供了很多常用事件,我们可以通过监测事件来处理不同的逻辑。

例如监测 play/pause 事件,给用户发送提醒

修改 PlayerVideo 组件中的 mounted 方法:

mounted() {
  this.player = this.$video(this.$refs.video, this.options, function () {
    this.on("play", () => {
      alert("视频已经开始播放,祝你有好的体验");
    });
    this.on("pause", () => {
      alert("视频已经暂停");
    });
  });
}

 

扩展阅读:《Vue 实现 PDF 文件在线预览 - 手把手教你写 Vue PDF 预览功能

Video.js 音量记忆功能

为了让大家更能理解监听事件的用处,我们举一下实际的案例: 音量记忆功能

为了更好的用户体验,用户每次调整音量后,我们应该帮其记住当前音量。当用户刷新页面或者重新进入页面后,无需再次调整音量。

这个功能其实不难实现:

  • 监听 volumechange 事件,当用户修改音量时,把此音量存储到 localStorage 中(如果音量功能会有多个组件使用,建议同时存放在 Vuex 中)
  • 当页面刷新或进入页面后,从 localStorage 中取出音量值,同步设置播放器音量。

我们修改一下 PlayerVideo 组件,使其可以接受属性 volume 音量值,同时添加事件 volumechange 和 play 事件的监听。

当 volumechange 触发时,将当前音量值存储到 localStorage 中;当 play 事件触发时,更新音量值。

  1. <template>
  2. <video
  3. ref="video"
  4. controls
  5. class="video-js vjs-default-skin vjs-big-play-centered"
  6. width="600"
  7. height="400"
  8. >
  9. <source src="https://playtv-live.ifeng.com/live/06OLEGEGM4G.m3u8" />
  10. </video>
  11. </template>
  12. <script>
  13. export default {
  14. // 接受App传值
  15. props: ["volume"],
  16. data() {
  17. return {
  18. player: null,
  19. // volumnVideo 记录音量
  20. volumeVideo: this.volume,
  21. };
  22. },
  23. mounted() {
  24. const _this = this;
  25. this.player = this.$video(this.$refs.video, this.options, function () {
  26. this.on("volumechange", () => {
  27. // 存储音量
  28. _this.volumeVideo = this.volume();
  29. window.localStorage.volume = this.volume();
  30. });
  31. this.on("play", () => {
  32. this.volume(this.volumeVideo);
  33. });
  34. });
  35. },
  36. };
  37. </script>

同时在 App.vue 中使用全局钩子函数 beforeCreate 获取到 localStorage 中存取的 volume

  1. beforeCreate() {
  2. this.volume = window.localStorage.volume;
  3. },

通过上述步骤,就可以成功实现音量记忆功能。

扩展阅读:《顶级好用的 8 款 Vue 弹窗组件测评与推荐

Video.js 简单视频播放器搭建 

下面我带大家实现一下播放器的各种控制方法: 开始、暂停、重新加载、快进、后退、增大音量、降低音量以及换台功能。

video.js 对于这些控制方法都对应提供了方法。我们只需对提供的方法略作封装,即可使用。

下面我们就利用 video.js 提供的方法实现一个简单的播放器功能。

我们分别修改 PlayerVideo 组件和 App 组件如下:

PlayerVideo.vue 代码如下:
 

  1. <template>
  2. <video
  3. ref="video"
  4. controls
  5. class="video-js vjs-default-skin vjs-big-play-centered"
  6. width="600"
  7. height="400"
  8. >
  9. <source :src="src" />
  10. </video>
  11. </template>
  12. <script>
  13. export default {
  14. props: ["volume", "src"],
  15. data() {
  16. return {
  17. player: null,
  18. volumeVideo: this.volume,
  19. };
  20. },
  21. methods: {
  22. // 封装播放器方法
  23. play() {
  24. this.player.src({ src: this.src });
  25. this.player.load(this.src);
  26. this.player.play(this.volumeVideo);
  27. },
  28. stop() {
  29. this.player.pause();
  30. },
  31. reload() {
  32. this.stop();
  33. this.player.load({});
  34. this.play();
  35. },
  36. forward() {
  37. const currentTime = this.player.currentTime();
  38. this.player.currentTime(currentTime + 5);
  39. },
  40. back() {
  41. const currentTime = this.player.currentTime();
  42. this.player.currentTime(currentTime - 5);
  43. },
  44. volumeUp() {
  45. this.player.volume(this.volumeVideo + 0.1);
  46. },
  47. volumeDown() {
  48. this.player.volume(this.volumeVideo - 0.1);
  49. },
  50. toggleTv(obj) {
  51. this.player.src(obj.src);
  52. this.player.load(obj.load);
  53. this.player.play(this.volumeVideo);
  54. },
  55. },
  56. mounted() {
  57. const _this = this;
  58. this.player = this.$video(this.$refs.video, this.options, function () {
  59. this.on("volumechange", () => {
  60. // 存储音量
  61. _this.volumeVideo = this.volume();
  62. window.localStorage.volume = this.volume();
  63. });
  64. this.on("play", () => {
  65. this.volume(this.volumeVideo);
  66. });
  67. });
  68. },
  69. };
  70. </script>
  71. <style>
  72. .video-js .vjs-time-control {
  73. display: block !important;
  74. }
  75. .video-js .vjs-remaining-time {
  76. display: none !important;
  77. }
  78. .video-js .vjs-big-play-button {
  79. font-size: 2.5em !important;
  80. line-height: 2.3em !important;
  81. height: 2.5em !important;
  82. width: 2.5em !important;
  83. -webkit-border-radius: 2.5em !important;
  84. -moz-border-radius: 2.5em !important;
  85. border-radius: 2.5em !important;
  86. background-color: #73859f;
  87. background-color: rgba(115, 133, 159, 0.5) !important;
  88. border-width: 0.15em !important;
  89. margin-top: -1.25em !important;
  90. margin-left: -1.25em !important;
  91. }
  92. .vjs-big-play-button .vjs-icon-placeholder {
  93. font-size: 1.63em !important;
  94. }
  95. .vjs-paused .vjs-big-play-button,
  96. .vjs-paused.vjs-has-started .vjs-big-play-button {
  97. display: block !important;
  98. }
  99. </style>

 App.vue 代码如下:

  1. <template>
  2. <div id="app">
  3. <div class="video-content">
  4. <h2>使用video.js 在网站中搭建视频</h2>
  5. <h3>卡拉云——低代码开发工具,1 秒搭建上传后台</h3>
  6. <player-video :volume="volume" ref="video" :src="src"></player-video>
  7. </div>
  8. <div class="button-group">
  9. <el-button class="primary" @click="playVideo">开始视频</el-button>
  10. <el-button class="primary" @click="stopVideo">暂停视频</el-button>
  11. <el-button class="primary" @click="reloadVideo">重新加载</el-button>
  12. <el-button class="primary" @click="forwardVideo">视频快进</el-button>
  13. <el-button class="primary" @click="backVideo">视频后退</el-button>
  14. <el-button class="primary" @click="volumeUpVideo">增大音量</el-button>
  15. <el-button class="primary" @click="volumeDownVideo">降低音量</el-button>
  16. <el-button class="primary" @click="toggleToFenghuangwang"
  17. >凤凰卫视</el-button
  18. >
  19. <el-button class="primary" @click="toggleToDefault">默认频道</el-button>
  20. </div>
  21. </div>
  22. </template>
  23. <script>
  24. import PlayerVideo from "./components/PlayerVideo.vue";
  25. export default {
  26. components: {
  27. PlayerVideo,
  28. },
  29. data() {
  30. return {
  31. volume: 0.5,
  32. src: "http://vjs.zencdn.net/v/oceans.mp4",
  33. };
  34. },
  35. computed: {
  36. video() {
  37. return this.$refs.video;
  38. },
  39. },
  40. methods: {
  41. // 父类组件调用子组件方法,触发播放器功能
  42. stopVideo() {
  43. this.video.stop();
  44. },
  45. playVideo() {
  46. this.video.play();
  47. },
  48. reloadVideo() {
  49. this.video.reload();
  50. },
  51. forwardVideo() {
  52. this.video.forward();
  53. },
  54. backVideo() {
  55. this.video.back();
  56. },
  57. fullScreenVideo() {
  58. this.video.fullScreen();
  59. },
  60. screenVideo() {
  61. this.video.exitScreen();
  62. },
  63. volumeUpVideo() {
  64. this.video.volumeUp();
  65. },
  66. volumeDownVideo() {
  67. this.video.volumeDown();
  68. },
  69. toggleToFenghuangwang() {
  70. this.video.toggleTv({
  71. src: {
  72. type: "application/x-mpegURL",
  73. src: "https://playtv-live.ifeng.com/live/06OLEGEGM4G.m3u8",
  74. },
  75. load: "https://playtv-live.ifeng.com/live/06OLEGEGM4G.m3u8",
  76. });
  77. },
  78. toggleToDefault() {
  79. this.video.toggleTv({
  80. src: {
  81. type: "video/mp4",
  82. src: "http://vjs.zencdn.net/v/oceans.mp4",
  83. },
  84. load: "http://vjs.zencdn.net/v/oceans.mp4",
  85. });
  86. },
  87. },
  88. beforeCreate() {
  89. this.volume = window.localStorage.volume;
  90. },
  91. };
  92. </script>
  93. <style lang="scss">
  94. #app {
  95. font-family: Avenir, Helvetica, Arial, sans-serif;
  96. -webkit-font-smoothing: antialiased;
  97. -moz-osx-font-smoothing: grayscale;
  98. text-align: center;
  99. color: #2c3e50;
  100. display: flex;
  101. .video-content {
  102. display: flex;
  103. justify-content: center;
  104. flex-direction: column;
  105. align-items: center;
  106. margin-right: 20px;
  107. }
  108. .button-group {
  109. margin-top: 20px;
  110. display: flex;
  111. flex: 0 0 100px;
  112. flex-direction: column;
  113. justify-content: space-between;
  114. // align-items: center;
  115. }
  116. }
  117. </style>

搭建完成。

使用 video.js 搭建视频总结

本教程系统的带大家学习如何使用 video.js 在网站中搭建视频播放器,如果你跟着教程走下来,一定也完成了和教程中一样的视频播放器。如果你觉得太复杂,不想处理前端问题,推荐使用卡拉云,卡拉云是新一代低代码开发工具,内置各类前端组件,无需懂任何前端,仅需拖拽即可快速生成。

下图为使用卡拉云搭建的内部视频审核系统的 Demo 版,仅需拖拽,1小时搞定。

卡拉云是新一代低代码开发工具,免安装部署,可一键接入包括 MySQL 在内的常见数据库及 API。可根据自己的工作流,定制开发。无需繁琐的前端开发,只需要简单拖拽,即可快速搭建企业内部工具。原来三天的开发工作量,使用卡拉云后可缩减至 1 小时,欢迎免费试用卡拉云

扩展阅读:

 

 

 

 

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/花生_TL007/article/detail/607982
推荐阅读
相关标签
  

闽ICP备14008679号