10 hours ago
Can you share the ffmpeg logs via pastebin? Also, if you use the full reply editor (click "preview post" or "new reply") you can attach images.
10 hours ago
Can you share the ffmpeg logs via pastebin? Also, if you use the full reply editor (click "preview post" or "new reply") you can attach images.
@TheDreadPirate let me know if you need something else or if I can get those screenshots to you in another way.
Edit: ah just saw your new reply, I've added the screenshots to this reply. how do I get the ffmpeg logs seperately? I saw some ffmpeg lines in the jellyfin docker container logs so I assumed those were the necessary ones. do you have a command I can run with ffmpeg to try things?
Ubuntu Server 24.04
Intel i5 12500 OS 500GB SSD Storage 6TB WD Red Pro
9 hours ago
It looks like this is a docker container. Can you share your docker compose for the jellyfin container?
I found where the ffmpeg logs were, this was the log of me trying to play something with hardware acceleration enabled: https://pastebin.com/NeYkuxhB
My compose file looks like this(using Caddy as a reverse proxy to Jellyfin): Code: services: I'm probably missing something specific for the Jellyfin container to properly use hardware acceleration on the host machine.
Ubuntu Server 24.04
Intel i5 12500 OS 500GB SSD Storage 6TB WD Red Pro
8 hours ago
You did not pass the GPU into the container nor the render group ID.
https://jellyfin.org/docs/general/admini...ial-docker Run this to get the render group ID Code: getent group render | cut -d: -f3 Then add this to the docker compose. Replace "122" with the value from the previous command. Code: group_add: Then pass in the GPU. Code: devices: |
|
|