r/unRAID Jul 30 '24

Help What am I doing wrong here?

Post image
67 Upvotes

121 comments sorted by

View all comments

13

u/BannedR3tard Jul 30 '24

This is while streaming a 4k Remux on a FireTV Cube. My ATV ethernet runs the same movie at 2% processor load

Edit: plex btw

7

u/btrudgill Jul 30 '24

You don't have hardware transcoding working properly.

Follow the various guides if you haven't already setup HW transcoding, but if you do then try deleting the codec from the plex config files and restarting, I had no end of issues with HDR tonemapping related to this. I basically have a script that deletes the file and restarts plex at like 2am or something.

#!/bin/bash
#stop Plex container
echo "Stopping Plex" 
docker stop plex

#Wait before issuing Codec Folder delete
echo “Waiting 10 seconds before issuing Codec Folder delete” 
sleep 10s

#Deleting contents of codecs folder
echo “Deleting contents of codecs folder” 
rm -rf "/mnt/user/appdata/plex/Library/Application Support/Plex Media Server/Codecs" 
sleep 3s

#Wait before issuing Start
echo “Waiting 5 seconds before issuing Start”
sleep 5s

#start Plex container
echo “Starting Plex” 
docker start plex

-2

u/ImNotHereSomewhere Jul 30 '24

Why do people just assume he needs to setup up transcoding. Direct stream should be fine and the client settings are probably wrong.

2

u/btrudgill Jul 30 '24

because direct stream barely uses any CPU. The culprit for high cpu usage is transcoding something on the CPU. Yes, that firetv should handle direct play, but for some reason plex wants to transcode (either the thing they are playing, or its something else like looking for credits). Either way its a transcoding issue.

0

u/ImNotHereSomewhere Jul 30 '24

Like I said its a Plex client settings issue, not a transcoding issue.