From 58cfb8bba4bfb564e8258cce9fb88176abf69b98 Mon Sep 17 00:00:00 2001 From: Blake Blackshear Date: Fri, 11 Jun 2021 21:07:47 -0500 Subject: [PATCH] set jsmpeg video size to same as camera --- frigate/output.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/frigate/output.py b/frigate/output.py index e650c3c87..daf8ffbd9 100644 --- a/frigate/output.py +++ b/frigate/output.py @@ -316,7 +316,11 @@ def output_frames(config: FrigateConfig, video_output_queue): for camera, cam_config in config.cameras.items(): converters[camera] = FFMpegConverter( - cam_config.frame_shape[1], cam_config.frame_shape[0], 640, 320, 8 + cam_config.frame_shape[1], + cam_config.frame_shape[0], + cam_config.frame_shape[1], + cam_config.frame_shape[0], + 8, ) broadcasters[camera] = BroadcastThread( camera, converters[camera], websocket_server