当前位置:   article > 正文

vue中实现 【 Video视频进度条不能拖动,且能倍速播放 】,用vue-video-player插件,封装成组件的方法步骤_vue设置倍速播放的h5视频插件

vue设置倍速播放的h5视频插件

一、安装 vue-video-player 插件

npm install vue-video-player -S

二、引入

1、全局引入,main.js

  1. import VideoPlayer from 'vue-video-player'
  2. import 'vue-video-player/src/custom-theme.css'
  3. import 'video.js/dist/video-js.css'
  4. Vue.use(VideoPlayer)

2、局部引入

  1. import { videoPlayer } from 'vue-video-player'
  2. import 'video.js/dist/video-js.css'
  3. export default {
  4. components: {
  5. videoPlayer
  6. }
  7. }

三、封装组件

1、创建组件videoPlay.vue,vue-video-player 插件本身带有倍速功能,只需在data() 中加上playbackRates 参数

  1. data(){
  2. return {
  3. playerOptions: {
  4. playbackRates: [0.5, 1.0, 1.5, 2.0], // 可选的播放速度
  5. }
  6. }
  7. }
  1. <template>
  2. <div class='demo'>
  3. <video-player
  4. :style="'width:'+size.width+';height:'+size.height+';'"
  5. class="video-player vjs-custom-skin"
  6. ref="videoPlayer"
  7. :playsinline="true"
  8. :options="playerOptions"
  9. @play="onPlayerPlay($event)"
  10. @pause="onPlayerPause($event)"
  11. @playing="onPlayerPlaying($event)"
  12. @ended="onPlayerEnded($event)">
  13. </video-player>
  14. </div>
  15. </template>
  16. <script>
  17. export default {
  18. props: {
  19. id: {
  20. type: Number,
  21. default: 0
  22. },
  23. size: {
  24. type: Object,
  25. default: () => {}
  26. },
  27. videoSrc: {
  28. type: String,
  29. default: ''
  30. },
  31. isFinish: {
  32. type: Boolean,
  33. default: false
  34. }
  35. },
  36. data () {
  37. return {
  38. playerOptions: {
  39. playbackRates: [0.5, 1.0, 1.5, 2.0], // 可选的播放速度
  40. autoplay: false, // 如果为true,浏览器准备好时开始回放。
  41. muted: false, // 默认情况下将会消除任何音频。
  42. loop: false, // 是否视频一结束就重新开始。
  43. preload: 'auto', // 建议浏览器在<video>加载元素后是否应该开始下载视频数据。auto浏览器选择最佳行为,立即开始加载视频(如果浏览器支持)
  44. language: 'zh-CN',
  45. aspectRatio: '16:9', // 将播放器置于流畅模式,并在计算播放器的动态大小时使用该值。值应该代表一个比例 - 用冒号分隔的两个数字(例如"16:9""4:3"
  46. fluid: true, //true时,Video.js player将拥有流体大小。换句话说,它将按比例缩放以适应其容器。
  47. sources: [{
  48. type: 'video/mp4', // 类型
  49. src: this.videoSrc // url地址
  50. }],
  51. poster: '@/assets/images/material/video-bg.png', // 封面地址
  52. notSupportedMessage: '此视频暂无法播放,请稍后再试', // 允许覆盖Video.js无法播放媒体源时显示的默认信息。
  53. controlBar: {
  54. timeDivider: true, // 当前时间和持续时间的分隔符
  55. durationDisplay: true, // 显示持续时间
  56. remainingTimeDisplay: false, // 是否显示剩余时间功能
  57. fullscreenToggle: true // 是否显示全屏按钮
  58. }
  59. }
  60. }
  61. },
  62. methods: {
  63. // 监听播放
  64. onPlayerPlay (player) {
  65. this.$signalr.SendMsg(6301, this.id, '开始播放视频')
  66. },
  67. // 暂停视频
  68. onPlayerPause (player) {
  69. this.$signalr.SendMsg(6302, this.id, '暂停视频')
  70. },
  71. // 视频继续播放
  72. onPlayerPlaying (player) {
  73. this.$signalr.SendMsg(6303, this.id, '视频继续播放')
  74. },
  75. // 视频播放结束
  76. onPlayerEnded (player) {
  77. this.$signalr.SendMsg(6304, this.id, '视频播放结束')
  78. }
  79. }
  80. }
  81. </script>
  82. <style lang="scss" scoped>
  83. .demo{
  84. background: #000;
  85. .video-player{
  86. margin: 0 auto;
  87. display: flex;
  88. flex-direction: column;
  89. justify-content: center;
  90. }
  91. }
  92. </style>

