Jellyfin Forum
Hardware acceleration - Printable Version

+- Jellyfin Forum (https://forum.jellyfin.org)
+-- Forum: Support (https://forum.jellyfin.org/f-support)
+--- Forum: Troubleshooting (https://forum.jellyfin.org/f-troubleshooting)
+--- Thread: Hardware acceleration (/t-hardware-acceleration--9358)



Hardware acceleration - Maurizio Giorgino - 2024-12-02

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:

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



RE: Hardware acceleration - TheDreadPirate - 2024-12-02

You need to pass in the GPU and render group ID.

https://jellyfin.org/docs/general/administration/hardware-acceleration/intel/#configure-with-linux-virtualization

Steps 1 and 2 of that section of our Intel guide.

jellyfin-ffmpeg is part of the container and is not available to the rest of the OS. The docker section of the guide provides the method for passing commands into the container to verify functionality. Steps 5 and 6.