Shows with more than 100 Episodes (1 Viewer)

Boiler

Portal Pro
July 29, 2007
160
7
Home Country
Switzerland Switzerland
i have a couple of shows (the daily show, the colbert report) which have more than 100 episodes a season.

parsing works fine, but only the episodes up to, say 13x99, get added to the database. the later episodes are not recognized

what's wrong?
 

Raytestrak

MP Donator
  • Premium Supporter
  • April 12, 2008
    497
    21
    50
    Honselersdijk
    Home Country
    Netherlands Netherlands
    I guess when parsing number x00, the plugin thinks it's season x episode 00. That's how I name all my shows, three digits, one for the season, two for the episode.

    Check your parsing expressions, I've copied an expression from the forum to parse dvd's, and there I had to use a variable for the total of numbers assigned for the episode.

    Something like "Series\Season#(1,2)\Episode#(1,2)". Meaning an Episode number can consist of two digits, maybe if you make it (1,3) it can work for you. Am I making any sense?
     

    Boiler

    Portal Pro
    July 29, 2007
    160
    7
    Home Country
    Switzerland Switzerland
    thanks a lot man. i think i understand what you mean, but there's no way i'm gonna mess around with parsing expressions and ruining it all. everything works now, except for episodes above 99. i rather see it stay that way than screwing up everything else :D

    thx anyway!
     

    FillR

    MP Donator
  • Premium Supporter
  • November 16, 2007
    109
    38
    Home Country
    France France
    Hello,

    I have the same problem with some shows with more than 99 episodes.

    After a request in the parsing expression topic, I've got some clues, but as I'm not enough skilled in Regexp, I've not been able to use them.

    So, I would be also very pleased to get a full solution for these kind of shows.
     

    Raytestrak

    MP Donator
  • Premium Supporter
  • April 12, 2008
    497
    21
    50
    Honselersdijk
    Home Country
    Netherlands Netherlands
    I'm not at home right now (and I'm not good with the regexp parsing expressions as well), but I'll see if I can make something of it.

    It's too late to do some real digging, but this is the regexp I've added for DVD's.

    (?<series>[^\\$]*)\\(?<series>[^\\$]*)\\Episode (?<episode>[0-9]{1,3})\\VIDEO_TS\\VIDEO_TS.IFO

    This part could be interesting for you "Episode (?<episode>[0-9]{1,3})"

    It is a folder name, named Episode[space]xxx, the {1,3} means the Episode number may constist of 1 to 3 digits.
     

    mrcippo

    New Member
    August 19, 2008
    4
    0
    Home Country
    Italy Italy
    Hi all,
    I have the same problem with show with more than 99 episodes.

    Some one can help me? What can I do?

    Thank's
     

    ChriZ

    Portal Pro
    March 22, 2008
    125
    3
    Home Country
    Denmark Denmark
    I have the same problem here...

    I have all the Donald Duck cartoon shorts stored with this syntax: "Donald Duck 1x[episode (3 digits)] - (name).avi.", but MPTV Series just starts from 1 again when the number passes 99, so I have for instance 2 of episode 1...
    Donald Duck - Short Films: Season 1 Episode List

    Could someone help me with the proper regexp to use for this (I have the same problem with the Mickey Mouse shorts)...

    TIA ;)

    EDIT:
    For the record, this one works, thanks to pgjensen.
    ^.*?\\?(?<series>[^\\$]+?)(?:s(?<season>[0-3]?\d)\s?ep?(?<episode>\d\d)|(?<season>(?:[0-2]\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))|E(?<episode2>\d\d))|)[ -.]*(?<title>(?![^\\]*?sample)[^\\]*?[^\\]*?)\.(?<ext>[^.]*)$


    /Christian
     

    Users who are viewing this thread

    Top Bottom