mobile CCTV,mobile surveillance,police body worn cameras
标题:
谷歌http调用视频问题,代码如下,调用成功,但视频卡顿掉帧严重
[打印本页]
author:
qiyu
time:
2019-10-17 15:36
标题:
谷歌http调用视频问题,代码如下,调用成功,但视频卡顿掉帧严重
<div id='id_video' style="border: 1px solid black;width:100%;height:100%;"></div>
<script type="text/javascript">
var hndSession = null;
window.onload = function () {
jSW.swInit({
url: "http://117.186.28.121:8081", // bv_nginx.exe服务器地址
calltype: jSW.CallProtoType.HTTP, // AUTO: IE优先使用OCX, 如果希望IE仍然使用HTTP通信, 请使用jSW.CallProtoType.HTTP
});
}
window.onbeforeunload = function () {
var szPuid ="<%=PUID%>";
var chanel = hndSession.swGetPuChanel(szPuid, 0);
chanel.swClose();
return '';
}
$(function(){
setTimeout(function(){
hndLogin();
},1000);
;
});
//登录
function hndLogin(){
if (hndSession) { delete hndSession; }
hndSession = new jSW.SWSession({
server: '117.186.28.121', // 如果是jSW.CallProtoType.OCX方式,这里需要填写具体的IP
port: 9701,
onopen: function (sess) {
sess.swLogin({
user: 'admin',
password: '123456'
});
}
});
// 注册事件的回调函数
hndSession.swAddCallBack('login', sessionCallback);
}
function sessionCallback(sender, event, json) {
if (json.code == jSW.RcCode.RC_CODE_S_OK) {
setTimeout(function(){
playVideo();
},2000);
}
}
/*
* msgType: 消息类型
*
*/
function mpOnMessage(msgType, data){
if(data){
windowIndex=data.playid;
}
}
function playVideo(){
var szPuid ="<%=PUID%>";
var channelindex = 0;
var chanel = hndSession.swGetPuChanel(szPuid, channelindex);
var mediaDir = jSW.MEDIADIR.VIDEORECV;
mediaDir = mediaDir | jSW.MEDIADIR.AUDIORECV
var result = chanel.swOpenEx({
bwindowless:false,
bstretch:true,
callback: function (options, response) {
if (response.emms.code == jSW.RcCode.RC_CODE_S_OK) {
console.log("ok");
}
},
div: 'id_video',
media: mediaDir
});
};
</script>
author:
IBeli
time:
2019-10-17 16:28
您好,接口调用是正常的。卡顿是库的问题,我们正在排查定位问题。
author:
asia
time:
2021-12-22 17:40
有查出来啥问题嘛?我的也是,特别卡,几乎画面是5秒一动
author:
jsb
time:
2021-12-22 17:55
请更新到最新的服务器测试 下载地址
https://www.besovideo.com/detail?t=1&i=85
或者可以先用我们的测试服务器测试下 地址
http://61.191.27.18:8081/Demo/video.html
欢迎光临 mobile CCTV,mobile surveillance,police body worn cameras (http://bbs.besovideo.com:8067/)
Powered by Discuz! X3.2