|
您好,我们这边的服务器地址是183.230.102.60 web端口28081 监视器端口29701,麻烦看看呢。出现这种情况是先调用了查看实时视频的接口之后再调用平台录像的接口,单独调用一个接口可能无法重现。
function openVideo() {
if (!session) { return; }
var chanel = session.swGetPuChanel(puid, 0);
if (chanel) {
var rc = chanel.swOpenEx({
div:'id_show_video',
prototype: prototype,
media: jSW.MEDIADIR.VIDEORECV | jSW.MEDIADIR.AUDIORECV,
callback: function (opt, response) {
}
});
if (rc != jSW.RcCode.RC_CODE_S_OK) {
iot.notify.error('视频获取失败!');
} else {
openNru(true, null, chanel);
}
} else {
iot.notify.error('未获取到指定设备视频通道!');
}
}
function openNru(flag, pid, chanel) {
if (pid) {
puid = pid;
}
if (chanel) {
chanel.swSetNruRecord({
istart: flag ? 1 : 0,
ilength: 300,
callback: function (sender, response) {
},
tag: null
});
} else {
chanel = session.swGetPuChanel(puid, 0);
openNru(flag, pid, chanel);
}
} |
|