1、安装vue-video-player

cd到项目文件夹 -> npm install vue-video-player

2、在组件中引入并使用

<template>
	<videoPlayer class="vjs-custom-skin videoPlayer" :options="playerOptions"></videoPlayer>
</template>

<script>
	import 'video.js/dist/video-js.css'
	import {videoPlayer} from 'vue-video-player'
	import 'videojs-flash'
  export default {
  	components: {
  		videoPlayer,
  	},
    data() {
      return {
        playerOptions: {
          height: '300',
          sources: [{
            type: "rtmp/mp4",
            src: "rtmp://live.hkstv.hk.lxdns.com/live/hks"
          }],
          techOrder: ['flash'],
          autoplay: false,
          controls: true
        }
      }
    }
  }
</script>

以上。就可以在网页中播放了

(但是有6S延时,做完了功能再解决优化问题好了TAT)

其中,播放直播视频中,遇到了一个error:

FLASH: NetStream.Play.ServiceUnavailable

解决方案:清浏览器缓存

Logo

前往低代码交流专区

更多推荐