Search found 3 matches

by mhe4
25 May 2015, 17:03
Forum: Episode / Movie Naming Scheme
Topic: Name Format for File with Multiple TV Episodes
Replies: 7
Views: 8861

Re: Name Format for File with Multiple TV Episodes

Thank you again.

I got it to work (for single episodes) with:

Code: Select all

rename(file:files, format:'TV_Shows/{n}/{n}.{episode.special ? "S00E"+special.pad(2) : s00e00.removeAll("-")} - {t}', db:'TheTVDB')
I haven't tried a double episode yet.
by mhe4
25 May 2015, 02:30
Forum: Episode / Movie Naming Scheme
Topic: Name Format for File with Multiple TV Episodes
Replies: 7
Views: 8861

Re: Name Format for File with Multiple TV Episodes

Thank you.

I tried it and it gives a syntax error when run.

Code: Select all

rename(file:files, format:'TV_Shows/{n}/{n}.{episode.special ? "S00E"+special.pad(2) : s00e00.removeAll('-')} - {t}', db:'TheTVDB')
by mhe4
24 May 2015, 22:22
Forum: Episode / Movie Naming Scheme
Topic: Name Format for File with Multiple TV Episodes
Replies: 7
Views: 8861

Name Format for File with Multiple TV Episodes

I have noticed a change recnently, probably after I updated to Filebot v4.5.6, but I'm not sure when. For a file such as: Show.S01E02E03.avi Using the command line (in a groovy script): rename(file:files, format:'TV_Shows/{n}/{n}.{episode.special ? "S00E"+special.pad(2) : s00e00} - {t}', db:'TheTVDB ...