瀏覽代碼

set jsmpeg video size to same as camera

Blake Blackshear 3 年之前
父節點
當前提交
58cfb8bba4
共有 1 個文件被更改,包括 5 次插入1 次删除
  1. 5 1
      frigate/output.py

+ 5 - 1
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