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

上效果图
vue-video-player播放rtmp/mp4等格式视频流或本地文件_第1张图片

实现过程:

  1. 使用npm安装(尽量不要用cnpm ,可能导致bug)
npm install vue-video-player --save
npm install --save videojs-flash
  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. 页面代码
<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', // 建议浏览器在
          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>

完成

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

你可能感兴趣的:(vue)