Request for specifying tmdb id for specified folder
Request for specifying tmdb id for specified folder
When dealing with directories of certain TV series where the naming conventions are non-standard, it becomes challenging to modify filenames due to requirements like seeding in private trackers (PT). Consequently, using FileBot's automatic matching may result in incorrect episode associations. So, I hope that one can enforce matching to a user-specified TV series by specifing the TMDb ID directly in command line for certain folders. This approach will facilitates automated updates for each episode without altering the original filenames.
Re: Request for specifying tmdb id for specified folder
You'll want to not move / rename files that are in use by another application. You'll want to use hardlinks so that you can have the same file at 2 or more file paths without using any additional disk space.

You can call different commands for different files or folders. See How do I process specific files with specific command-line options? for details and examples.
e.g. select files that have Alias in the file path and then match these files with TheTVDB and then move them to a dedicated /tvdb output folder:
Shell: Select all
filebot -rename -r /input --output /tvdb --format "{plex.id}" --db TheTVDB --file-filter "f =~ /Alias/" --q 75930

Re: Request for specifying tmdb id for specified folder
--q ID is just what I want!
Thank you very much!
By the way, in my case I use symlink instead of hardlink.
Thank you very much!
By the way, in my case I use symlink instead of hardlink.