2023-11-01, 03:26 PM
Hi all!
I am a new user who recently discovered Jellyfin and jumped into setting-up a server.
First of all, I will describe my environment:
- I have a raspberry-like mini computer with 8Gb of RAM and Intel N3450 CPU, with an integrated GPU Intel 500 series.
- Debian 11 as OS.
- Jellyfin is running on a Docker container.
- I have the following docker-compose.yml file:
I've also attached a small log-file generated when I play some video.
So, my question is: Am I setting up correctly the hardware acceleration?
Whenever I play any video, my CPU goes to 100%, and the video pauses every few seconds, while the same video runs smoothly on Plex with the same setup, and thats the reason why I think that I am doing something bad.
Thank you very much for your attention!
I am a new user who recently discovered Jellyfin and jumped into setting-up a server.
First of all, I will describe my environment:
- I have a raspberry-like mini computer with 8Gb of RAM and Intel N3450 CPU, with an integrated GPU Intel 500 series.
- Debian 11 as OS.
- Jellyfin is running on a Docker container.
- I have the following docker-compose.yml file:
Code:
version: "2.1"
services:
########################################################### Jellyfin
jellyfin:
image: lscr.io/linuxserver/jellyfin:latest
container_name: jellyfin
environment:
- PUID=0
- PGID=0
- DOCKER_MODS=linuxserver/mods:jellyfin-opencl-intel # Recommended on setup guide
# - JELLYFIN_PublishedServerUrl=192.168.0.5 #optional
devices:
- /dev/dri:/dev/dri # Path to graphic card
volumes:
- /path/to/config/jellyfin:/config
ports:
- 8096:8096
# - 8920:8920 #optional
# - 7359:7359/udp #optional
# - 1900:1900/udp #optional
restart: unless-stopped
I've also attached a small log-file generated when I play some video.
So, my question is: Am I setting up correctly the hardware acceleration?
Whenever I play any video, my CPU goes to 100%, and the video pauses every few seconds, while the same video runs smoothly on Plex with the same setup, and thats the reason why I think that I am doing something bad.
Thank you very much for your attention!