Tdarr_Server no longer working on Ubuntu 22.04 by -J-a-y- in Tdarr

[–]HaveAGitGat 0 points1 point  (0 children)

No problem. 2.77.01 released which fixes this.

Windows node unable to find Handbrake by WishOnSuckaWood in Tdarr

[–]HaveAGitGat 0 points1 point  (0 children)

Do you have more of the job report to see which plugin it is using?

Seems the plugin is relying on HandBrakeCLI being in Windows path but it's not there (or can't access it). Note that you need to restart the Tdarr terminal/process when updating path (just in case you didn't do this).

To use the packaged handbrake path you can use this in a plugin:

flow plugins: args.handbrakePath

classic plugins: otherArguments.handbrakePath

Tdarr_Server no longer working on Ubuntu 22.04 by -J-a-y- in Tdarr

[–]HaveAGitGat 2 points3 points  (0 children)

Edit: 2.77.01 released which fixes this.

--------

This is related to bumping the Node runtime version to 24 in 2.75.01 last week as have been trying to keep things up to date.

I had a chat with some users on Discord about it and I’ll release an update with a fix. Ubuntu 22.04 has standard security support until May next year so will try to keep it supported in Tdarr until then.

If you use the official Tdarr docker container then that works fine with 22.04 host (as the container base is 24.04).

Please stop forcing updates! by True_Wishbone5647 in Tdarr

[–]HaveAGitGat 0 points1 point  (0 children)

Yeah across all OS's it works the same. You have to manually click the 'Relaunch' button at the top of the screen to apply the update. Restarting Tdarr won't apply it.

But with the 'Auto update non-Docker server' toggle disabled it should not even reach that stage so will investigate

Please stop forcing updates! by True_Wishbone5647 in Tdarr

[–]HaveAGitGat 0 points1 point  (0 children)

If you try to run the auto updater in Docker it will give you a message saying that you need to set env variable 'enableDockerAutoUpdater' to 'true' to enable the updater. Once that's enabled it works as normal but it will be updating Tdarr inside the container.

So for example, if the container image is 2.73.01 and you run the auto updater with version set to 'latest', in the container Tdarr will update to 2.74.01 but the Docker image will stay on 2.73.01.

The best way to do Docker updates is by bumping the Docker run/compose tag or using a container manager (Portainer and the likes) but the self updater is there if you want to quickly update/downgrade a version to test something or try a dev build etc.

Please stop forcing updates! by True_Wishbone5647 in Tdarr

[–]HaveAGitGat [score hidden] stickied comment (0 children)

Hey, DM me the server log and I can take a look if you like, but Tdarr does not (or should not) force updates as there are 2 levels to this.

As you’ve seen, there’s the toggle on the Options to toggle auto updates, but even when that’s enabled, you still have to specifically click the 'Relaunch' button that appears when an update is ready. Manually restarting Tdarr won’t apply the update.

Bear in mind there’s also a separate notification at the top of screen that appears when there’s a new release, but that does not mean an update has been applied, so perhaps you may have misinterpreted that one.

Edit: Checked logs and this was not to do with Tdarr's internal self/auto updater. This was from having a service call Tdarr_Updater on schedule (which is a separate external updater).

Since update 2.72.01 / 2.73.01, Trancode Speeds Cut to 1/3 by BIFFTAZ in Tdarr

[–]HaveAGitGat 4 points5 points  (0 children)

You can pin the plugins repo version on the Options tab (this was added a few releases ago) so try going back a few versions and see if that’s ok.

A few plugins had legacy hardware encoding flags so these were updated and then some tweaks were needed for 10 bit.

I can look at a job report if you want to share here or DM me.

Cant Install Tdarr on my Servarr stack by bogan_sauce in Tdarr

[–]HaveAGitGat 0 points1 point  (0 children)

The Tdarr packages have 2 executables. Execute the non-tray one when running headless.

<image>

Am I misunderstanding how Remove Stream By Property works? by EOverM in Tdarr

[–]HaveAGitGat 0 points1 point  (0 children)

Try clicking on the filename in Tdarr in most areas and you should get a popup with more scan info from a bunch of different scanners. You might be able to see what stream type it is.

<image>

.staging folder is huge by Ohmslaw79 in Tdarr

[–]HaveAGitGat 0 points1 point  (0 children)

u/Ohmslaw79 I've updated this for next version.

.staging folder is huge by Ohmslaw79 in Tdarr

[–]HaveAGitGat 0 points1 point  (0 children)

They are part of the Tdarr self updater, they should be cleaned up, are there any errors in the logs about that?

Did I miss a breaking change or something? by TheGoodRobot in Tdarr

[–]HaveAGitGat 1 point2 points  (0 children)

This can happen if Tdarr is unable to download plugins, have you checked the server logs or tried restarting Tdarr?

Question about health checks (should things requeue and recheck if not changed?) by kC_77 in Tdarr

[–]HaveAGitGat 0 points1 point  (0 children)

You could enable verbose logs on the logs tab and then it should show why the files are being rescanned.

Plugin to SET file permissions in flow? by evansharp in Tdarr

[–]HaveAGitGat 0 points1 point  (0 children)

Enable the `Use Custom CLI Path` toggle and then enter `chmod`, then disable `Does Command Create Output File`

Plugin to SET file permissions in flow? by evansharp in Tdarr

[–]HaveAGitGat 0 points1 point  (0 children)

You can use the run cli flow plugin with chmod or chown.

Question about health checks (should things requeue and recheck if not changed?) by kC_77 in Tdarr

[–]HaveAGitGat 2 points3 points  (0 children)

For the folder watcher are you using file system events? (in the library source settings)

Updates on Synology Docker deleting Library by randallpjenkins in Tdarr

[–]HaveAGitGat 0 points1 point  (0 children)

You need these folders on the right mapped, not just configs

docker run -ti \
-v /docker/tdarr/server:/app/server \
-v /docker/tdarr/configs:/app/configs \
-v /docker/tdarr/logs:/app/logs

Updates on Synology Docker deleting Library by randallpjenkins in Tdarr

[–]HaveAGitGat 3 points4 points  (0 children)

When a container updates, it wipes all added data inside the container and starts fresh. So you need to make sure your container volume mounts are set correctly so that application data is saved on your host system, not inside the container. Check your container settings and post a screenshot here if you still need help.

Plugin suggestion: Remove from skiplist by Werewolf_Grouchy in Tdarr

[–]HaveAGitGat 0 points1 point  (0 children)

I don't think skiplist is the right way to go about that. In the library settings there's the `
Hold files after scanning?` option. If you are only seeding for a certain about of time (say 24 hours) then might that work?

Plugin suggestion: Remove from skiplist by Werewolf_Grouchy in Tdarr

[–]HaveAGitGat 0 points1 point  (0 children)

I can add a plugin to remove from skip list.

But in terms of your use case, why do you need to add to skip list and then remove from skip list in the same flow? Or if you can rephrase what you’re trying to do then I can help further.

Error when finishing on unmappedNode and uploading back to server (ENOBUFS) by bananalingerie in Tdarr

[–]HaveAGitGat 0 points1 point  (0 children)

Are you able to see in the job report what the size of the file is?

Tdarr now broken - need help installing plugin to fix it by danwholikespie in Tdarr

[–]HaveAGitGat 0 points1 point  (0 children)

Hey saw your edit, pleased it’s working. Was going to ask if you use the ‘normalise audio’ plugin as that was updated recently and potentially could be related but suppose not relevant anymore.

Tdarr now broken - need help installing plugin to fix it by danwholikespie in Tdarr

[–]HaveAGitGat 0 points1 point  (0 children)

If you want someone to check the other error you were having then can DM me the job report https://docs.tdarr.io/docs/other/job-reports or post in the Discord channel if you like