endiz

Members
  • Posts

    60
  • Joined

  • Last visited

Converted

  • Gender
    Undisclosed

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

endiz's Achievements

Rookie

Rookie (2/14)

3

Reputation

  1. Ok, I did think I was pushing the limits of my 450w PSU. I'll replace it and change up the sata cables. Thanks! *Update* replaced PSU and SATA cables just in case, so far so good. Thanks @JorgeB
  2. Time to replace SSD? This happened when I had very high IOPS going. Attached diagnostics. endizraid-diagnostics-20240111-2259.zip
  3. Thanks squid. I do have a display that supports HDR & DV, and it looks great. But if i'm watching on a non-hdr screen remotely (e.g. cell phone), it says it's transcoding but the tone mapping is off with the strange green tint mentioned above. Anyways, i think it's a plex issue so i posted in their forums. I'll post back if i come across a solution.
  4. Is hdr tone mapping broken? I have hw transcoding enabled with an Nvidia gpu. I know it's working as I see transcoded files encoding and decoding in hw. But when I watch an hdr film on a non hdr display that requires transcoding, I get a green tint. See screenshot attached.
  5. Using this method, is it possible to route specific internet destined traffic from a client in Network-1 to Network-2 using static routes?
  6. To answer my own question, looks like plex now requires nvidia drivers 450.66 and up for NVENC to work. Looks like i'll have to wait for 6.9.0 to go stable before updating my drivers.
  7. Anyone having issues with encoding not working anymore? Both NVENC & NVDEC used to work great, but all of a sudden my server is only using NVDEC, not NVENC. I'm running unraid 6.8.3 with nvidia drivers 440.59.
  8. Can you add progress? It's a great little tool that tracks coreutils (cp, mv) progress! https://github.com/Xfennec/progress
  9. try this: docker exec plex ./config/Library/Application\ Support/Plex\ Media\ Server/nvidia_dec.sh I would make a backup of the original plex transcoder binary just in case you overwrite it by accident, that way you don't have to rebuild your docker image.
  10. try this in the container: chmod +x /config/Library/Application\ Support/Plex\ Media\ Server/Plex\ Transcoder
  11. Can you post the output of cat for both Plex Transcoder & Plex Transcoder2?
  12. For the copy, sure.. but not for the original binary.
  13. Well that wouldn't work since you still need the original Plex Transcoder binary... But this gave me a good idea. Outside of the container, I put the new transcoder binary in "/mnt/cache/appdata/plex/Library/Application Support/Plex Media Server" (/config/ in the container) and created another script to automate the move. root@endiZRaid:/mnt/cache/appdata/plex/Library/Application Support/Plex Media Server# cat Plex\ Transcoder #!/bin/sh /usr/lib/plexmediaserver/Plex\ Transcoder2 -hwaccel nvdec "$@" root@endiZRaid:/mnt/cache/appdata/plex/Library/Application Support/Plex Media Server# cat nvidia_dec.sh #!/bin/sh mv /usr/lib/plexmediaserver/Plex\ Transcoder /usr/lib/plexmediaserver/Plex\ Transcoder2 cp /config/Library/Application\ Support/Plex\ Media\ Server/Plex\ Transcoder /usr/lib/plexmediaserver/ Now I just have to execute it each time the docker updates..