I think FileBot has a tremendous amount of powerful features, but it seems like I'm learning more about them from the forum than any documentation. I struggled a bit to get multi-episode files in to a format that would work well with Kodi & Ember Media Manager.
I was able to use
Code: Select all
{primaryTitle}.{s00e00.removeAll('-')}.{t}
For two-part episodes, but to get N-part episodes working I had to use
Code: Select all
{primaryTitle}.S{s.pad(2)}E{es*.pad(2).join('E')}.{t}
Now I'm trying to see if I can make an adjustment so that the above has absolute numbers. I tried
Code: Select all
{primaryTitle}.S{s.pad(2)}E{es*.pad(2).join('E')}.{t} ({absolute})
but this only puts the first episode's absolute number in there. For instance, the output will look like
showname.S01E01E02.ep1 & ep2 (1).ext
instead of something more like
showname.S01E01E02.ep1 (1) & ep2 (2).ext
I played around with this a bit, but I really had no idea how to figure it out. The {es*} trick I only figured out from the forum and I tried something similar without luck for {ts}