|
平台点击录像后,接口调用成功,但是在平台并未生成录像文件,麻烦看一下是哪里的问题呢,代码如下:
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);
}
} else {
iot.notify.error('未获取到指定设备视频通道!');
}
}
function openNru(flag) {
var chanel = session.swGetPuChanel(puid, 0);
chanel.swSetNruRecord({
istart: flag ? 1 : 0,
ilength: 86400,
callback: function (sender, response) {
console.log(JSON.stringify(response));
},
tag: null
});
}
|
|