Giter Site home page Giter Site logo

Comments (13)

interkelstar avatar interkelstar commented on June 3, 2024 1

I'm sorry I don't know but it seems related to related to the container more than the addon which is just a shell. Perhaps you could try posting on the container repo my addon is based : https://github.com/linuxserver/docker-plex/issues

I've tried and got following
linuxserver/docker-plex#372

Actually, I followed the suspiction and set up Plex server on pure docker, using portainer and without this addon. And I can confirm that there were no such error messages in the logs when I tried the same thing (hardware transcoding) on the same machine. So it is somehow an addon issue after all

(clear logs from portainer plex setup)

[migrations] started
[migrations] no migrations found
usermod: no changes
───────────────────────────────────────
      β–ˆβ–ˆβ•—     β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β–ˆβ–ˆβ•— β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•— 
      β–ˆβ–ˆβ•‘     β–ˆβ–ˆβ•”β•β•β•β•β•β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•”β•β•β•β–ˆβ–ˆβ•—
      β–ˆβ–ˆβ•‘     β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•‘   β–ˆβ–ˆβ•‘
      β–ˆβ–ˆβ•‘     β•šβ•β•β•β•β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•‘   β–ˆβ–ˆβ•‘
      β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•‘β–ˆβ–ˆβ•‘β•šβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•”β•
      β•šβ•β•β•β•β•β•β•β•šβ•β•β•β•β•β•β•β•šβ•β• β•šβ•β•β•β•β•β• 
   Brought to you by linuxserver.io
───────────────────────────────────────
To support LSIO projects visit:
https://www.linuxserver.io/donate/
───────────────────────────────────────
GID/UID
───────────────────────────────────────
User UID:    911
User GID:    911
───────────────────────────────────────
**** Server already claimed ****
#######################################################
# Update routine will not run because you havent set  #
# the VERSION variable or you opted out of updates.   #
#          For more information checkout :-           #
#    https://github.com/linuxserver/docker-plex       #
#######################################################
[custom-init] No custom files found, skipping...
Starting Plex Media Server. . . (you can ignore the libusb_init error)
[ls.io-init] done.
Critical: libusb_init failed
Dolby, Dolby Digital, Dolby Digital Plus, Dolby TrueHD and the double D symbol are trademarks of Dolby Laboratories.

from hassio-addons.

alexbelgium avatar alexbelgium commented on June 3, 2024

Hi, it could be due to the version of the mesa drivers that you have, you could try to create a file named "/config/addons_autoscripts/plex-nas.sh" with the content below and restart

if command -v "apk" &>/dev/null; then
  apk add --no-cache mesa-dri-vc4 mesa-dri-swrast mesa-gbm xf86-video-fbdev >/dev/null
elif command -v "apt" &>/dev/null; then
  apt-get update && apt-get install -yqq -- *mesa* >/dev/null
fi

from hassio-addons.

interkelstar avatar interkelstar commented on June 3, 2024

I tried this but still the same error every time I open a video file and enable conversion while HW transcoding is on.

/data/jenkins/conan_build/1112346209/conan/.conan/data/libdrm/2.4.115-1/plex/stable/build/42eba9224a0a19c9b983c233343e5610c7362833/meson-install/share/libdrm/amdgpu.ids: No such file or directory
/data/jenkins/conan_build/1112346209/conan/.conan/data/libdrm/2.4.115-1/plex/stable/build/42eba9224a0a19c9b983c233343e5610c7362833/meson-install/share/libdrm/amdgpu.ids: No such file or directory
amdgpu: The CS has been rejected (-22), but the context isn't robust.
amdgpu: The process will be terminated.
****** PLEX MEDIA SERVER CRASHED, CRASH REPORT WRITTEN: /config/Library/Application Support/Plex Media Server/Crash Reports/1.32.5.7349-8f4248874/PLEX MEDIA SERVER/dc089b53-1bf0-4c7b-d3d1d28b-a0ec89bf.dmp
Starting Plex Media Server. . . (you can ignore the libusb_init error)
/data/jenkins/conan_build/1112346209/conan/.conan/data/libdrm/2.4.115-1/plex/stable/build/42eba9224a0a19c9b983c233343e5610c7362833/meson-install/share/libdrm/amdgpu.ids: No such file or directory
/data/jenkins/conan_build/1112346209/conan/.conan/data/libdrm/2.4.115-1/plex/stable/build/42eba9224a0a19c9b983c233343e5610c7362833/meson-install/share/libdrm/amdgpu.ids: No such file or directory
amdgpu: The CS has been rejected (-22), but the context isn't robust.
amdgpu: The process will be terminated.

dc089b53-1bf0-4c7b-d3d1d28b-a0ec89bf.dmp.log

Home Assistant OS in the only OS on my thin client. No special settings for drivers or drivers installations were made.

from hassio-addons.

alexbelgium avatar alexbelgium commented on June 3, 2024

I'm sorry I don't know but it seems related to related to the container more than the addon which is just a shell. Perhaps you could try posting on the container repo my addon is based : https://github.com/linuxserver/docker-plex/issues

from hassio-addons.

alexbelgium avatar alexbelgium commented on June 3, 2024

Thanks that’s strange… Alas I don't have an AMD gpu so can't replicate. I tried looking on Google but the only things I read were related to versions of the mesa driver... I'll continue looking when I'll have time thanks!

from hassio-addons.

interkelstar avatar interkelstar commented on June 3, 2024

Thanks for lloking into it, let me know if I can be of any help!

from hassio-addons.

github-actions avatar github-actions commented on June 3, 2024

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

from hassio-addons.

alexbelgium avatar alexbelgium commented on June 3, 2024

Not stale, but no idea

from hassio-addons.

interkelstar avatar interkelstar commented on June 3, 2024

Mee too, othen then maybe somehow some config from original docker image is missing or it's different in some way.
Can confirm that still able to see this log on the most recent add-on version.
Maybe investigate differences between add-on docker container and pure plex docker container (for example installed through portainer)?..

from hassio-addons.

github-actions avatar github-actions commented on June 3, 2024

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

from hassio-addons.

alexbelgium avatar alexbelgium commented on June 3, 2024

Not stale, hadn't time

from hassio-addons.

alexbelgium avatar alexbelgium commented on June 3, 2024

Hi, you could try to paste this code in "/config/addons_autoscripts/plex-nas.sh" and restart

#!/bin/bash

if command -v "apk" &>/dev/null; then
  apk add --no-cache mesa-dri-vc4 mesa-dri-swrast mesa-gbm xf86-video-fbdev >/dev/null
elif command -v "apt" &>/dev/null; then
  apt-get update && apt-get install -yqq -- *mesa* >/dev/null

mkdir -p /data/jenkins/conan_build/1112346209/conan/.conan/data/libdrm/2.4.115-1/plex/stable/build/42eba9224a0a19c9b983c233343e5610c7362833/meson-install/share/libdrm

pattern="$(find / -name amdgpu.ids 2>/dev/null)"
files=( $pattern )
cp "${files[0]}" /data/jenkins/conan_build/1112346209/conan/.conan/data/libdrm/2.4.115-1/plex/stable/build/42eba9224a0a19c9b983c233343e5610c7362833/meson-install/share/libdrm/

from hassio-addons.

github-actions avatar github-actions commented on June 3, 2024

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

from hassio-addons.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.