mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-04-28 23:06:13 +02:00
Various Fixes (#22376)
* Correctly send topic with role value * Fix missing previews * Catch other one
This commit is contained in:
@@ -463,6 +463,13 @@ class ReviewDescriptionProcessor(PostProcessorApi):
|
|||||||
thumbs = []
|
thumbs = []
|
||||||
for idx, thumb_path in enumerate(frame_paths):
|
for idx, thumb_path in enumerate(frame_paths):
|
||||||
thumb_data = cv2.imread(thumb_path)
|
thumb_data = cv2.imread(thumb_path)
|
||||||
|
|
||||||
|
if thumb_data is None:
|
||||||
|
logger.warning(
|
||||||
|
"Could not read preview frame at %s, skipping", thumb_path
|
||||||
|
)
|
||||||
|
continue
|
||||||
|
|
||||||
ret, jpg = cv2.imencode(
|
ret, jpg = cv2.imencode(
|
||||||
".jpg", thumb_data, [int(cv2.IMWRITE_JPEG_QUALITY), 100]
|
".jpg", thumb_data, [int(cv2.IMWRITE_JPEG_QUALITY), 100]
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -436,7 +436,7 @@ class CameraWatchdog(threading.Thread):
|
|||||||
|
|
||||||
for role in p["roles"]:
|
for role in p["roles"]:
|
||||||
self.requestor.send_data(
|
self.requestor.send_data(
|
||||||
f"{self.config.name}/status/{role}", "offline"
|
f"{self.config.name}/status/{role.value}", "offline"
|
||||||
)
|
)
|
||||||
|
|
||||||
continue
|
continue
|
||||||
@@ -451,7 +451,7 @@ class CameraWatchdog(threading.Thread):
|
|||||||
|
|
||||||
for role in p["roles"]:
|
for role in p["roles"]:
|
||||||
self.requestor.send_data(
|
self.requestor.send_data(
|
||||||
f"{self.config.name}/status/{role}", "offline"
|
f"{self.config.name}/status/{role.value}", "offline"
|
||||||
)
|
)
|
||||||
|
|
||||||
p["logpipe"].dump()
|
p["logpipe"].dump()
|
||||||
|
|||||||
Reference in New Issue
Block a user