[DOCS] Linear Rename

How-to guides, frequently asked questions, not-so-obvious features, etc
Post Reply
User avatar
rednoah
The Source
Posts: 21746
Joined: 16 Nov 2011, 08:59

[DOCS] Linear Rename

Post by rednoah »

GUI:
Please watch Getting Started #2 and read Manual Matching for details.



CLI:
If the file listing (or input argument order) aligns naturally with the episode list, then you can use -list -rename to rename files / episodes in linear order, bypassing automatic matching (and any potential mismatches caused by misleading file names) altogether.

Image

e.g. Rename files and episodes in linear order:

Code: Select all

filebot -list --q Firefly --format {plex.name} -rename *.mp4
e.g. Rename files and episodes from Season 2 in linear order:

Code: Select all

filebot -list --q Alias --format {plex.name} --filter "s == 2" -rename *.mp4
e.g. Rename files and episodes in linear order using --filter to select a specific interval of episodes:

Code: Select all

filebot -list --q "The Daily Show" --filter "airdate >= /2007-01-08/" -rename -r .

e.g. Rename a movie file by numeric ID:

Code: Select all

filebot -list --db TheMovieDB --q 19995 -rename *.mp4
:idea: Please read the FAQ and How to Request Help.
Post Reply