在vue组件中使用vue-video-player播放rtmp流
1、安装vue-video-playercd到项目文件夹 -> npm install vue-video-player2、在组件中引入并使用<template><videoPlayer class="vjs-custom-skin videoPlayer" :options="playerOptions&quo
·
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
解决方案:清浏览器缓存
更多推荐
已为社区贡献2条内容
所有评论(0)