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):
I'm probably missing something specific for the Jellyfin container to properly use hardware acceleration on the host machine.
My compose file looks like this(using Caddy as a reverse proxy to Jellyfin):
Code:
services:
jellyfin:
image: jellyfin/jellyfin:latest
container_name: jellyfin
volumes:
- /home/frank/jellyfin/config:/config
- /home/frank/jellyfin/cache:/cache
- /mnt/media:/media
expose:
- "8096"
networks:
- jellyfin-net
restart: unless-stopped
caddy:
image: caddy:latest
container_name: caddy
ports:
- "80:80"
volumes:
- ./Caddyfile:/etc/caddy/Caddyfile
depends_on:
- jellyfin
networks:
- jellyfin-net
restart: unless-stopped
networks:
jellyfin-net:
driver: bridge
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
Intel Arc A380
OS 500GB SSD
Storage 6TB WD Red Pro
Intel i5 12500
Intel Arc A380
OS 500GB SSD
Storage 6TB WD Red Pro