2、其中,实现禁止拖动进度条

A、在 .vjs-progress-control 样式名中加入 pointer-events: none 即可

  1. // 禁止拖动进度条
  2. /deep/ .vjs-progress-control{
  3. pointer-events: none !important;
  4. }

B、函数中添加自定义样式 class名

  1. <script>
  2. export default {
  3. props: {
  4. isFinish: {
  5. type: Boolean,
  6. default: false
  7. }
  8. },
  9. created () {
  10. setTimeout(() => {
  11. this.FinishBtn()
  12. }, 1000)
  13. },
  14. methods: {
  15. // 任务是否完成
  16. FinishBtn () {
  17. if (this.isFinish === true) { // 判断条件:true 未完成 不能拖动
  18. let control = document.querySelectorAll('.vjs-progress-control')
  19. control.forEach(item => {
  20. item.classList.add('pointer')
  21. })
  22. }
  23. }
  24. }
  25. }
  26. </script>
  27. <style lang="scss" scoped>
  28. // 自定义禁止拖动进度条
  29. /deep/ .pointer{
  30. pointer-events: none !important;
  31. }
  32. </style>

四、页面调用

其中页面中需要 调用暂停视频播放 的地方,方法如下:

  1. <template>
  2. <div>
  3. <VideoPlayer ref="myvideo" :size="{width:'88%',height:'100%'}" :videoSrc="videosUrl"></VideoPlayer>
  4. <button @click="bottomclick">暂停</button>
  5. </div>
  6. </template>
  7. <script>
  8. import VideoPlayer from '@/components/Video/index'
  9. export default {
  10. components: { VideoPlayer },
  11. data(){
  12. return{
  13. videosUrl:require('@/assets/video.mp4')
  14. }
  15. },
  16. methods:{
  17. bottomclick () {
  18. this.$nextTick(() => {
  19. // 暂停播放 调用组件中的函数
  20. this.$refs.myvideo[0].onPlayerPause()
  21. })
  22. }
  23. }
  24. }

五、其他(h5—video间接支持的视频格式)

1、支持.m3u8格式

(1) 安装插件 hls.js

cnpm install --save hls.js

(2) 代码部分

  1. <template>
  2. <div class="videoPlayer" ref="videoPlayer">
  3. <video v-if="videoUrl.indexOf('.m3u8') !== -1" preload="auto" class="fl_video" ref="flVideo" @canplay="getVidDur" @click="onPlay" @playing="onWPlay"
  4. @timeupdate="onTimeupdate" @loadeddata="showFirstFrame" @waiting="onWaiting">
  5. <source :src="videoUrl" type='video/mp4'>
  6. <source :src="videoUrl" type='video/ogg'>
  7. </video>
  8. </div>
  9. </template>
  10. <script setup>
  11. import { nextTick, onMounted, ref } from "vue";
  12. import Hls from 'hls.js'
  13. const flVideo = ref()
  14. const videoUrl = ref()
  15. onMounted(()=>{
  16. load()
  17. })
  18. // 初始化
  19. const load = () => {
  20. state.videoUrl = 'https://cdn.23544.com/528aee907c8771ee805c5017e1f80102/8b247ec4f21e95ef9272e5285d2c1a27-sd.m3u8'
  21. nextTick(() => {
  22. if (videoUrl.value.indexOf('.m3u8') !== -1) {
  23. if (Hls.isSupported()) {
  24. var hls = new Hls() // 实例化 HIs 对象
  25. hls.loadSource(videoUrl.value)
  26. hls.attachMedia(flVideo.value)
  27. // hls.on(Hls.Events.MANIFEST_PARSED,() =>{ //加载成功
  28. // flVideo.value.play()// 调用播放 API8
  29. // })
  30. }
  31. }
  32. })
  33. }

2、支持.mpd格式

(1)安装 dashjs

cnpm i dashjs --save

(2)代码部分

  1. <video id="videoPlay" data-dashjs-player autoplay :src="videoUrl"></video>
  2. <script setup>
  3. import dashjs from 'dashjs'
  4. let videoUrl = ref('https://dash.akamaized.net/envivio/EnvivioDash3/manifest.mpd')
  5. let player = dashjs.MediaPlayer().create()
  6. player.initialize(document.querySelector("#videoPlay"), videoUrl.value, true)
  7. </script>

      希望我的愚见能够帮助你哦~,若有不足之处,还望指出,你们有更好的解决方法,欢迎大家在评论区下方留言支持,大家一起相互学习参考呀~

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

闽ICP备14008679号