当前,我正在尝试通过node-onvif-package获取本地IP摄像机。直到今天下午,所有功能都运行良好,那里的startProbe()函数不再找到摄像机了。
onvif
.startProbe()
.then(device_info_list => {
console.log(device_info_list.length + " devices were found.");
// Use the list of cameras, gathered by onvif
fullfill(device_info_list);
})
.catch(error => {
return reject(err);
});
是我正在使用的代码。
谢谢。