• 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 Setting up jellyfin with podman compose for transcoding with a intel a380 gpu

     
    • 0 Vote(s) - 0 Average

    Setting up jellyfin with podman compose for transcoding with a intel a380 gpu

    sweesh
    Offline

    Junior Member

    Posts: 1
    Threads: 1
    Joined: 2024 May
    Reputation: 0
    Country:Germany
    #1
    2024-05-18, 11:04 AM
    Hi, I hope someone can help me.

    my podman compose setup so far:

    services:
      # source: https://jellyfin.org/docs/general/instal...container/
      jellyfin:
        image: docker.io/jellyfin/jellyfin:latest
        container_name: jellyfin
        image: jellyfin/jellyfin
        environment:
          - PUID=1000
          - PGID=1000
          - TZ=Europe/Berlin
          - JELLYFIN_PublishedServerUrl=https://my.domain
        volumes:
          - ./configConfused-faceconfig:Z
          - ./cacheConfused-facecache:Z
          - ./m3uConfused-facem3u:z
          - ./mediaConfused-facemedia:rw
        ports:
          - 8096:8096
        restart: always
        device:
          - /dev/dri/renderD128Confused-facedev/dri/renderD128:Z
        group-add:
          - "105"
        privileged: true





    $ getsebool container_use_dri_devices
    container_use_dri_devices --> on


    $ sudo lshw -c video | grep driver
          configuration: driver=i915 latency=0

    without giving privileges, I can't get access to the gpu within the container. if privileged is set to false:

    $ podman exec -u root -it jellyfin /usr/lib/jellyfin-ffmpeg/ffmpeg -v debug -init_hw_device
    Device creation failed: -2.
    Failed to set value 'drm=drConfused-facedev/dri/renderD128' for option 'init_hw_device': No such file or directory
    Error parsing global options: No such file or directory


    if privileged is true.

    $ podman exec -u root -it jellyfin /usr/lib/jellyfin-ffmpeg/ffmpeg -v debug -init_hw_device drm=drConfused-facedev/dri/renderD128 -init_hw_device vaapi=va@dr
    ffmpeg version 6.0.1-Jellyfin Copyright © 2000-2023 the FFmpeg developers
      built with gcc 12 (Debian 12.2.0-14)
      configuration: --prefix=/usr/lib/jellyfin-ffmpeg --target-os=linux --extra-version=Jellyfin --disable-doc --disable-ffplay --disable-ptx-compression --disable-static --disable-libxcb --disable-sdl2 --disable-xlib --enable-lto --enable-gpl --enable-version3 --enable-shared --enable-gmp --enable-gnutls --enable-chromaprint --enable-opencl --enable-libdrm --enable-libass --enable-libfreetype --enable-libfribidi --enable-libfontconfig --enable-libbluray --enable-libmp3lame --enable-libopus --enable-libtheora --enable-libvorbis --enable-libopenmpt --enable-libdav1d --enable-libsvtav1 --enable-libwebp --enable-libvpx --enable-libx264 --enable-libx265 --enable-libzvbi --enable-libzimg --enable-libfdk-aac --arch=amd64 --enable-libshaderc --enable-libplacebo --enable-vulkan --enable-vaapi --enable-amf --enable-libvpl --enable-ffnvcodec --enable-cuda --enable-cuda-llvm --enable-cuvid --enable-nvdec --enable-nvenc
      libavutil      58.  2.100 / 58.  2.100
      libavcodec    60.  3.100 / 60.  3.100
      libavformat    60.  3.100 / 60.  3.100
      libavdevice    60.  1.100 / 60.  1.100
      libavfilter    9.  3.100 /  9.  3.100
      libswscale      7.  1.100 /  7.  1.100
      libswresample  4. 10.100 /  4. 10.100
      libpostproc    57.  1.100 / 57.  1.100
    Splitting the commandline.
    Reading option '-v' ... matched as option 'v' (set logging level) with argument 'debug'.
    Reading option '-init_hw_device' ... matched as option 'init_hw_device' (initialise hardware device) with argument 'drm=drConfused-facedev/dri/renderD128'.
    Reading option '-init_hw_device' ... matched as option 'init_hw_device' (initialise hardware device) with argument 'vaapi=va@dr'.
    Finished splitting the commandline.
    Parsing a group of options: global .
    Applying option v (set logging level) with argument debug.
    Applying option init_hw_device (initialise hardware device) with argument drm=drConfused-facedev/dri/renderD128.
    [AVHWDeviceContext @ 0x55e56e90b480] Opened DRM device /dev/dri/renderD128: driver i915 version 1.6.0.
    Applying option init_hw_device (initialise hardware device) with argument vaapi=va@dr.
    [AVHWDeviceContext @ 0x55e56e90b8c0] libva: VA-API version 1.21.0
    [AVHWDeviceContext @ 0x55e56e90b8c0] libva: Trying to open /usr/lib/jellyfin-ffmpeg/lib/dri/iHD_drv_video.so
    [AVHWDeviceContext @ 0x55e56e90b8c0] libva: Found init function __vaDriverInit_1_21
    [AVHWDeviceContext @ 0x55e56e90b8c0] libva: va_openDriver() returns 0
    [AVHWDeviceContext @ 0x55e56e90b8c0] Initialised VAAPI connection: version 1.21
    [AVHWDeviceContext @ 0x55e56e90b8c0] Format 0x41524742 -> bgra.
    [AVHWDeviceContext @ 0x55e56e90b8c0] Format 0x42475241 -> argb.
    [AVHWDeviceContext @ 0x55e56e90b8c0] Format 0x41424752 -> rgba.
    [AVHWDeviceContext @ 0x55e56e90b8c0] Format 0x52474241 -> abgr.
    [AVHWDeviceContext @ 0x55e56e90b8c0] Format 0x58524742 -> bgr0.
    [AVHWDeviceContext @ 0x55e56e90b8c0] Format 0x42475258 -> 0rgb.
    [AVHWDeviceContext @ 0x55e56e90b8c0] Format 0x58424752 -> rgb0.
    [AVHWDeviceContext @ 0x55e56e90b8c0] Format 0x52474258 -> 0bgr.
    [AVHWDeviceContext @ 0x55e56e90b8c0] Format 0x30335241 -> unknown.
    [AVHWDeviceContext @ 0x55e56e90b8c0] Format 0x30334241 -> unknown.
    [AVHWDeviceContext @ 0x55e56e90b8c0] Format 0x30335258 -> x2rgb10le.
    [AVHWDeviceContext @ 0x55e56e90b8c0] Format 0x30334258 -> x2bgr10le.
    [AVHWDeviceContext @ 0x55e56e90b8c0] Format 0x36314752 -> unknown.
    [AVHWDeviceContext @ 0x55e56e90b8c0] Format 0x56555941 -> unknown.
    [AVHWDeviceContext @ 0x55e56e90b8c0] Format 0x56555958 -> vuyx.
    [AVHWDeviceContext @ 0x55e56e90b8c0] Format 0x30303859 -> gray.
    [AVHWDeviceContext @ 0x55e56e90b8c0] Format 0x3231564e -> nv12.
    [AVHWDeviceContext @ 0x55e56e90b8c0] Format 0x3132564e -> unknown.
    [AVHWDeviceContext @ 0x55e56e90b8c0] Format 0x32595559 -> yuyv422.
    [AVHWDeviceContext @ 0x55e56e90b8c0] Format 0x59565955 -> uyvy422.
    [AVHWDeviceContext @ 0x55e56e90b8c0] Format 0x32315659 -> yuv420p.
    [AVHWDeviceContext @ 0x55e56e90b8c0] Format 0x30323449 -> yuv420p.
    [AVHWDeviceContext @ 0x55e56e90b8c0] Format 0x50313134 -> yuv411p.
    [AVHWDeviceContext @ 0x55e56e90b8c0] Format 0x48323234 -> yuv422p.
    [AVHWDeviceContext @ 0x55e56e90b8c0] Format 0x56323234 -> yuv440p.
    [AVHWDeviceContext @ 0x55e56e90b8c0] Format 0x50343434 -> yuv444p.
    [AVHWDeviceContext @ 0x55e56e90b8c0] Format 0x33434d49 -> unknown.
    [AVHWDeviceContext @ 0x55e56e90b8c0] Format 0x30313050 -> p010le.
    [AVHWDeviceContext @ 0x55e56e90b8c0] Format 0x32313050 -> p012le.
    [AVHWDeviceContext @ 0x55e56e90b8c0] Format 0x36313050 -> unknown.
    [AVHWDeviceContext @ 0x55e56e90b8c0] Format 0x30313259 -> y210le.
    [AVHWDeviceContext @ 0x55e56e90b8c0] Format 0x32313259 -> y212le.
    [AVHWDeviceContext @ 0x55e56e90b8c0] Format 0x36313259 -> unknown.
    [AVHWDeviceContext @ 0x55e56e90b8c0] Format 0x30313459 -> xv30le.
    [AVHWDeviceContext @ 0x55e56e90b8c0] Format 0x32313459 -> xv36le.
    [AVHWDeviceContext @ 0x55e56e90b8c0] Format 0x36313459 -> unknown.
    [AVHWDeviceContext @ 0x55e56e90b8c0] Format 0x50424752 -> unknown.
    [AVHWDeviceContext @ 0x55e56e90b8c0] Format 0x50524742 -> unknown.
    [AVHWDeviceContext @ 0x55e56e90b8c0] VAAPI driver: Intel iHD driver for Intel® Gen Graphics - 24.2.1 (0593864).
    [AVHWDeviceContext @ 0x55e56e90b8c0] Driver not found in known nonstandard list, using standard behaviour.
    Successfully parsed a group of options.
    Hyper fast Audio and Video encoder
    usage: ffmpeg [options] [[infile options] -i infile]... {[outfile options] outfile}...


    to get the group I ran getent group render | cut -d: -f3 on the host which returned 105.


    $ podman exec -it jellyfin /usr/lib/jellyfin-ffmpeg/vainfo
    Trying display: drm
    libva info: VA-API version 1.21.0
    libva info: Trying to open /usr/lib/jellyfin-ffmpeg/lib/dri/iHD_drv_video.so
    libva info: Found init function __vaDriverInit_1_21
    libva info: va_openDriver() returns 0
    vainfo: VA-API version: 1.21 (libva 2.21.0)
    vainfo: Driver version: Intel iHD driver for Intel® Gen Graphics - 24.2.1 (0593864)
    vainfo: Supported profile and entrypoints
    [...]


    client error when I try to play a movie

    Playback Error
    This client isn't compatible with the media and the server isn't sending a compatible media format.
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 15,375
    Threads: 10
    Joined: 2023 Jun
    Reputation: 460
    Country:United States
    #2
    2024-05-18, 06:46 PM
    For the device try just passing in /dev/dri instead of the specific device. This has worked for other users. No idea why it makes a difference.
    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]
    « 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