readme updates

This commit is contained in:
Blake Blackshear 2020-12-06 14:25:28 -06:00
parent 5e79888370
commit 3b41b6cc33

View File

@ -295,10 +295,8 @@ cameras:
output_args:
# Required: height of the frame
# NOTE: Recommended to set this value, but frigate will attempt to autodetect.
height: 720
# Required: width of the frame
# NOTE: Recommended to set this value, but frigate will attempt to autodetect.
width: 1280
# Optional: desired fps for your camera
# NOTE: Recommended value of 5. Ideally, try and reduce your FPS on the camera.
@ -481,6 +479,17 @@ ffmpeg:
- /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.
[Back to top](#documentation)