From f64ffa3a5678203901d839ce5350122269f26c21 Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Tue, 20 Feb 2024 16:20:56 -0700 Subject: [PATCH] Fix black bar at bottom of previews (#9923) --- frigate/output/preview.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frigate/output/preview.py b/frigate/output/preview.py index 61ca248b7..c4125bd5d 100644 --- a/frigate/output/preview.py +++ b/frigate/output/preview.py @@ -131,7 +131,7 @@ class PreviewRecorder: self.start_time = 0 self.last_output_time = 0 self.output_frames = [] - self.out_height = 160 + self.out_height = 180 self.out_width = ( int((config.detect.width / config.detect.height) * self.out_height) // 4 * 4 )