Jellyfin Forum
SOLVED: Hardware Acceleration - Printable Version

+- Jellyfin Forum (https://forum.jellyfin.org)
+-- Forum: Support (https://forum.jellyfin.org/f-support)
+--- Forum: Troubleshooting (https://forum.jellyfin.org/f-troubleshooting)
+--- Thread: SOLVED: Hardware Acceleration (/t-solved-hardware-acceleration)



Hardware Acceleration - emrogs - 2024-02-22

Hey guys

I have jellyfin on a proxmox privileged lxc container and have followed the guide for hardware acceleration, yet it wont playback anything but h264.

I have a Rocket Lake i5 11400, I passed through the renderD128 which is showing up in my lxc but the group is systemd for whatever reason.

QSV doesnt work and VAAPI with the selected renderD128 doesnt work.

Im new to all this so I dont know how to get it running.


RE: Hardware Acceleration - TheDreadPirate - 2024-02-22

On the host, what is the output of this command.

Code:
sudo apt list --installed | egrep "headers|intel"



RE: Hardware Acceleration - emrogs - 2024-02-23

root@azha:~# sudo apt list --installed | egrep "headers|intel"
-bash: sudo: command not found
root@azha:~# apt list --installed | egrep "headers|intel"

WARNING: apt does not have a stable CLI interface. Use with caution in scripts.


RE: Hardware Acceleration - TheDreadPirate - 2024-02-23

If "azha" is the proxmox host itself, then you need to install a bunch of packages on proxmox.

Code:
apt install linux-headers-amd64 intel-gpu-tools intel-media-va-driver-non-free intel-microcode libdrm-intel1

I know that vanilla Debian doesn't configure apt to pull from the non-free repo. Not sure if Proxmox is the same. If it isn't installing the non-free intel media driver, add "non-free" to your apt config.


RE: Hardware Acceleration - emrogs - 2024-02-23

Yes its the host. I installed all except these

E: Package 'intel-media-va-driver-non-free' has no installation candidate
E: Package 'intel-microcode' has no installation candidate

how do I add non-free to my apt config


RE: Hardware Acceleration - TheDreadPirate - 2024-02-23

Read this stack exchange post. Super easy. Add both "non-free" and "non-free-firmware".

https://unix.stackexchange.com/questions/736065/how-do-i-install-non-free-firmware-in-debian-12-bookworm


RE: Hardware Acceleration - emrogs - 2024-02-23

thank you very much kind sir.

it works now perfectly fine with VAAPI and QVS.


RE: Hardware Acceleration - TheDreadPirate - 2024-02-23

Huzzah! Stick with QSV on newer Intel CPUs.