Hello,
Is there, gui and/or command line, to have filebot rename episodes based on the season and disk number of a tv series?
I would like to use filebot to rename the episodfes in the folder Star Trek- Deep Space Nine s4d4 (1993–1999) with the correct episode and name.
The files in the folder are title_1, title_2, title_3, title_4.
When I use the episode feature of filebot, it suggest that the episodes are the first 4 episodes of season 4, and not episodes 12, 13, etc
I can get filebot to correctly identify the episodes if I rename them to s4e12, s4e13...
While this works, it is a manual, time consuming process, however once they are renamed, filebot saves a lot of time getting them renamed for media servers with correct episode name and format.
Is there a way, hopefully by the cli but also by the gui, to have filebot recognize the disk # and know and rename the episodes inside the folder?
Or is this not possible, as no database (TMDB, TVDB, etc) has the information about which episodes are on which disk/there are too many dvd releases of some tv shows to even attempt this?
Thanks
Filebot 5.03
installed via deb on Ubuntu 22.04
rename based on series title, season #, disk #
Re: rename based on series title, season #, disk #

e.g.
Console Output: Select all
$ filebot -list --db TheMovieDB::TV --q "Star Trek Deep Space Nine" --filter "s == 4" -rename -r .
[MOVE] from [s4d1_title_0.mkv] to [Star Trek Deep Space Nine - 4x01 - The Way of the Warrior (1).mkv]
[MOVE] from [s4d1_title_1.mkv] to [Star Trek Deep Space Nine - 4x02 - The Way of the Warrior (2).mkv]
[MOVE] from [s4d1_title_2.mkv] to [Star Trek Deep Space Nine - 4x03 - The Visitor.mkv]
[MOVE] from [s4d1_title_3.mkv] to [Star Trek Deep Space Nine - 4x04 - Hippocratic Oath.mkv]
[MOVE] from [s4d2_title_0.mkv] to [Star Trek Deep Space Nine - 4x05 - Indiscretion.mkv]
[MOVE] from [s4d2_title_1.mkv] to [Star Trek Deep Space Nine - 4x06 - Rejoined.mkv]
[MOVE] from [s4d2_title_2.mkv] to [Star Trek Deep Space Nine - 4x07 - Starship Down.mkv]
[MOVE] from [s4d2_title_3.mkv] to [Star Trek Deep Space Nine - 4x08 - Little Green Men.mkv]
[MOVE] from [s4d3_title_0.mkv] to [Star Trek Deep Space Nine - 4x09 - The Sword of Kahless.mkv]
[MOVE] from [s4d3_title_1.mkv] to [Star Trek Deep Space Nine - 4x10 - Our Man Bashir.mkv]
[MOVE] from [s4d3_title_2.mkv] to [Star Trek Deep Space Nine - 4x11 - Homefront (1).mkv]
[MOVE] from [s4d3_title_3.mkv] to [Star Trek Deep Space Nine - 4x12 - Paradise Lost (2).mkv]
...



EDIT:

Console Output: Select all
$ touch {1..26}.mkv && filebot -rename . --db file --format 's4d{((i+1)/4).round()}_title_{(i-1)%4}'
[MOVE] from [1.mkv] to [s4d1_title_0.mkv]
[MOVE] from [2.mkv] to [s4d1_title_1.mkv]
[MOVE] from [3.mkv] to [s4d1_title_2.mkv]
[MOVE] from [4.mkv] to [s4d1_title_3.mkv]
[MOVE] from [5.mkv] to [s4d2_title_0.mkv]
[MOVE] from [6.mkv] to [s4d2_title_1.mkv]
[MOVE] from [7.mkv] to [s4d2_title_2.mkv]
[MOVE] from [8.mkv] to [s4d2_title_3.mkv]
...