jellyfin configuration in lxc container

Jellyfin is extremely useful software providing home streaming system. I am using it since a while for streaming my old ripped DVD, which I love to watch again and again. Jellyfin is opensource, cross platform as a server and as a client, including client for android and iOS. It is optimising network (in compression to media player using shared network disk), providing very good image quality and not less important – playlist organisation within your library.

If you are interested in more details check out: https://en.wikipedia.org/wiki/Jellyfin

I am using jellyfin inside lxc container, which is very convenient (in case of keeping clean state of my computer) but usage in it comes with few challenges with graphic card hardware acceleration.

Good description on how to deal with such scenarios can be found: https://forum.jellyfin.org/t-unable-to-configure-transcoding-on-jellyfin-running-on-a-proxmox-lxc-container

In summary few steps

Check the device you can use in your /dev/dri directory main operating system. In my example it is /dev/dri/renderD128 (old i915 intel graphics card)

In case of using cgroup2, to your lxc container config file add the following

    lxc.cgroup2.devices.allow = c 226:0 rwm
    lxc.cgroup2.devices.allow = c 226:128 rwm
    lxc.mount.entry = /dev/dri/renderD128 dev/dri/renderD128 none bind,optional,create=file

    In case of using cgrop (ver1), use the add the following:

    lxc.cgroup.devices.allow = c 226:0 rwm
    lxc.cgroup.devices.allow = c 226:128 rwm
    lxc.mount.entry = /dev/dri/renderD128 dev/dri/renderD128 none bind,optional,create=file

    Alternatively, the last line can be replaced by:

    lxc.mount.entry = /dev/dri dev/dri none bind,optional,create=dir

    Check if render group has the same gid on main system and inside the lxc container.
    Now, install in the container needed software, in my case of intel graphics card and debian12 it was:

    • curl
    • gnupg
    • id3v2
    • intel-opencl-icd
    • intel-media-va-driver
    • i965-va-driver
    • vainfo
    • xvfb
    • i915
    • xserver-xorg-video-intel
    • firmware-linux-free
    • firmware-linux-nonfree

    Follow the steps to install jellyfin: https://jellyfin.org/docs/general/installation/linux/, with script “curl https://repo.jellyfin.org/install-debuntu.sh | sudo bash” or using extrepo “sudo apt install extrepo
    sudo extrepo enable jellyfin” or in debian:

    • mkdir -p /etc/apt/keyrings
    • curl -fsSL https://repo.jellyfin.org/jellyfin_team.gpg.key | sudo gpg --dearmor -o /etc/apt/keyrings/jellyfin.gpg
    • apt update && apt install jellyfin

    Add group video and render to your jellyfin user. Also make sure the video belongs to jellyfin user (for simplification, jellyfin can manage those video like deleting it when not needed from GUI).

    Check the configuration

    /usr/lib/jellyfin-ffmpeg/vainfo --display drm --device /dev/dri/renderD128
    Trying display: drm
    libva info: VA-API version 1.22.0
    libva info: Trying to open /usr/lib/jellyfin-ffmpeg/lib/dri/iHD_drv_video.so
    libva info: Found init function __vaDriverInit_1_22
    libva error: /usr/lib/jellyfin-ffmpeg/lib/dri/iHD_drv_video.so init failed
    libva info: va_openDriver() returns 1
    libva info: Trying to open /usr/lib/jellyfin-ffmpeg/lib/dri/i965_drv_video.so
    libva info: Found init function __vaDriverInit_1_22
    libva info: va_openDriver() returns 0
    vainfo: VA-API version: 1.22 (libva 2.22.0)
    vainfo: Driver version: Intel i965 driver for Intel(R) Haswell Mobile - 2.4.0.pre1 ()
    vainfo: Supported profile and entrypoints
          VAProfileMPEG2Simple            :	VAEntrypointVLD
          VAProfileMPEG2Simple            :	VAEntrypointEncSlice
          VAProfileMPEG2Main              :	VAEntrypointVLD
          VAProfileMPEG2Main              :	VAEntrypointEncSlice
          VAProfileH264ConstrainedBaseline:	VAEntrypointVLD
          VAProfileH264ConstrainedBaseline:	VAEntrypointEncSlice
          VAProfileH264Main               :	VAEntrypointVLD
          VAProfileH264Main               :	VAEntrypointEncSlice
          VAProfileH264High               :	VAEntrypointVLD
          VAProfileH264High               :	VAEntrypointEncSlice
          VAProfileH264MultiviewHigh      :	VAEntrypointVLD
          VAProfileH264MultiviewHigh      :	VAEntrypointEncSlice
          VAProfileH264StereoHigh         :	VAEntrypointVLD
          VAProfileH264StereoHigh         :	VAEntrypointEncSlice
          VAProfileVC1Simple              :	VAEntrypointVLD
          VAProfileVC1Main                :	VAEntrypointVLD
          VAProfileVC1Advanced            :	VAEntrypointVLD
          VAProfileNone                   :	VAEntrypointVideoProc
          VAProfileJPEGBaseline           :	VAEntrypointVLD
    

    also check output of

    /usr/lib/jellyfin-ffmpeg/ffmpeg -v verbose -init_hw_device vaapi=va: /dev/dri/renderD128 -init_hw_device opencl@va

    No Comments

    Leave a Reply

    Your email address will not be published. Required fields are marked *

    This site uses Akismet to reduce spam. Learn how your comment data is processed.

    Linux
    podcast

    All podcast applications I have tested were quite OK(ish) – but I have always struggled with organizing podcasts, creating playlists, etc. It has always been challenging. Therefore, for me, it is more convenient to download podcasts as MP3s and manage them myself (in VLC, for example). There are many ways to do that, but my favorite …

    Linux
    Various helpful Linux commands for file manipulations

    Change file name for all files that contains “[any text]” substring to the same name without that.

    Free(BSD)
    Linux text manipulation

    This article will grow over time Definition Command 1 Remove all comments including empty line (comments with ; and # like in samba.conf) egrep -v ‘^[[:space:]]*$|^ *#|^ *;’ /etc/samba/smb.conf 2 Find all file with some extension and remove it one by one; works for gnu xargs; 0 argument to properly …