name - S13 Episode 1 - solved

All about user-defined episode / movie / file name format expressions
Post Reply
notyourtarkin
Posts: 1
Joined: 07 May 2019, 21:12

name - S13 Episode 1 - solved

Post by notyourtarkin »

Hi,

Using 'name - S13 Episode 1' i like it, its clean. All i get is either the S missing or the Season number (13) missing, space or no space. these are

Code: Select all

{n} - {S}{S00} Episode{e00}
name - 13 Episode 1
or

Code: Select all

{n} - S{s00} Episode {e00}
name - S Episode 1

Code: Select all

{n} - S{sc} Episode {e00}
- close but new problem
name - S14 Episode 1

Since S (season) is consistent with the title series. Please can someone tell me the workaround? thanks.

Update
Before posting i found a advance solution but will post anyway, in case someone wants it.

Code: Select all

{n.space('.')} - {'S'+s.pad(2)} Episode {e.pad(2)}

name - S13 Episode 1

which i got from here
https://www.filebot.net/naming.html
Advanced Examples

Code: Select all

{n.space('.')}.{'s'+s.pad(2)}e{e.pad(2)}.{t.space('.')}.{vf}.{vc}.{ac}

Code: Select all

Firefly.s01e01.Serenity.720p.x264.ac3
Post Reply