From 9a2c034ae8eaba65ad46db7968aa3dd739e1086b Mon Sep 17 00:00:00 2001 From: Blake Blackshear Date: Thu, 21 Jan 2021 17:28:49 -0600 Subject: [PATCH] get the thumbnail instead of the full frame --- frigate/http.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frigate/http.py b/frigate/http.py index 5ed679c4b..414894a4c 100644 --- a/frigate/http.py +++ b/frigate/http.py @@ -102,7 +102,7 @@ def event_snapshot(id): if id in camera_state.tracked_objects: tracked_obj = camera_state.tracked_objects.get(id) if not tracked_obj is None: - thumbnail_bytes = tracked_obj.get_jpg_bytes() + thumbnail_bytes = tracked_obj.get_thumbnail() except: return "Event not found", 404