From 64b63142b130a2942b318ea4f65de420ebb12332 Mon Sep 17 00:00:00 2001 From: Blake Blackshear Date: Mon, 26 Oct 2020 07:59:22 -0500 Subject: [PATCH] start the frame rate tracker --- frigate/video.py | 1 + 1 file changed, 1 insertion(+) diff --git a/frigate/video.py b/frigate/video.py index 693dc54f1..c60714ca1 100755 --- a/frigate/video.py +++ b/frigate/video.py @@ -122,6 +122,7 @@ def capture_frames(ffmpeg_process, camera_name, frame_shape, frame_manager: Fram frame_num = 0 frame_size = frame_shape[0] * frame_shape[1] * 3 // 2 frame_rate = EventsPerSecond() + frame_rate.start() skipped_eps = EventsPerSecond() skipped_eps.start() while True: