Anyone know how to add wrestling? I got my folders/files set up like this:
TNA\2009\01. January\mm.dd.yy Impact.avi
Thanx.
TNA\2009\01. January\mm.dd.yy Impact.avi
Thanx.
Using the default rules, The.Daily.Show.S14E99.avi works fine.
How do I get The.Daily.Show.S14E100.avi to parse? It currently breaks out to the show name of "The.Daily.Show S14E" with season 1 and episode 00. I assume this is because of the three digit episode number.
When you run the parsing test from within MP configuration, how do you tell which rule was matched?
thanks
The default parsers cant deal with anything greater than 99 (ie. its breaks once it hits 3 digits) as you have already realised.
My solution to the problem was this:
Code:^(?<series>SERIESNAME)\\[^\\$]*?(?:s(?<season>[0-1]?\d)ep?(?<episode>\d\d\d)|(?<season>(?:[0-1]\d|(?<!\d)\d))x?(?<episode>\d\d\d))(?!\d)(?:[ .-]?(?:s\k<season>e?(?<episode2>\d{2}(?!\d))|\k<season>x?(?<episode2>\d{2}(?!\d))|(?<episode2>\d\d\d(?!\d))|E(?<episode2>\d\d\d))|)[ -.]*(?<title>(?!.*sample)[^\\]*?[^\\]*?)\.(?<ext>[^.]*)$
Change "SERIESNAME" in the above expression to the name of the series you need to parse.
Also make sure the parse string is at the top of your list otherwise it will be overridden by the default one.
If theres more than one you can add more my adding | after each show like this.
The Daily Show|Random other show|another random show
Anyway, the code below should fix the problem for you.
Code:^(?<series>The Daily Show)\\[^\\$]*?(?:s(?<season>[0-1]?\d)ep?(?<episode>\d\d\d)|(?<season>(?:[0-1]\d|(?<!\d)\d))x?(?<episode>\d\d\d))(?!\d)(?:[ .-]?(?:s\k<season>e?(?<episode2>\d{2}(?!\d))|\k<season>x?(?<episode2>\d{2}(?!\d))|(?<episode2>\d\d\d(?!\d))|E(?<episode2>\d\d\d))|)[ -.]*(?<title>(?!.*sample)[^\\]*?[^\\]*?)\.(?<ext>[^.]*)$
I have some tv series that use 4 digit seasons
This plugin doesn't seem to like that.
thetdb.com also stores them as 4 digit season codes..
series like bbc documentaries etc use the year as the season.
or the natural world series etc also uses the year as the season..
for example
natural world\season 2009\episode name - s2009e06.avi
Can someone please add support for this or fire me an expression that will take care of these, cheers
Hi any news on this, I have read most of the posts on this and tried a few but nothing seems to work for me?
I am ideally looking for
\\<series name>\<series name> s1234e12 - someinfo.avi
or
\\<series name>\<series name> s1234e12.avi
This is for Formula 1 which is currentley listed as
\\F1\F1 s2008e01 - Austarlian Grand Prix.flv
All others series are listed in the same fasion but only 2 series digits
<series> s<season>e<episode> - <title>.<ext>