Unable to get tone mapping 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: Unable to get tone mapping working (/t-unable-to-get-tone-mapping-working) |
Unable to get tone mapping working - kickingknowledge - 2025-01-18 Running version 10.10.3 in a Docker container on Linux (OMV on Debian) Here's my docker-compose: https://pastebin.com/9VeUZKz8 Current tone mapping settings: https://imgur.com/a/YbZhyDC Most recent ffmpeg logs via JF: https://pastebin.com/1mMQNXcz Most recent JF logs: https://pastebin.com/K5ZxKGvz I'm working with an Intel i3-10100, no discrete GPU. VPP tone mapping works on its own terms, but the colurs are way too dark, so I want to get regular tone mapping working. Output of Code: docker exec -it jellyfin /usr/lib/jellyfin-ffmpeg/ffmpeg -v debug -init_hw_device opencl What should be my next step here? RE: Unable to get tone mapping working - theguymadmax - 2025-01-18 You need to pass the render group into the container. Here's my compose file. Code: services: RE: Unable to get tone mapping working - kickingknowledge - 2025-01-18 This hasn't fixed it, unfortunately. I checked the render group: Code: $getent group render Which returned: Code: render:x:106: I updated the docker-compose (as a Portainer stack) accordingly: Code: jellyfin: I do notice the linuxserver image, not the official jellyfin image. Could this be a problem? Here's the most recent logs and ffmpeg logs: https://pastebin.com/pMqkLF7K https://pastebin.com/7GvUwNPC RE: Unable to get tone mapping working - theguymadmax - 2025-01-18 Add the Intel OpenCLDocker mod for Jellyfin into the environment variables of your compose file. Code: DOCKER_MODS=linuxserver/mods:jellyfin-opencl-intel RE: Unable to get tone mapping working - kickingknowledge - 2025-01-18 This got it. Thank you! Is this mod also necessary for the official JF image, or just the linuxserver one? RE: Unable to get tone mapping working - bitmap - 2025-01-18 The official container already comes with OpenCL. https://jellyfin.org/docs/general/administration/hardware-acceleration/intel#configure-with-linux-virtualization RE: Unable to get tone mapping working - kickingknowledge - 2025-01-18 Is the official image generally recommended over the linuxserver one/are there other advantages to using the official one? I've had this JF instance running for 2.5 years already; I don't recall why I chose the linuxserver one. RE: Unable to get tone mapping working - TheDreadPirate - 2025-01-18 For most users, there is no practical difference. Though some users have encountered weird bugs in the linuxserver image that don't exist in the official image. If the linuxserver image works for you, don't bother switching. The linuxserver image has their configs organized a bit differently which makes it difficult to interchange your existing Jellyfin data with the official image. |