|
@@ -295,10 +295,8 @@ cameras:
|
|
output_args:
|
|
output_args:
|
|
|
|
|
|
# Required: height of the frame
|
|
# Required: height of the frame
|
|
- # NOTE: Recommended to set this value, but frigate will attempt to autodetect.
|
|
|
|
height: 720
|
|
height: 720
|
|
# Required: width of the frame
|
|
# Required: width of the frame
|
|
- # NOTE: Recommended to set this value, but frigate will attempt to autodetect.
|
|
|
|
width: 1280
|
|
width: 1280
|
|
# Optional: desired fps for your camera
|
|
# Optional: desired fps for your camera
|
|
# NOTE: Recommended value of 5. Ideally, try and reduce your FPS on the camera.
|
|
# NOTE: Recommended value of 5. Ideally, try and reduce your FPS on the camera.
|
|
@@ -481,6 +479,17 @@ ffmpeg:
|
|
- /dev/dri/renderD128
|
|
- /dev/dri/renderD128
|
|
```
|
|
```
|
|
|
|
|
|
|
|
+AMD/ATI GPUs (Radeon HD 2000 and newer GPUs) via libva-mesa-driver (https://trac.ffmpeg.org/wiki/Hardware/QuickSync)
|
|
|
|
+**Note:** You also need to set `LIBVA_DRIVER_NAME=radeonsi` as an environment variable on the container.
|
|
|
|
+```yaml
|
|
|
|
+ffmpeg:
|
|
|
|
+ hwaccel_args:
|
|
|
|
+ - -hwaccel
|
|
|
|
+ - vaapi
|
|
|
|
+ - -hwaccel_device
|
|
|
|
+ - /dev/dri/renderD128
|
|
|
|
+```
|
|
|
|
+
|
|
Nvidia GPU based decoding via NVDEC is supported, but requires special configuration. See the [nvidia NVDEC documentation](docs/nvdec.md) for more details.
|
|
Nvidia GPU based decoding via NVDEC is supported, but requires special configuration. See the [nvidia NVDEC documentation](docs/nvdec.md) for more details.
|
|
|
|
|
|
[Back to top](#documentation)
|
|
[Back to top](#documentation)
|