vue项目接入海康威视H5player.js
- 插件下载
点击跳转海康威视H5player下载地址 - 首先我们需要将下载下来的程序包内的JS文件放到我们自己的项目文件
在utils里面还要放置h5player.min.js文件进去 下方代码中解释
注意:一定要放在vue中的public文件夹中 否则会报错
- 在public/index.html文件中引入
<script src="./h5player.min.js"></script>
<script src="./Decoder.js"></script>
- 在页面中使用
<div id="HKVideo" class="HKVideo1" ></div>
//下方为海康视频播放器所需变量
const oPlugin = ref();
const time = ref<number>(0);
async function getScript() {
const { JSPlugin }: any = window;
oPlugin.value = new JSPlugin({
szId: "HKVideo", // 当前的视频播放的节点,需要英文字母开头,必填
szBasePath: "../../utils/", // 这里必须指向h5player.min.js文件 把这个文件再放在src里面的一个文件夹中,因为放置在public的文件这里指向不到
openDebug: true,
// 分屏播放
iMaxSplit: 4,
iCurrentSplit: 1,
// 设置样式
oStyle: {
border: "#FFF",
borderSelect: "#FFCC00",
background: "#000",
},
});
await initPlugin();
}
// 事件初始化
function initPlugin() {
oPlugin.value.JS_SetWindowControlCallback({
windowEventSelect(iWindIndex: any) {
// 插件选中窗口回调
console.log("windowSelect callback: ", iWindIndex);
},
pluginErrorHandler(iWindIndex: any, iErrorCode: any, oError: any) {
// 插件错误回调
console.error(`window-${iWindIndex}, errorCode: ${iErrorCode}`, oError);
},
windowEventOver(iWindIndex: any) {
// 鼠标移过回调
console.log("鼠标移过回调", iWindIndex);
},
windowEventOut(iWindIndex: any) {
// 鼠标移出回调
console.log("鼠标移出回调", iWindIndex);
},
windowFullCcreenChange(bFull: any) {
// 全屏切换回调
console.log("全屏切换回调", bFull);
},
firstFrameDisplay(iWndIndex: any, iWidth: any, iHeight: any) {
// 首帧显示回调
console.log("首帧显示回调", iWndIndex, iWidth, iHeight);
},
performanceLack(iWndIndex: any) {
// 性能不足回调
console.log("性能不足回调", iWndIndex);
},
});
realplay();
}
// // 播放初始化
function realplay() {
console.log("播放初始化");
console.log(
oPlugin.value.currentWindowIndex,
"oPlugin.value.currentWindowIndex"
);
oPlugin.value
.JS_Play(
props.obj.videoUrl,//视频地址链接
{
playURL: props.obj.videoUrl, // 流媒体播放时必传
},
oPlugin.value.currentWindowIndex//这个应该是视频下标吧 具体我也不太清楚
)
.then(
(res: any) => {
console.log(res, "播放成功");
},
(err: any) => {
console.log(err, "播放失败");
}
);
}
onMounted(async () => {
time.value = setInterval(() => {
const { _malloc }: any = window;
if (_malloc) {
getScript();
clearInterval(time.value);
}
}, 100);
});
这样就OK啦!文章来源:https://www.toymoban.com/news/detail-517002.html
文章来源地址https://www.toymoban.com/news/detail-517002.html
到了这里,关于vue项目接入海康威视H5player.js的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!