Each of these containers does something completely different. The README has a section on each of them. I'm not sure what to add to that, but if you have a specific question, just ask and I'll answer. That said, the use case is in the name, that answers #1 and #2 for the most part, if you need the ...
i don't want it remember the match and consider the remembered match. There's no downside, as long as you use Revert to undo mistaken hardlink operations. That said, you can turn off xattr metadata via the configuration file. and can i edit .excludes file? for delete some folder i want to rename ...
i guess you updated your repo since but just change universal to stable :) There notably is a universal and stable repository. The stable repository exists for legacy reasons and provides an architecture-specific package for amd64 platforms only. The universal repository will work on all platforms ...
FileBot r10850 adds additional extension methods to take care of image caching / scaling / conversion because posting 2000x3000 images to the API is probably a bit much: def APPLICATION_TOKEN = '<YOUR APPLICATION TOKEN>'; def USER_KEY = '<YOUR USER KEY>'; { source, target, metadata -> if (type ...
Very nice! I'm happy to see users expand upon the examples and make new things. I've updated the Notify via Pushover example with my take on your ideas.
:idea: model allows you to access all bindings for all matches. :idea: The File source, File target, Object metadata trio are the parameters you get when using a closure the iterates over the model . In the context of such a closure, all bindings are also available. :arrow: The Hello World can serve ...
:?: Does anything change if you remove the net.filebot.glass.effect=false custom setting? :idea: The stack trace don't show any threads currently running any FileBot code, just UI framework code. That's strange considering it's supposed to be running the Prune Empty Folders code and be stuck there ...
FileBot r10846 fixes this particular issue. It was caused by FileBot not using all possible options as a failsafe when the likely matches come up empty due to low string similarity of query / series name. Thank you for reporting the issue.
:idea: DSM will store all the additional information into the @eaDir folder: $ find . ./@eaDir/Alias - S01E01 - Truth Be Told.mkv@SynoEAStream ./@eaDir/Alias - S01E01 - Truth Be Told.mkv@SynoResource ./@eaDir/Alias - S01E01 - Truth Be Told.mkv/SYNOINDEX_MEDIA_INFO ./Alias - S01E01 - Truth Be Told ...
:?: What does System Information say? :idea: Please run filebot from console and then press CTRL+BREAK or CTRL+SHIFT+PAUSE (see Capturing a Java Thread Dump ) on your keyboard (while the console window is in focus) when FileBot is stuck. That'll print stack traces and tell us exactly where FileBot ...
:idea: "series" and "TV shows" are usually the same thing. What exactly are you trying to do? What exactly are you struggling with? Feel free to include sample file paths as text so that we can see what you can see. :?: What have you tried? What did the console output say? (the console output is the ...
:idea: I've created sample files and I cannot reproduce the Nirvana in Fire {tmdb-64197} issue: [TEST] from [/input/Art/Entertainment/Anime/TV Series/([email protected]) Spy x Family (2022-2023)/01 - ([email protected]) Spy x Family 1st (2022)/Spy x Family 1st (2022) EP-23.mkv] to ...
I mean the complete console output, not just the command. Like this. If I have the console output as text, then I can copy & paste the input file paths, recreate your use case with empty files, and run tests.
Yes, the Configure Thai fonts settings will be available in the next release. We are looking into automatically switching fonts depending on the characters at hand, but that might be tricky to do efficiently or without downsides as it's not necessary for the vast majority of users. EDIT: :idea: You ...
I ran tests with filebot-xpra and can confirm that Thai fonts don't work by default. Installing the fonts-thai-tlwg packages makes Thai character show up correctly. We'll add that package to the list of packages installed by default for our filebot-xpra container.
f.dir.dir is simply "the parent folder of the parent folder of the file at hand" and that's it. If the file at hand is X:/A/B/C/D.txt then: f = X:/A/B/C/D.txt f.dir = X:/A/B/C f.dir.dir = X:/A/B f.dir.dir.dir = X:/A :idea: Your custom format therefore assumes a certain file structure. If the "the ...
You could add {f.dir.dir} to the beginning of your format to generate exactly the absolute target file path you want. Note that you will also need to enable Import companion files if you want to process folders like “Featurettes” alongside their corresponding movie file. Note that you can also exp ...