From a63ff1bb99d1bfc22dd715dc1ea5a7861a90e46a Mon Sep 17 00:00:00 2001 From: Blake Blackshear Date: Thu, 10 Dec 2020 19:22:03 -0600 Subject: [PATCH] swap width and height to reduce confusion --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 73c6bc6de..8a1a4f34e 100644 --- a/README.md +++ b/README.md @@ -170,8 +170,8 @@ cameras: roles: - detect - rtmp - height: 720 width: 1280 + height: 720 fps: 5 ``` Here are all the configuration options: @@ -306,10 +306,10 @@ cameras: # Optional: camera specific output args (default: inherit) output_args: - # Required: height of the frame for the input with the detect role - height: 720 # Required: width of the frame for the input with the detect role width: 1280 + # Required: height of the frame for the input with the detect role + height: 720 # Optional: desired fps for your camera for the input with the detect role # NOTE: Recommended value of 5. Ideally, try and reduce your FPS on the camera. # Frigate will attempt to autodetect if not specified. @@ -427,8 +427,8 @@ cameras: roles: - clips - record - height: 720 width: 1280 + height: 720 fps: 5 ```