2024-12-02, 09:57 PM
i'm using jellyfin via docker inside my OpenMediaVault machine which run directly on my minipc with intel N100 and UHD integrated graphics.
Everything works fine but the Hardware Acceleration don't work. i followed the steps for the intel HA guide but i stopped when it ask to: sudo apt update && sudo apt install -y jellyfin-ffmpeg7
i obtain "E: impossible to find the packet jellyfin-ffmpeg7"
also i miss the folder /usr/lib/jellyfin-ffmpeg and idk if it's a feature or not.
i have render128 and the i915 respond correctly.
also when i check the process info in OMV when i use jellyfin without Hardware acceleration i have ffmpeg as command in the first place.
i hope i gave enough information for someone to help me with this one. Thanks for the patience.
This is my docker compose file:
Everything works fine but the Hardware Acceleration don't work. i followed the steps for the intel HA guide but i stopped when it ask to: sudo apt update && sudo apt install -y jellyfin-ffmpeg7
i obtain "E: impossible to find the packet jellyfin-ffmpeg7"
also i miss the folder /usr/lib/jellyfin-ffmpeg and idk if it's a feature or not.
i have render128 and the i915 respond correctly.
also when i check the process info in OMV when i use jellyfin without Hardware acceleration i have ffmpeg as command in the first place.
i hope i gave enough information for someone to help me with this one. Thanks for the patience.
This is my docker compose file:
Code:
services:
jellyfin:
image: jellyfin/jellyfin:latest
container_name: jellyfin
user: root
volumes:
- ./config:/config
- ./cache:/cache
- type: bind
source: /tank/home/cloud/media/film
target: /film
- type: bind
source: /tank/home/cloud/media/serieTV
target: /serieTV
read_only: true
# Optional - extra fonts to be used during transcoding with subtitle burn-in
- type: bind
source: /usr/share/fonts
target: /usr/local/share/fonts/custom
read_only: true
labels:
- traefik.enable=true
- traefik.http.routers.jellyfin-https.rule=Host(`jellyfin.----.org`)
- traefik.http.routers.jellyfin-https.entrypoints=websecure
- traefik.http.routers.jellyfin-https.tls=true
- traefik.http.routers.jellyfin-https.tls.certresolver=cloudflare
restart: 'unless-stopped'
# Optional - alternative address used for autodiscovery
environment:
- JELLYFIN_PublishedServerUrl=https://jellyfin.----.org
# Optional - may be necessary for docker healthcheck to pass if running in host network mode
networks:
- frontend
networks:
frontend:
external: true