Jellyfin Forum
Intel N100 (on Debian) - how to get the transcode to work? - 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: Intel N100 (on Debian) - how to get the transcode to work? (/t-intel-n100-on-debian-how-to-get-the-transcode-to-work)



Intel N100 (on Debian) - how to get the transcode to work? - Lateral - 2024-04-29

Sorry, I'm new - below is my docker compose. Is there a driver I need to install on the host (Intel N100), or anything else I need in the compose file to get this to work?

Let me know if any other details would help!! Many thanks for your support with this.[/color]

Code:
---
name: jellyfin
services:
jellyfin:
devices:
- /dev/dri:/dev/dri
image: linuxserver/jellyfin:10.8.13
restart: unless-stopped
volumes:
- type: bind
source: /DATA/AppData/jellyfin/config
target: /config
- type: bind
source: /mnt/nas/Media
target: /Media
- type: bind
source: /opt/vc/lib
target: /opt/vc/lib
network_mode: bridge
privileged: false



RE: Intel N100 (on Debian) - how to get the transcode to work? - TheDreadPirate - 2024-04-29

Which version of Debian and which kernel are you running?


RE: Intel N100 (on Debian) - how to get the transcode to work? - Lateral - 2024-04-29

(2024-04-29, 03:55 PM)TheDreadPirate Wrote: Which version of Debian and which kernel are you running?

Thanks for helping me with this. I get this:

6.1.0-18-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.76-1 (2024-02-01) x86_64 GNU/Linux

Is that what you're looking for to help me troubleshoot this?


RE: Intel N100 (on Debian) - how to get the transcode to work? - TheDreadPirate - 2024-04-29

I missed this in the first post. You did not add the render group to your compose file. Adding the "group_add" line to your compose. An example from mine is below.

Code:
services:
  jellyfin:
    image: jellyfin/jellyfin:unstable
    container_name: jellyfin-unstable
    user: 105:104
    group_add:
      - "993" # Intel render group
    network_mode: 'host'
    volumes:
      - ./jellyfin-data/config:/config
      - ./jellyfin-data/cache:/cache
      - /media:/media:ro
    devices:
      - /dev/dri/renderD128:/dev/dri/renderD128
    restart: 'unless-stopped'
    extra_hosts:
      - "host.docker.internal:host-gateway"

Use the "getent group render" command to get the group ID for render on your PC.