1.使用npm下载依赖
npm install --save easy-player
2.将EasyPlayer-lib.min.js文件、EasyPlayer.wasm文件、libDecoder.wasm文件放置到public下
3.创建components,html代码如下
<template>
<div class="player-box" :style="{ width: width, height: height }">
<EasyPlayer
style="width: 100%; height: 100%"
:videoUrl="videoUrl"
:showEnterprise="false"
:show-custom-button="false"
:autoplay="true"
/>
</div>
</template>
4.使用props接收数据文章来源:https://www.toymoban.com/news/detail-768366.html
props: {
// 视频地址
videoUrl: {
type: String,
default: "",
},
// 容器id
id: {
type: String,
default: "",
},
// 容器宽度
width: {
type: [Number, String],
default: "100%",
},
// 容器高度
height: {
type: [Number, String],
default: "100%",
},
},
5.在父组件中引入,传递props中的数据即可运行即可文章来源地址https://www.toymoban.com/news/detail-768366.html
到了这里,关于vue中使用EasyPlayer播放监控视频HLS,H265、H264的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!