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.
Match Multi-Episodes (Double)
Re: Match Multi-Episodes (Double)
Yes. FileBot does support Multi-Episode renaming.
Re: Match Multi-Episodes (Double)
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.
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)
{sxe} and {t} are capable for Multi-Episode formatting:
Note that MultiEpisode formatting relies on the file being auto-detected as MultiEpisode object in the first place.
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]

Re: Match Multi-Episodes (Double)
Thank u. I did manage to do it with your help.