From ac41b6e18167b0fc8b093e6fa3a618bb5ab76a3a Mon Sep 17 00:00:00 2001 From: Miguel Valenzuela Date: Thu, 19 Oct 2023 15:14:56 -0700 Subject: [PATCH 1/4] Update Output Args Presets AAC (#8161) * Update Output Args Presets AAC Upon researching the nuances of preset-record-generic-audio-copy & preset-record-generic-audio-aac https://github.com/blakeblackshear/frigate/blob/4c7ea01137d5046879355e35fe9e260d1624d031/frigate/ffmpeg_presets.py#L341 https://ffmpeg.org/ffmpeg.html#Main-options https://stackoverflow.com/questions/70148683/will-ffmpeg-try-to-transcode-to-same-encoding I'd suggest to disambiguate what these two do * fix: lowercase --- docs/docs/configuration/ffmpeg_presets.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/configuration/ffmpeg_presets.md b/docs/docs/configuration/ffmpeg_presets.md index 66747350e..f346c92a0 100644 --- a/docs/docs/configuration/ffmpeg_presets.md +++ b/docs/docs/configuration/ffmpeg_presets.md @@ -72,8 +72,8 @@ Output args presets help make the config more readable and handle use cases for | Preset | Usage | Other Notes | | -------------------------------- | --------------------------------- | --------------------------------------------- | | preset-record-generic | Record WITHOUT audio | This is the default when nothing is specified | -| preset-record-generic-audio-aac | Record WITH aac audio | Use this to enable audio in recordings | | preset-record-generic-audio-copy | Record WITH original audio | Use this to enable audio in recordings | +| preset-record-generic-audio-aac | Record WITH transcoded aac audio | Use this to transcode to aac audio. If your source is already aac, use preset-record-generic-audio-copy instead to avoid re-encoding | | preset-record-mjpeg | Record an mjpeg stream | Recommend restreaming mjpeg stream instead | | preset-record-jpeg | Record live jpeg | Recommend restreaming live jpeg instead | | preset-record-ubiquiti | Record ubiquiti stream with audio | Recordings with ubiquiti non-standard audio | From 37b82c0d605d2530a15809ab078356fc35764600 Mon Sep 17 00:00:00 2001 From: wbradmoore Date: Thu, 2 Nov 2023 07:20:19 -0400 Subject: [PATCH 2/4] Update getting_started.md (#8420) fix configuring_go2rtc link --- docs/docs/guides/getting_started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/guides/getting_started.md b/docs/docs/guides/getting_started.md index adbddb9c2..04110cd1d 100644 --- a/docs/docs/guides/getting_started.md +++ b/docs/docs/guides/getting_started.md @@ -170,5 +170,5 @@ By default, Frigate will retain snapshots of all events for 10 days. The full se Now that you have a working install, you can use the following guides for additional features: -1. [Configuring go2rtc](configuring_go2rtc) - Additional live view options and RTSP relay +1. [Configuring go2rtc](configuring_go2rtc.md) - Additional live view options and RTSP relay 2. [Home Assistant Integration](../integrations/home-assistant.md) - Integrate with Home Assistant From 7b71c21c12c9ccb1d92580145fde92ec76a71d93 Mon Sep 17 00:00:00 2001 From: kaydee123 Date: Mon, 25 Dec 2023 01:25:07 +0530 Subject: [PATCH 3/4] Update reverse_proxy.md (#9070) Spelling mistake --- docs/docs/guides/reverse_proxy.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/guides/reverse_proxy.md b/docs/docs/guides/reverse_proxy.md index 165b4d517..479df53e8 100644 --- a/docs/docs/guides/reverse_proxy.md +++ b/docs/docs/guides/reverse_proxy.md @@ -125,7 +125,7 @@ This section points to your SSL files, the example below shows locations to a de ### Setup reverse proxy settings -Thhe settings below enabled connection upgrade, sets up logging (optional) and proxies everything from the `/` context to the docker host and port specified earlier in the configuration +The settings below enabled connection upgrade, sets up logging (optional) and proxies everything from the `/` context to the docker host and port specified earlier in the configuration ``` proxy_set_header Upgrade $http_upgrade; From 346524c6602abee5ab00ee007f44389a8452fd60 Mon Sep 17 00:00:00 2001 From: Alex Errant <109672176+AlexErrant@users.noreply.github.com> Date: Sun, 21 Jan 2024 23:08:31 -0600 Subject: [PATCH 4/4] Add `ghcr.io/blakeblackshear/frigate:stable-tensorrt` example (#9383) --- docs/docs/configuration/detectors.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/configuration/detectors.md b/docs/docs/configuration/detectors.md index 83291605f..fa2fde345 100644 --- a/docs/docs/configuration/detectors.md +++ b/docs/docs/configuration/detectors.md @@ -168,7 +168,7 @@ volumes: ## NVidia TensorRT Detector -NVidia GPUs may be used for object detection using the TensorRT libraries. Due to the size of the additional libraries, this detector is only provided in images with the `-tensorrt` tag suffix. This detector is designed to work with Yolo models for object detection. +NVidia GPUs may be used for object detection using the TensorRT libraries. Due to the size of the additional libraries, this detector is only provided in images with the `-tensorrt` tag suffix, e.g. `ghcr.io/blakeblackshear/frigate:stable-tensorrt`. This detector is designed to work with Yolo models for object detection. ### Minimum Hardware Support