Skip to content

Commit

Permalink
Fix: correct group assigment for HW Acceleration
Browse files Browse the repository at this point in the history
`/dev/dri/renderD128 does not belongs to the `video` group, but to the `render` group. 

Following the old steps will cause an `VA-API device (/dev/dri/renderD128) has incorrect permissions on the Memories config` error
  • Loading branch information
distante authored Mar 19, 2024
1 parent ad7cd1c commit 9e6b298
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/hw-transcoding.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ On the Nextcloud machine, you need to make sure that the `www-data` user has acc
## Ubuntu
sudo apt-get update
sudo apt-get install -y intel-media-va-driver-non-free ffmpeg # install VA-API drivers
sudo usermod -aG video www-data # add www-data to the video group (may be different)
sudo usermod -aG render www-data # add www-data to the render group (may be different)
## Alpine
apk update
Expand Down

0 comments on commit 9e6b298

Please sign in to comment.