• 0 Posts
  • 17 Comments
Joined 1 year ago
cake
Cake day: June 20th, 2023

help-circle
  • I tried it but it doesn’t seem to work for me correctly or maybe I am doing something wrong. I patch the YouTube app and install it but as soon as I close and open it, all the changes made by the patch are apparently gone. Shorts that are hidden on the first start after the patch are visible again, ads seem to be reduced but still happen occasionally.

    I disabled the default YouTube app, gave the patched version a different name, disabled auto update, repatched it but nothing seems to stick after opening it again.

    And then the whole “I have to download the apk so that I can use it” because I don’t have rooted my phone is just inconvenient.

    I stick with my yt-dlp server and Plex instead.


  • The health check that Tdarr can do depend on what health check you select, the “quick” health check will only check the file headers. This probably won’t find any video corruption unless the file headers are corrupted or invalid.

    The thourough health check will basically do a transcode of the input file without an output. This is being used to run and check each single frame of the file and “process” it without actually producing an output. https://trac.ffmpeg.org/wiki/Null

    Would this screw with plexs own traditional transcoding?

    No, Plex and Tdarr are two completely different things.

    Transcoding is not some universal thing but rather a term to describe what is happening. In general “transcoding” means that you convert something from one format into another.

    When you use the processing pipeline through Tdarr, it would detect a file in your library and run it through your specified pipeline. Depending on what you want to do with the file and how the pipeline is configured, it might or might not do anything with that specific file. When you, for example, configure that you want any file that has a video stream that isn’t encoded with HEVC to be HEVC then a H.264 file would then be transcoded.

    This is on a “replacement” bases, so any file you run through this would replace the existing file in your library. Meaning: you have a H.264 file before tdarrs processing and after it is finished, you have the file with HEVC as video stream.

    With the health check, as explained above, this is a bit different since you don’t have an ouput file, there is also no replacement happening. It is just a “check” that the file can be transcoded in its entirety (with a thourough health check).

    When Plex transcodes something, this is done “on the fly”. This means that it only transcodes the current file in your library.

    Technically, tdarr could “screw” with the Plex transcoder when Tdarr processes a file while you yourself watch the same file that is then transcoded by plex. When Tdarr is finished, it would replace the file which then could throw off the Plex transcoder. But this is very rare or non existent and you could even configure tdarr to do those things only at a certain time and it wouldn’t happen with health checks. as someone who runs both, I have yet to come across something like this.

    Or does it attempt to repair a file by transcoding

    As the name suggests, health checks are only “checking” if the file is healthy, there is nothing being repaired here. While you might be able to repair the file header, a corrupted video or audio is not something you can repair because of missing information. But that is nothing that Tdarr will do anyway, it just verifies/checks if it is healthy or not.


  • From the very low amount of information, there isn’t much to go by so the usual would have to be checked.

    OP should definitely use the new agents, again, anything other than the official agents are unsupported and shouldn’t be used unless you use a specific metadata agent for a specific source. If that is tmdb, tvdb or imdb then the new agents will work just as fine if not better.

    Then the usual suspects would need to be checked. Naming convention being followed, content not being merged into other episodes etc.

    So if the new season is not appearing inside the show, it either wasn’t detected because of the file naming or merged with some other content (filter -> duplicates).

    Without any further information, there is very little to speculate further


  • A bit of clarification here because this is a mistake I have seen too many make.

    The first thing is that You should only use the Plex Series and Plex Movies Agent. They are the official and up-to-date Agents that you need. All other Metadata Agents like TheTVDB and TheMovieDB are outdated and unmaintained. The new Metadata Agents are also faster than the old ones, Unless you use some specific 3rd Party Agents, the Plex Series and plex Movies Agent are more than enough for you because they get their metadata from watch.plex.tv which aggregates them from TheMovieDB, TheTVDB and IMDB.

    When you use those agents, you only configure them through the Advanced Section in your library. The “Agents” Section in your Plex Server Settings is absolutely meaningless for those new and official Agents because the Agents listed there are based on the old Metadata Agent system written in Python (IIRC the new ones are written in C++ like the rest of Plex).

    Also, that Agent section is based on a Priority list, not on an “override” list. This means that the list is being processed from Top to bottom, each agent in that list will provide their own metadata and write that to the Library item but it will only add metadata that doesn’t already exist yet. This means that if the first metadata agent provides a Synopsis for the library item, the next Agent will not override it.

    So, with the new Metadata Agents, there is nothing to override and the Agent section can be completely ignored. Only when you use 3rd party metadata Agents, this section would be of interest to you.

    Source: I am the developer of the MyAnimeList Metadata Agent for Plex.




  • Unraid “supports” docker compose. You can install and use it but you won’t be able to utilize how unraid handles docker containers.

    All that unraid does is make docker more accessible for the normal user. In the end the container template constructs a docker run command.

    So you could use portainer to manage stacks through a webui or install compose and have to SSH into the unraid server all the time.


  • I had the pleasure recently to create an ffmpeg command to transcode a video into HEVC 10bit with quicksync.

    I had tha previously running completely fine on my Nvidia GPU. You would think that it would just be replacing the parameter which device or hardware acceleration to use.

    Yeah, turns out that there are like 4 ways to set the quality value of the transcoded output, CRF didn’t work for some reason with quick sync so you need to use global quality or something. I spend days on this trying to figure this out, DAYS.

    It is a very powerful tool but every time I have to use it, it is too complicated and I have to spend hours or days to get it working.


  • If you look at your library it shows you what they currently use and you can even set which you want as default.

    yeah, can’t say that this is the case. Since the Metadata Agent would be responsible for requesting and adding metadata to your library items it would be set to the Official Plex Metadata Agents, since this is specifically for Movie Artworks, this would then only apply to the Plex Movie Metadata Agent.

    But nowhere is any mention of where that metadata is coming from. Since I already wrote my own Metadata Agent and have some experience with it I know that the metadata is coming from watch.plex.tv as the metadata aggregator. I also know that movie-related Metadata is coming from TheMovieDB or IMDB.

    You can specifically define that you want metadata from any of the sources if your “force match” the related source through the {tvdb-110381} on your folders. But not in the agent settings itself.

    For TV Shows this is somewhat different because you can specifically select the Episode ordering to either TVDB or TMDB. By default, and from my tests, everything is coming from TheMovieDB unless otherwise specified.

    I am curious where you did see that…

    But, again, the point is to make this more clear what the origin is because I have had multiple instances in which I had to do some detective work telling a user where that incorrect metadata is coming from because all they see is some wrong metadata in their library that someone maliciously changed on on TVDB, IMDB or TMDB.




  • I am pretty sure I have disabled this as well but I am not sure about the “set everything to private”. I know I have seen this recently but I cannot find it anywhere so it isn’t that easy to find, at least for me right now.

    On the other hand, even if I would set that family and friends could see my watch history, I would still have to have some assumptions about what is shared and what is not and how that is being accessed. There is a huge difference between “they can see everything that I have watched regardless of whether they have access to the library or not” and, more importantly getting notified about what I have watched or they have to go to some UI element or browser to see what a user has played.



  • This is the same problem/argument you have with the argument/perception of planes being unsafe.

    In 2022 almost 43000 people died in “motor vehicle traffic crashes”. And yet many believe that Planes are much more dangerous to use than cars because hundreds of people die all at once in a Plane crash.

    A Plane crash is automatically a sensation, something that doesn’t happen every day but a car accident happens every day but this isn’t reported as much because it is already a daily routine.

    The same goes with the “Coal kills more than nuclear” argument which is even less likely to be grasped by the normal population.

    I mean just look at the climate change denier who say “but it is snowing so climate change isn’t real” while at the same time complaining that each summer is so incredibly hot.

    All of those things are so incredibly complex that the vast majority can’t understand and outright deny them because they read/heard somewhere that they actually can understand, that it is a hoax. I mean, I wouldn’t count myself to the people that understand climate change but I can understand that it will have a drastic impact on our lives if this goes on.


  • There is a very helpful link that I will link below that shows stats of what some Nvidia Cards are capable of.

    Though, as with everything “transcoding 4K related” would be, WHY? Why would you go through the trouble to store 4K content and then be okay with letting that high quality be transcoded to either a lower bitrate, resolution or even different codecs? All you do in those cases is affect the quality which you specifically want with 4K content. An alternative, 1080p version would not even take that much storage space from you and eliminate the transcoding requirements.

    Transcoding should be the backup that should be used to make a video playable if any other attempt or way failed, it should NOT be the standard.

    https://www.elpamsoft.com/?p=Plex-Hardware-Transcoding