当前位置:   article > 正文

vue-video-player播放rtmp/mp4等格式视频流或本地文件_vue-video-player支持哪些视频格式

vue-video-player支持哪些视频格式

上效果图
在这里插入图片描述

实现过程:

  1. 使用npm安装(尽量不要用cnpm ,可能导致bug)
npm install vue-video-player --save
npm install --save videojs-flash
  • 1
  • 2
  1. main.js中配置
import VueVideoPlayer from 'vue-video-player'
import 'video.js/dist/video-js.css'
 
require('video.js/dist/video-js.css')
require('vue-video-player/src/custom-theme.css')
Vue.use(VueVideoPlayer)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  1. 页面代码
<template>
  <div>
    <videoPlayer class="vjs-custom-skin videoPlayer" :options="playerOptions"></videoPlayer>
  </div>
</template>
<script>
  import 'video.js/dist/video-js.css'
  import {videoPlayer} from 'vue-video-player'
  import 'videojs-flash'

  export default {
    components: {
      videoPlayer
    },
    data () {
      return {
        type:'video/mp4',
        playerOptions: {
          height: '300',
          sources: [{
            type: this.type,
            src: "http://clips.vorwaerts-gmbh.de/big_buck_bunny.mp4"
          }],
          playbackRates: [0.7, 1.0, 1.5, 2.0], // 播放速度
          muted: false, // 默认情况下将会消除任何音频。
          loop: false, // 导致视频一结束就重新开始。
          preload: 'auto', // 建议浏览器在<video>加载元素后是否应该开始下载视频数据。auto浏览器选择最佳行为,立即开始加载视频(如果浏览器支持)
          techOrder: ['flash'],
          language: 'zh-CN',
          autoplay: false,
          notSupportedMessage: '此视频暂无法播放,请稍后再试', // 允许覆盖Video.js无法播放媒体源时显示的默认信息。
          controlBar: {
            timeDivider: false,
            durationDisplay: false,
            remainingTimeDisplay: false,
            currentTimeDisplay: false, // 当前时间
            volumeControl: false, // 声音控制键
            playToggle: true, // 暂停和播放键
            progressControl: false, // 进度条
            fullscreenToggle: true // 全屏按钮
          },

          aspectRatio: '10:5', // 将播放器置于流畅模式,并在计算播放器的动态大小时使用该值。值应该代表一个比例 - 用冒号分隔的两个数字(例如"16:9"或"4:3")
          fluid: true, // 当true时,Video.js player将拥有流体大小。换句话说,它将按比例缩放以适应其容器。
          // poster: 'https://surmon-china.github.io/vue-quill-editor/static/images/surmon-9.jpg'
        }
      }
    }
  }
</script>

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51

完成

如果需要动态修改视频源的话,就给标签加上v-if判断,当请求到src,再生成playerOptions。

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

闽ICP备14008679号