![]() |
SOLVED: Arc A380 transcoding suddently stopped working - 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: Arc A380 transcoding suddently stopped working (/t-solved-arc-a380-transcoding-suddently-stopped-working) |
Arc A380 transcoding suddently stopped working - juki - 2024-01-21 Hey all! I've got a weird problem where hardware encoding was working fine until a couple of fairly innocuous-looking package upgrades a few days back and now the driver is failing. It's an Arc A380 GPU paired with an Intel i5-12400 on Ubuntu 23.10 (bare metal, not docker) so most of this worked out-the-box. The integrated GPU is disabled in the bios, and /dev/dri lists Code: $ ls -l /dev/dri vainfo (packaged with jellyfin) is failing with Code: $ sudo /usr/lib/jellyfin-ffmpeg/vainfo and intel_gpu_top also fails with Code: $ sudo intel_gpu_top The driver libs with jellyfin-ffmpeg have these permissions (should it be root : root?): Code: $ ls -l /usr/lib/jellyfin-ffmpeg/lib/dri/ and finally, /var/log/apt/history.log shows the packages installed: Code: Start-Date: 2024-01-16 06:03:55 Any ideas where to go from here? I'm not sure where to start RE: Arc A380 transcoding suddently stopped working - TheDreadPirate - 2024-01-21 I don't know why this would happen after an update, but double check that jellyfin is still in the correct render group. RE: Arc A380 transcoding suddently stopped working - juki - 2024-01-21 (2024-01-21, 05:58 PM)TheDreadPirate Wrote: I don't know why this would happen after an update, but double check that jellyfin is still in the correct render group. Yep, appears so... Code: $ groups jellyfin (media is the group for the media drive) I'm not sure this is even anything in particular to do with Jellyfin, installing libva-utilis and running vainfo gives a similar error with the OS va libs Code: $ sudo vainfo I just don't know who else to ask, my google skills have failed me thus far! 🙃 RE: Arc A380 transcoding suddently stopped working - TheDreadPirate - 2024-01-21 Reinstall all the Intel drive and opencl packages? RE: Arc A380 transcoding suddently stopped working - tmsrxzar - 2024-01-21 "I just don't know who else to ask, my google skills have failed me thus far!" how about https://discourse.ubuntu.com or browse https://bugs.launchpad.net/ubuntu RE: Arc A380 transcoding suddently stopped working - Host-in-the-Shell - 2024-01-21 Did you by any chance update your bios to a new version recently? I had this issue pop up for me after updating mine and what happened was that the update changed many options to default that I required to be able to transcode with the Arc380. That varies from case to case, but for me it disabled 4g decoding, resizable bar, ASPM, and reenabled CSM support. After changing the aforementioned settings, everything went back to normal. I'm not sure if Ubuntu does automatic firmware/bios updates or if you happened to perform one yourself, but just in case, you should check that your bios settings haven't been changed. RE: Arc A380 transcoding suddently stopped working - juki - 2024-01-21 (2024-01-21, 08:39 PM)Host-in-the-Shell Wrote: Did you by any chance update your bios to a new version recently? I had this issue pop up for me after updating mine and what happened was that the update changed many options to default that I required to be able to transcode with the Arc380. That varies from case to case, but for me it disabled 4g decoding, resizable bar, ASPM, and reenabled CSM support. After changing the aforementioned settings, everything went back to normal. Not that I'm aware of, all the settings look the same. Good idea though, thanks! (2024-01-21, 06:11 PM)TheDreadPirate Wrote: Reinstall all the Intel drive and opencl packages? This led me down a rabbit hole reading how to do that and ended up finding a couple obscure posts about Secure Boot causing very similar issues... https://bugs.launchpad.net/ubuntu/+source/intel-gpu-tools/+bug/1752194 https://askubuntu.com/questions/1217785/same-error-when-using-any-intel-command Sure enough, disabling Secure Boot resolved this and I have no idea why that would be any different now than it was a few weeks ago... Reinstalling the packages is probably the correct solution instead of disabling Secure Boot, but I'm not quite confident enough to go down that route. (2024-01-21, 06:23 PM)tmsrxzar Wrote: "I just don't know who else to ask, my google skills have failed me thus far!" I'm really quite new to all this, sorry. It was more a thought of "maybe others on the jellyfin forums have bumped into this as I'm on the most common distro and I've not done anything particularly weird afaik". |