Page 1 of 1

Match Multi-Episodes (Double)

Posted: 13 Feb 2021, 10:05
by GeorgeAl
Hello, did filebot support multi (double) episode renaming?

Etc I would like to rename this file from Johnny Test - Johnny to the Center of the Earth - Johnny Test - 1x01 & 1x02 - Johnny X TO Johnny to the Center of the Earth - Johnny X.

Many thanks for considering my request.

Re: Match Multi-Episodes (Double)

Posted: 13 Feb 2021, 14:04
by rednoah
Yes. FileBot does support Multi-Episode renaming.

Re: Match Multi-Episodes (Double)

Posted: 13 Feb 2021, 17:23
by GeorgeAl
Ok...thank you. Do you care to indulge me with the code?
I use this :

{n.replaceTrailingBrackets()} ({episodelist.airdate.year.bounds().join ('-')}) /Season {s} ({episodelist.findAll{it.season == s}.airdate.year.min()}) / {n} - {sxe} - {t}

Without any real results.

Re: Match Multi-Episodes (Double)

Posted: 14 Feb 2021, 02:41
by rednoah
{sxe} and {t} are capable for Multi-Episode formatting:

Code: Select all

filebot -rename *.mkv --db TheTVDB --format "{n} - {sxe} - {t}" --action TEST --log INFO
[TEST] from [Johnny Test - 1x01 & 1x02.mkv] to [Johnny Test - 1x01-02 - Johnny to the Center of the Earth & Johnny X.mkv]
:idea: Note that MultiEpisode formatting relies on the file being auto-detected as MultiEpisode object in the first place.

Re: Match Multi-Episodes (Double)

Posted: 14 Feb 2021, 08:07
by GeorgeAl
Thank u. I did manage to do it with your help.