From f14bdc6752fc4a0ab36567d0f1e51e472a2200b6 Mon Sep 17 00:00:00 2001 From: Evgeny Zinoviev Date: Sun, 18 Feb 2024 02:19:27 +0300 Subject: web_kbn: basic support of cams hls streaming --- include/py/homekit/camera/config.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'include/py/homekit/camera') diff --git a/include/py/homekit/camera/config.py b/include/py/homekit/camera/config.py index bcd5d07..257e5f1 100644 --- a/include/py/homekit/camera/config.py +++ b/include/py/homekit/camera/config.py @@ -138,6 +138,9 @@ class IpcamConfig(ConfigUnit): def has_camera(self, camera: int) -> bool: return camera in tuple(self['cameras'].keys()) + def has_zone(self, zone: str) -> bool: + return zone in tuple(self['zones'].keys()) + def get_camera_container(self, camera: int) -> VideoContainerType: return self.get_camera_type(camera).get_container() -- cgit v1.2.3