NodeJS:Node-Onvif startProbe和startDiscovery不起作用

时间:2019-01-03 16:47:13

标签: node.js onvif

当前,我正在尝试通过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);
  });

是我正在使用的代码。

谢谢。

0 个答案:

没有答案