Page 1 of 1

Series format is skipping s0e00.

Posted: 22 Mar 2016, 03:12
by cashman04
I have the following series format:

Code: Select all

seriesFormat = TV Shows/{n}/{episode.special ? 'Special' : 'Season '+s.pad(1)}/{n} - {episode.special ? 'S0E'+special.pad(1) : s0e00} - {t}
And it outputs a file like:

Code: Select all

TV Shows/The Walking Dead/Season 6/The Walking Dead - - Twice as Far.mkv
If I remove the last

Code: Select all

- {t}
then it works just fine and gives me the show name and episode number. But trying to add the show title fails. What am I missing here?

Re: Series format is skipping s0e00.

Posted: 22 Mar 2016, 07:32
by rednoah
s0e00? No such variable, has nothing to do with t. There is s00e00 though. Use the standard.

Single-digit season numbers are possible, but not recommended, and you'll need to come up with the code for that yourself.

Don't prototype your formats on the command-line where you won't see any warnings or errors. Use the GUI Format Editor. This issue would have been obvious as soon as you typed it.

Re: Series format is skipping s0e00.

Posted: 22 Mar 2016, 14:41
by cashman04
Ahh. Got ya. Forgot I had changed it to s0e00.
rednoah wrote:Use the GUI Format Editor.
Unfortunately I am running on ubuntu server, so no gui to use. But I'll download it locally on my machine and play with the gui editor. Thanks for the help!