2025-05-26, 06:16 PM
I haven't got a QNAP NAS but this may help you:
1. Check the capabilities of your CPU and from that you can set the Hardware Decoding settings accordingly - https://en.wikipedia.org/wiki/Intel_Quick_Sync_Video
2. Have you read through all this regarding Jellyfin and transcoding - https://jellyfin.org/docs/general/post-i...eleration/
3. If using docker you have to pass the device correctly. I'm using a Synology NAS and my compose file is like this, note the Device settings:
1. Check the capabilities of your CPU and from that you can set the Hardware Decoding settings accordingly - https://en.wikipedia.org/wiki/Intel_Quick_Sync_Video
2. Have you read through all this regarding Jellyfin and transcoding - https://jellyfin.org/docs/general/post-i...eleration/
3. If using docker you have to pass the device correctly. I'm using a Synology NAS and my compose file is like this, note the Device settings:
Code:
jellyfin:
image: jellyfin/jellyfin:latest
container_name: Jellyfin
environment:
- PUID=1027
- PGID=65536
- TZ=Europe/London
group_add:
- "937" \ # Change this to match your "render/video/input" host group id and remove this comment
volumes:
- /volume1/docker/jellyfin/cache:/cache:rw
- /volume1/docker/jellyfin/config:/config:rw
- /volume1/video3/TV:/TV:ro
- /volume1/video3/Movie:/Movie:ro
devices:
- /dev/dri/renderD128:/dev/dri/renderD128
- /dev/dri/card0:/dev/dri/card0
ports:
- 8096:8096/tcp
network_mode: host
restart: unless-stopped
Jellyfin1 - 10.10.7 (Docker) Synology NAS (transcoding off)
Jellyfin2 - 10.10.7 Minix ZX100-0db MiniPC, Intel N100 (transcoding on)
Storage - x3 Synology NAS (22TB)
Reverse Proxy - Caddy v2 running on a Pi3b+
Jellyfin2 - 10.10.7 Minix ZX100-0db MiniPC, Intel N100 (transcoding on)
Storage - x3 Synology NAS (22TB)
Reverse Proxy - Caddy v2 running on a Pi3b+