Blake Blackshear 4 роки тому
батько
коміт
3b41b6cc33
1 змінених файлів з 11 додано та 2 видалено
  1. 11 2
      README.md

+ 11 - 2
README.md

@@ -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)