2024-05-13, 02:32 PM
(This post was last modified: 2024-05-14, 12:03 AM by lunarboy. Edited 1 time in total.)
Hi. I’m pretty new to Ubuntu, Docker and all that. I’ve just set up my media server running Ubuntu Server, and installed Jellyfin using the LIO docker image.
I don’t believe that hardware acceleration is working. Looks like Ffmpeg is using 30–45% CPU.
The processor in my mini PC is an Intel Core i5-12450H so QSV should work, right?
Here’s my docker compose:
In Jellyfin, I’ve just selected Intel QuickSync and left the defaults.
When running intel-gpu-tools, all the engines are at 0.00%
What else do I need to do?
Thank you for the help.
I don’t believe that hardware acceleration is working. Looks like Ffmpeg is using 30–45% CPU.
The processor in my mini PC is an Intel Core i5-12450H so QSV should work, right?
Here’s my docker compose:
Code:
version: '3.5'
services:
jellyfin:
image: lscr.io/linuxserver/jellyfin:latest
container_name: jellyfin
environment:
- PUID=1000
- PGID=1000
- TZ=America/Los_Angeles
- DOCKER_MODS=linuxserver/mods:jellyfin-opencl-intel
- JELLYFIN_PublishedServerUrl=192.168.50.XXX #optional
volumes:
- /REDACTED/appdata/jellyfin:/config
- /mnt/video/data/media/tv:/data/tvshows
- /mnt/video/data/media/movies:/data/movies
devices:
- /dev/dri:/dev/dri
ports:
- 8096:8096
- 8920:8920 #optional
- 7359:7359/udp #optional
- 1900:1900/udp #optional
restart: unless-stopped
In Jellyfin, I’ve just selected Intel QuickSync and left the defaults.
When running intel-gpu-tools, all the engines are at 0.00%
What else do I need to do?
Thank you for the help.