update hwaccel docs

This commit is contained in:
Blake Blackshear 2022-06-11 06:42:09 -05:00
parent ba119e4f96
commit 1d45b0b351
2 changed files with 14 additions and 4 deletions

View File

@ -26,7 +26,7 @@ ffmpeg:
```yaml
ffmpeg:
hwaccel_args: -hwaccel qsv -qsv_device /dev/dri/renderD128 -hwaccel_output_format yuv420p
hwaccel_args: -c:v h264_qsv
```
### AMD/ATI GPUs (Radeon HD 2000 and newer GPUs) via libva-mesa-driver
@ -79,9 +79,7 @@ For example, for H264 video, you'll select `h264_cuvid`.
```yaml
ffmpeg:
hwaccel_args:
- -c:v
- h264_cuvid
hwaccel_args: -c:v h264_cuvid
```
If everything is working correctly, you should see a significant improvement in performance.

View File

@ -108,6 +108,18 @@ ffmpeg -c:v h264_v4l2m2m -re -stream_loop -1 -i https://streams.videolan.org/ffm
ffmpeg -c:v h264_cuvid -re -stream_loop -1 -i https://streams.videolan.org/ffmpeg/incoming/720p60.mp4 -f rawvideo -pix_fmt yuv420p pipe: > /dev/null
```
**VAAPI**
```shell
ffmpeg -hwaccel vaapi -hwaccel_device /dev/dri/renderD128 -hwaccel_output_format yuv420p -re -stream_loop -1 -i https://streams.videolan.org/ffmpeg/incoming/720p60.mp4 -f rawvideo -pix_fmt yuv420p pipe: > /dev/null
```
**QSV**
```shell
ffmpeg -c:v h264_qsv -re -stream_loop -1 -i https://streams.videolan.org/ffmpeg/incoming/720p60.mp4 -f rawvideo -pix_fmt yuv420p pipe: > /dev/null
```
## Web Interface
### Prerequisites