• Login
  • Register
  • Login Register
    Login
    Username/Email:
    Password:
    Or login with a social network below
  • Forum
  • Website
  • GitHub
  • Status
  • Translation
  • Features
  • Team
  • Rules
  • Help
  • Feeds
User Links
  • Login
  • Register
  • Login Register
    Login
    Username/Email:
    Password:
    Or login with a social network below

    Useful Links Forum Website GitHub Status Translation Features Team Rules Help Feeds
    Jellyfin Forum Support Troubleshooting Quicksync not working linux

    Pages (3): 1 2 3 Next »

     
    • 1 Vote(s) - 4 Average

    Quicksync not working linux

    Quicksync/Docker
    perkunas
    Offline

    Junior Member

    Posts: 35
    Threads: 6
    Joined: 2024 Nov
    Reputation: 0
    Country:Canada
    #1
    2024-11-28, 12:04 AM
    I'm trying to get Quicksync working. I'm Running OMV Debian GNU/Linux, with Linux 6.1.0-28-amd64
    I added a couple lines in docker
    devices:
          - /dev/dri/renderD105Confused-facedev/dri/renderD105
          - /dev/dri/card0Confused-facedev/dri/card0

    I used 105 as

    root@NAS:~# root@NAS:~# cat /etc/group | grep render
    render:x:105:

    Not sure what I'm doing and could use a little help
    Tnx

    ---
    # https://hub.docker.com/r/linuxserver/jellyfin
    services:
      jellyfin:
        image: lscr.io/linuxserver/jellyfin:latest
        container_name: jellyfin
        environment:
          - PUID=1000
          - PGID=998
          - TZ=America/Toronto
          - JELLYFIN_PublishedServerUrl=192.168.0.5 #optional
        volumes:
          - /srv/dev-disk-by-uuid-e21f8585-562f-4155-9308-67a413b9dc06/peter/jellyfin/libraryConfused-faceconfig
          - /srv/dev-disk-by-uuid-e21f8585-562f-4155-9308-67a413b9dc06/peter/jellyfin/showsConfused-facedata/shows
          - /srv/dev-disk-by-uuid-e21f8585-562f-4155-9308-67a413b9dc06/peter/jellyfin/moviesConfused-facedata/movies
          - /srv/dev-disk-by-uuid-e21f8585-562f-4155-9308-67a413b9dc06/peter/jellyfin/musicvideoConfused-facedata/musicvideo
          - /srv/dev-disk-by-uuid-e21f8585-562f-4155-9308-67a413b9dc06/peter/jellyfin/musicConfused-facedata/music
          devices:
          - /dev/dri/renderD105Confused-facedev/dri/renderD105
          - /dev/dri/card0Confused-facedev/dri/card0

        ports:
          - 8096:8096
          - 8920:8920 #optional
          - 7359:7359/udp #optional
          - 1900:1900/udp #optional
        restart: unless-stopped
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 15,375
    Threads: 10
    Joined: 2023 Jun
    Reputation: 460
    Country:United States
    #2
    2024-11-28, 12:37 AM
    It should be renderD128. The "105" bit is for the render group that you use for the "group_add" parameter you pass into the container.

    Code:
    services:
      jellyfin:
        image: lscr.io/linuxserver/jellyfin:latest
        container_name: jellyfin
        environment:
          - PUID=1000
          - PGID=998
          - TZ=America/Toronto
          - JELLYFIN_PublishedServerUrl=192.168.0.5 #optional
        volumes:
          - /srv/dev-disk-by-uuid-e21f8585-562f-4155-9308-67a413b9dc06/peter/jellyfin/library:/config
          - /srv/dev-disk-by-uuid-e21f8585-562f-4155-9308-67a413b9dc06/peter/jellyfin/shows:/data/shows
          - /srv/dev-disk-by-uuid-e21f8585-562f-4155-9308-67a413b9dc06/peter/jellyfin/movies:/data/movies
          - /srv/dev-disk-by-uuid-e21f8585-562f-4155-9308-67a413b9dc06/peter/jellyfin/musicvideo:/data/musicvideo
          - /srv/dev-disk-by-uuid-e21f8585-562f-4155-9308-67a413b9dc06/peter/jellyfin/music:/data/music
         group_add:
          - "105"
          devices:
          - /dev/dri/renderD1238:/dev/dri/renderD128
          - /dev/dri/card0:/dev/dri/card0

        ports:
          - 8096:8096
          - 8920:8920 #optional
          - 7359:7359/udp #optional
          - 1900:1900/udp #optional
        restart: unless-stopped
    Jellyfin 10.10.7 (Docker)
    Ubuntu 24.04.2 LTS w/HWE
    Intel i3 12100
    Intel Arc A380
    OS drive - SK Hynix P41 1TB
    Storage
        4x WD Red Pro 6TB CMR in RAIDZ1
    [Image: GitHub%20Sponsors-grey?logo=github]
    perkunas
    Offline

    Junior Member

    Posts: 35
    Threads: 6
    Joined: 2024 Nov
    Reputation: 0
    Country:Canada
    #3
    2024-11-28, 01:30 AM
    Is this correct
    - /dev/dri/renderD1238Confused-facedev/dri/renderD128
    Shouldn't it be
    - /dev/dri/renderD128Confused-facedev/dri/renderD128
    just checking
    tnx
    perkunas
    Offline

    Junior Member

    Posts: 35
    Threads: 6
    Joined: 2024 Nov
    Reputation: 0
    Country:Canada
    #4
    2024-11-28, 01:56 AM
    still not working
    ---
    # https://hub.docker.com/r/linuxserver/jellyfin
    services:
    jellyfin:
    image: lscr.io/linuxserver/jellyfin:latest
    container_name: jellyfin
    environment:
    - PUID=1000
    - PGID=998
    - TZ=America/Toronto
    - JELLYFIN_PublishedServerUrl=192.168.0.5 #optional
    volumes:
    - /srv/dev-disk-by-uuid-e21f8585-562f-4155-9308-67a413b9dc06/peter/jellyfin/libraryConfused-faceconfig
    - /srv/dev-disk-by-uuid-e21f8585-562f-4155-9308-67a413b9dc06/peter/jellyfin/showsConfused-facedata/shows
    - /srv/dev-disk-by-uuid-e21f8585-562f-4155-9308-67a413b9dc06/peter/jellyfin/moviesConfused-facedata/movies
    - /srv/dev-disk-by-uuid-e21f8585-562f-4155-9308-67a413b9dc06/peter/jellyfin/musicvideoConfused-facedata/musicvideo
    - /srv/dev-disk-by-uuid-e21f8585-562f-4155-9308-67a413b9dc06/peter/jellyfin/musicConfused-facedata/music

    group_add:

    - "105"

    devices:
    - /dev/dri/renderD1238Confused-facedev/dri/renderD128
    - /dev/dri/card0Confused-facedev/dri/card0

    ports:
    - 8096:8096
    - 8920:8920 #optional
    - 7359:7359/udp #optional
    - 1900:1900/udp #optional
    restart: unless-stopped
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 15,375
    Threads: 10
    Joined: 2023 Jun
    Reputation: 460
    Country:United States
    #5
    2024-11-28, 03:58 PM
    What are your hardware specs? Can you share the ffmpeg logs from the failed transcodes? /config/log/FFmpeg.Transcode
    Jellyfin 10.10.7 (Docker)
    Ubuntu 24.04.2 LTS w/HWE
    Intel i3 12100
    Intel Arc A380
    OS drive - SK Hynix P41 1TB
    Storage
        4x WD Red Pro 6TB CMR in RAIDZ1
    [Image: GitHub%20Sponsors-grey?logo=github]
    perkunas
    Offline

    Junior Member

    Posts: 35
    Threads: 6
    Joined: 2024 Nov
    Reputation: 0
    Country:Canada
    #6
    2024-11-28, 09:47 PM
    The problem at this point is, that the Jellyfin docker fails to load.


    Version
    7.4.14-1 (Sandworm)
    Processor
    Intel® Core™ i5-8400 CPU @ 2.80GHz
    Kernel
    Linux 6.1.0-28-amd64
    software raid 10

    ---
    # https://hub.docker.com/r/linuxserver/jellyfin
    services:
    jellyfin:
    image: lscr.io/linuxserver/jellyfin:latest
    container_name: jellyfin
    environment:
    - PUID=1000
    - PGID=998
    - TZ=America/Toronto
    - JELLYFIN_PublishedServerUrl=192.168.0.5 #optional
    volumes:
    - /srv/dev-disk-by-uuid-e21f8585-562f-4155-9308-67a413b9dc06/peter/jellyfin/libraryConfused-faceconfig
    - /srv/dev-disk-by-uuid-e21f8585-562f-4155-9308-67a413b9dc06/peter/jellyfin/showsConfused-facedata/shows
    - /srv/dev-disk-by-uuid-e21f8585-562f-4155-9308-67a413b9dc06/peter/jellyfin/moviesConfused-facedata/movies
    - /srv/dev-disk-by-uuid-e21f8585-562f-4155-9308-67a413b9dc06/peter/jellyfin/musicvideoConfused-facedata/musicvideo
    - /srv/dev-disk-by-uuid-e21f8585-562f-4155-9308-67a413b9dc06/peter/jellyfin/musicConfused-facedata/music

    group_add:

    - "105"

    devices:
    - /dev/dri/renderD1238Confused-facedev/dri/renderD128
    - /dev/dri/card0Confused-facedev/dri/card0

    ports:
    - 8096:8096
    - 8920:8920 #optional
    - 7359:7359/udp #optional
    - 1900:1900/udp #optional
    restart: unless-stopped
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 15,375
    Threads: 10
    Joined: 2023 Jun
    Reputation: 460
    Country:United States
    #7
    2024-11-29, 05:16 PM
    Is this a typo copying to the forum? Or does this typo exist in your compose file?

    Code:
    - /dev/dri/renderD1238:/dev/dri/renderD128

    "renderD1238"
    Jellyfin 10.10.7 (Docker)
    Ubuntu 24.04.2 LTS w/HWE
    Intel i3 12100
    Intel Arc A380
    OS drive - SK Hynix P41 1TB
    Storage
        4x WD Red Pro 6TB CMR in RAIDZ1
    [Image: GitHub%20Sponsors-grey?logo=github]
    perkunas
    Offline

    Junior Member

    Posts: 35
    Threads: 6
    Joined: 2024 Nov
    Reputation: 0
    Country:Canada
    #8
    2024-11-30, 07:47 PM
    My compose file is posted above you, IDK there must be an error some place, as it wont load. I'm not that Knowledgeable to even tell you what that line means.
    tnx
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 15,375
    Threads: 10
    Joined: 2023 Jun
    Reputation: 460
    Country:United States
    #9
    2024-11-30, 08:22 PM
    I know. I commented on a particular line in your compose having a typo. Fix the typo.
    Jellyfin 10.10.7 (Docker)
    Ubuntu 24.04.2 LTS w/HWE
    Intel i3 12100
    Intel Arc A380
    OS drive - SK Hynix P41 1TB
    Storage
        4x WD Red Pro 6TB CMR in RAIDZ1
    [Image: GitHub%20Sponsors-grey?logo=github]
    perkunas
    Offline

    Junior Member

    Posts: 35
    Threads: 6
    Joined: 2024 Nov
    Reputation: 0
    Country:Canada
    #10
    2024-11-30, 11:16 PM
    ok I must be stupid, where is the typo?
    I think I did as I was told
    ---
    # https://hub.docker.com/r/linuxserver/jellyfin
    services:
    jellyfin:
    image: lscr.io/linuxserver/jellyfin:latest
    container_name: jellyfin
    environment:
    - PUID=1000
    - PGID=998
    - TZ=America/Toronto
    - JELLYFIN_PublishedServerUrl=192.168.0.5 #optional
    volumes:
    - /srv/dev-disk-by-uuid-e21f8585-562f-4155-9308-67a413b9dc06/peter/jellyfin/libraryConfused-faceconfig
    - /srv/dev-disk-by-uuid-e21f8585-562f-4155-9308-67a413b9dc06/peter/jellyfin/showsConfused-facedata/shows
    - /srv/dev-disk-by-uuid-e21f8585-562f-4155-9308-67a413b9dc06/peter/jellyfin/moviesConfused-facedata/movies
    - /srv/dev-disk-by-uuid-e21f8585-562f-4155-9308-67a413b9dc06/peter/jellyfin/musicvideoConfused-facedata/musicvideo
    - /srv/dev-disk-by-uuid-e21f8585-562f-4155-9308-67a413b9dc06/peter/jellyfin/musicConfused-facedata/music

    group_add:

    - "105"

    devices:
    - /dev/dri/renderD1238Confused-facedev/dri/renderD128
    - /dev/dri/card0Confused-facedev/dri/card0

    ports:
    - 8096:8096
    - 8920:8920 #optional
    - 7359:7359/udp #optional
    - 1900:1900/udp #optional
    restart: unless-stopped
    Pages (3): 1 2 3 Next »

    « Next Oldest | Next Newest »

    Users browsing this thread: 1 Guest(s)


    • View a Printable Version
    • Subscribe to this thread
    Forum Jump:

    Home · Team · Help · Contact
    © Designed by D&D - Powered by MyBB
    L


    Jellyfin

    The Free Software Media System

    Linear Mode
    Threaded Mode