iGPU passthrough problems

crazywolf13

Member
Oct 15, 2023
49
7
8
Hi
I want to run jellyfin with igpu passthrough, I did it using tteks automated scrint and compared the actual code and nearly all websites suggested this code.
But after setting everything up jellyfin errors out in the GUI with a pretty general message:

r/Proxmox - iGPU passthrough problems
Jellyfin log probably says the most. Jellyfin support mods sent me away, they don't provide support for this.

https://jellyfin.org/docs/general/administration/hardware-acceleration/intel/#lxc-on-proxmox

container conf:
https://pastebin.com/KSWU4Vyi

lspci -nn output:
https://pastebin.com/ME0xZFks

Jellyfin ffmpeg error:
https://pastebin.com/dZwT1vLx
 
Dont know if it might help you. I am using jellyfin with docker on my proxmox host, this is how my docker-compose.yml looks like;


YAML:
version: '3.3'
services:
    linuxserver:
        container_name: jellyfin
        environment:
            - PUID=0
            - PGID=0
            - TZ=Etc/UTC
        ports:
            - '8096:8096'
        volumes:
            - './config:/config'
            - '/tank/media:/data'
        devices:
            - '/dev/dri:/dev/dri'
        restart: unless-stopped
        image: 'lscr.io/linuxserver/jellyfin:latest'

And within jellyfin I have configured hardware acclerated playback like this:
transcode.gif
 
Dont know if it might help you. I am using jellyfin with docker on my proxmox host, this is how my docker-compose.yml looks like;


YAML:
version: '3.3'
services:
    linuxserver:
        container_name: jellyfin
        environment:
            - PUID=0
            - PGID=0
            - TZ=Etc/UTC
        ports:
            - '8096:8096'
        volumes:
            - './config:/config'
            - '/tank/media:/data'
        devices:
            - '/dev/dri:/dev/dri'
        restart: unless-stopped
        image: 'lscr.io/linuxserver/jellyfin:latest'

And within jellyfin I have configured hardware acclerated playback like this:
View attachment 56730
If you run docker on the host not on any vm/lxc then it probably won't help as the problem is the forwarding from host to vm/lxc.

But thank you for sharing your config!