在vue中使用videoJs实现前端视频流
videoJs实现前端视频流
·
videoJs
1.插件安装
npm install video.js --save
2.引入
在video组件里引入
<template>
<!-- 包一层是因为放在 Dialog 里面,随时会销毁, -->
<!-- 不然 this.player.dispose() 销毁后整个dom都没有了,会显示dom节点找不到的报错 -->
<div ref="videoContainer" style="width: 850px;height: 500px;">
<!-- video-js有这个才有样式 -->
<video style="width: 100%;height: 100%;" ref="videoPlayer" class="video-js"></video>
</div>
</template>
<script>
import videojs from "video.js";
import "video.js/dist/video-js.css";
export default {
name: "VideoContainer",
props: {
src: {
type: String,
// http://www.tvyan.com/
// 随便找个电视台直播进去复制一个 .m3u8 视频流链接就可以了
default: "",
},
},
computed: {
options() {
return {
playbackRates: [0.5, 1.0,2.0], //播放速度
autoplay: true,
muted: true, // 默认情况下将会消除任何音频。
loop: false, // 导致视频一结束就重新开始。
preload: "auto", // 建议浏览器在<video>加载元素后是否应该开始下载视频数据。auto浏览器选择最佳行为,立即开始加载视频(如果浏览器支持)
language: "zh-CN",
// aspectRatio: "16:9", // 将播放器置于流畅模式,并在计算播放器的动态大小时使用该值。值应该代表一个比例 - 用冒号分隔的两个数字(例如"16:9"或"4:3")
// fluid: true, // 当true时,Video.js player将拥有流体大小。换句话说,它将按比例缩放以适应其容器。
sources: [
{
// 这样是支持.m3u8 网上找到的各卫视直播视频流都是此格式
type: "application/x-mpegURL", //这里的种类支持很多种:基本视频格式、直播、流媒体等,具体可以参看git网址项目
src: this.src, //url地址
},
],
poster: "", //你的封面地址
notSupportedMessage: "此视频暂无法播放,请稍后重新尝试", //允许覆盖Video.js无法播放媒体源时显示的默认信息。
controls: true,
controlBar: {
timeDivider: true,
durationDisplay: true,
remainingTimeDisplay: true,
fullscreenToggle: true, //全屏按钮
},
// 获取父元素的宽高
width: this.$refs.videoContainer?.parentElement.offsetWidth || "356",
height: this.$refs.videoContainer?.parentElement.offsetHeight || "200",
};
},
},
data() {
return {
player: null,
};
},
methods: {
init() {
this.player = videojs(this.$refs.videoPlayer, this.options, function () {
// console.log("onPlayerReady", this);
});
},
},
mounted() {
this.init();
},
beforeDestroy() {
if (this.player) {
this.player.dispose();
}
},
};
</script>
上面支持的视频格式是.m3u8,如果想支持其他格式的话只需要对source里的type类型做一下修改就可以了
// 视频流类型
mp4: 'video/mp4',
flv: 'video/x-flv',
m3u8: 'application/x-mpegURL'
3.使用
在页面引入我们刚刚注册的组件
<template>
<div class="intelligent">
<VideoPlay :src="sourcesSrc"></VideoPlay>
</div>
</template>
<script>
import VideoPlay from "@/components/Video"
export default {
data() {
return {
sourcesSrc: require('./video/aaa.mp4'),
sourcesUrl: "//sf1-cdn-tos.huoshanstatic.com/obj/media-fe/xgplayer_doc_video/mp4/xgplayer-demo-360p.mp4",
};
},
components: {
VideoPlay,
},
};
</script>
本地的视频文件需要require
引入,这里引入的是.mp4,需要在video组件里对type进行修改才能播放
更多推荐
已为社区贡献2条内容
所有评论(0)