1.
Multi-Episode auto-detection based on episode titles is
not supported. You're not missing anything, it just doesn't work.
2.
There's format hacks though, to preprocess the files.
Step 1: Format Hack:
Code: Select all
{episodelist.findAll{ fn =~ it.title }.join(' & ')}
READ: find all episodes where the episode title is contained in the filename
Step 2: Process files normally, now that FileBot can actually interpret the files as multi-episode files:
e.g.
Code: Select all
$ filebot -rename *.mp4 -non-strict --log info --format "{episodelist.findAll{ fn =~ it.title }.join(' & ')}"
[MOVE] from [The Berenstain Bears - Bears For All Seasons _ Grow It.mp4] to [The Berenstain Bears - 4x17 - Bears For All Seasons & The Berenstain Bears - 4x18 - Grow It.mp4]
Code: Select all
$ filebot -rename *.mp4 -non-strict --log info --format "{plex.name}"
[MOVE] from [The Berenstain Bears - 4x17 - Bears For All Seasons & The Berenstain Bears - 4x18 - Grow It.mp4] to [The Berenstain Bears - S04E17-E18 - Bears For All Seasons & Grow It.mp4]
PS: I didn't even know FileBot could do that, until today.
