Help with transcoding - Printable Version +- Jellyfin Forum (https://forum.jellyfin.org) +-- Forum: Support (https://forum.jellyfin.org/f-support) +--- Forum: General Questions (https://forum.jellyfin.org/f-general-questions) +--- Thread: Help with transcoding (/t-help-with-transcoding) |
Help with transcoding - troothdotcom - 2024-09-25 I recently upgraded to this https://www.amazon.com/Beelink-Intel-N100-Computer-Desktop-Display/dp/B0BVFS94J5?th=1 and I set up Jellyfin through docker compose but now I'm not sure how to proceed to be able to use hardware acceleration. I tried chat-gpt but it just confused me more. Any and all help is greatly appreciated. Thanks! RE: Help with transcoding - TheDreadPirate - 2024-09-25 What OS are you running on? We have documentation for docker compose setup of Intel GPUs. https://jellyfin.org/docs/general/administration/hardware-acceleration/intel/#official-docker Pretty simple. Just add this to your compose. Code: devices: The group_add requires that you run a couple commands (documented in the link) to find the proper ID number on your system for the render group. Here is my full docker compose as an example. Code: services: RE: Help with transcoding - troothdotcom - 2024-09-25 (2024-09-25, 01:17 PM)TheDreadPirate Wrote: What OS are you running on? We have documentation for docker compose setup of Intel GPUs. Thank you this was very detailed. I am using Ubuntu server OS and docker compose and still fairly new to all this so I am not sure what i am doing wrong but the issue I am having right now is that I don't seem to have a /dev/dri directory. Do I have to create my own or should it have been created when downloading the drivers? RE: Help with transcoding - TheDreadPirate - 2024-09-25 And I'm assuming you mean you don't have a /dev/dri directory on the host. What version of Ubuntu? Intel's drivers are built into the Linux kernel, as long as your kernel is new enough. Code: cat /etc/os-release Share the output of those two commands. RE: Help with transcoding - troothdotcom - 2024-09-25 I got it! Thanks i had to run sudo apt install --install-recommends linux-generic-hwe-22.04 (2024-09-25, 01:17 PM)TheDreadPirate Wrote: What OS are you running on? We have documentation for docker compose setup of Intel GPUs. RE: Help with transcoding - TheDreadPirate - 2024-09-25 Ah. So you were on kernel 5.15 on Ubuntu 22.04. That will do it. RE: Help with transcoding - troothdotcom - 2024-09-26 Thank you so much! Finally got Jellyfin working and transcoding how I wanted. You're the best. (2024-09-25, 01:17 PM)TheDreadPirate Wrote: What OS are you running on? We have documentation for docker compose setup of Intel GPUs. |