Quicksync not working linux - 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: Quicksync not working linux (/t-quicksync-not-working-linux) Pages:
1
2
|
Quicksync not working linux - perkunas - 2024-11-28 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/renderD105dev/dri/renderD105 - /dev/dri/card0dev/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/libraryconfig - /srv/dev-disk-by-uuid-e21f8585-562f-4155-9308-67a413b9dc06/peter/jellyfin/showsdata/shows - /srv/dev-disk-by-uuid-e21f8585-562f-4155-9308-67a413b9dc06/peter/jellyfin/moviesdata/movies - /srv/dev-disk-by-uuid-e21f8585-562f-4155-9308-67a413b9dc06/peter/jellyfin/musicvideodata/musicvideo - /srv/dev-disk-by-uuid-e21f8585-562f-4155-9308-67a413b9dc06/peter/jellyfin/musicdata/music devices: - /dev/dri/renderD105dev/dri/renderD105 - /dev/dri/card0dev/dri/card0 ports: - 8096:8096 - 8920:8920 #optional - 7359:7359/udp #optional - 1900:1900/udp #optional restart: unless-stopped RE: Quicksync not working linux - TheDreadPirate - 2024-11-28 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: RE: Quicksync not working linux - perkunas - 2024-11-28 Is this correct - /dev/dri/renderD1238dev/dri/renderD128 Shouldn't it be - /dev/dri/renderD128dev/dri/renderD128 just checking tnx RE: Quicksync not working linux - perkunas - 2024-11-28 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/libraryconfig - /srv/dev-disk-by-uuid-e21f8585-562f-4155-9308-67a413b9dc06/peter/jellyfin/showsdata/shows - /srv/dev-disk-by-uuid-e21f8585-562f-4155-9308-67a413b9dc06/peter/jellyfin/moviesdata/movies - /srv/dev-disk-by-uuid-e21f8585-562f-4155-9308-67a413b9dc06/peter/jellyfin/musicvideodata/musicvideo - /srv/dev-disk-by-uuid-e21f8585-562f-4155-9308-67a413b9dc06/peter/jellyfin/musicdata/music group_add: - "105" devices: - /dev/dri/renderD1238dev/dri/renderD128 - /dev/dri/card0dev/dri/card0 ports: - 8096:8096 - 8920:8920 #optional - 7359:7359/udp #optional - 1900:1900/udp #optional restart: unless-stopped RE: Quicksync not working linux - TheDreadPirate - 2024-11-28 What are your hardware specs? Can you share the ffmpeg logs from the failed transcodes? /config/log/FFmpeg.Transcode RE: Quicksync not working linux - perkunas - 2024-11-28 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/libraryconfig - /srv/dev-disk-by-uuid-e21f8585-562f-4155-9308-67a413b9dc06/peter/jellyfin/showsdata/shows - /srv/dev-disk-by-uuid-e21f8585-562f-4155-9308-67a413b9dc06/peter/jellyfin/moviesdata/movies - /srv/dev-disk-by-uuid-e21f8585-562f-4155-9308-67a413b9dc06/peter/jellyfin/musicvideodata/musicvideo - /srv/dev-disk-by-uuid-e21f8585-562f-4155-9308-67a413b9dc06/peter/jellyfin/musicdata/music group_add: - "105" devices: - /dev/dri/renderD1238dev/dri/renderD128 - /dev/dri/card0dev/dri/card0 ports: - 8096:8096 - 8920:8920 #optional - 7359:7359/udp #optional - 1900:1900/udp #optional restart: unless-stopped RE: Quicksync not working linux - TheDreadPirate - 2024-11-29 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" RE: Quicksync not working linux - perkunas - 2024-11-30 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 RE: Quicksync not working linux - TheDreadPirate - 2024-11-30 I know. I commented on a particular line in your compose having a typo. Fix the typo. RE: Quicksync not working linux - perkunas - 2024-11-30 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/libraryconfig - /srv/dev-disk-by-uuid-e21f8585-562f-4155-9308-67a413b9dc06/peter/jellyfin/showsdata/shows - /srv/dev-disk-by-uuid-e21f8585-562f-4155-9308-67a413b9dc06/peter/jellyfin/moviesdata/movies - /srv/dev-disk-by-uuid-e21f8585-562f-4155-9308-67a413b9dc06/peter/jellyfin/musicvideodata/musicvideo - /srv/dev-disk-by-uuid-e21f8585-562f-4155-9308-67a413b9dc06/peter/jellyfin/musicdata/music group_add: - "105" devices: - /dev/dri/renderD1238dev/dri/renderD128 - /dev/dri/card0dev/dri/card0 ports: - 8096:8096 - 8920:8920 #optional - 7359:7359/udp #optional - 1900:1900/udp #optional restart: unless-stopped |