Expressions/Rules requests (3 Viewers)

Phosphorblin

New Member
February 16, 2009
3
0
Home Country
Switzerland Switzerland
Hi everyone,

I'm having problems setting the following regex rules for importing up:

My Series are structured in the following way

Series Name <dir>
|__Season Name <dir>
........|__1. Episode Name.avi
.............2. Episode Name.avi
.............3. Episode Name.avi
.............4. Episode Name.mkv
.
.
.

Most of the extensions are avi, but sometimes there is a mkv too.

So basically expressed with words, a folder named after the series holds folders withe the names of the Seasons (Season 1, Season 2, Season 3....). Those season folders hold all the episodes of the season, sorted in a numeric way (1. Pilot.avi, 2. Allen.avi, 3. Cell Check.avi,...), and hold the Episode Title after the numeric sorter.

I did not figure out just yet how the regex is working, but help would be much apreciated.

Thanks a lot,
Max
 

Prodigal_Son

Portal Member
October 1, 2008
9
0
Home Country
Sweden Sweden
Hello

I use SABnzbd to automatically download and unpack my TV-series.
Lately I have discovered a rather annoying issue with My TVSeries and SABnzbd:

When SABnzbd has finished the download it creates a folder that starts with _UNPACK_ and after that the name of the file thats been downloaded. for example: "F:\TV\My Name Is Earl S04\_UNPACK_My Name Is Earl - 4x13 - Orphan Earl"
SABnzbd unpacks in this temporary directory and then move the files to the root folder, in this case "F:\TV\My Name Is Earl S04" and after that the folder starting with _UNPACK_ is deleted.
My problem is that when SABnzbd is unpacking the files, My TVSeries is parsing the file thats being unpacked, and when the fully unpacked file is moved to the root folder its being parsed again. And the result is that I have the same file parsed twice with two different paths. So when I look in My TVSeries in MP I can se two "13: Orphan Earl", one thats correct with the right filesize and one thats not working that has 0kb in size.

Example:

File 1: "F:\TV\My Name Is Earl S04\_UNPACK_My Name Is Earl - 4x13 - Orphan Earl\My Name is Earl S04E13.avi" 0kb in size and not working, shows as "13: Orphan Earl" in MediaPortal.
File 2: "F:\TV\My Name Is Earl S04\My Name is Earl S04E13.avi"179mb in size and fully working, shows as "13: Orphan Earl" in MediaPortal.


So my question is: Is there any RegEx that can make My TVSeries to ignore all folders with UNPACK in its name so the temp files not get parsed.
Or does anyone have any other sollution ?


Thanks!
 

mad_cow

Portal Member
February 5, 2008
22
0
Hi

I need a parsing expression for the series 90210, the new one. I have asked this a while back, but didn't get any expression that worked. I have looked at all expression that has been suggested in the thread but none works.

My file structure is like this:

F:\Serier\90210\90210.S01E12.720p.HDTV.X264-DIMENSION\90210.S01E12.720p.HDTV.X264-DIMENSION.mkv

I really hope someone can help me!
 

scma

Portal Pro
December 24, 2005
77
4
Home Country
Sweden Sweden
Well, I use this expr. for daily shows, the problem is that thetvdb expects them to be in the format 2009-02-14 i.e. with dashes and most files uses dots. so having mp-tvseries do some reformating would help

(?<series>[^$]+).(?<FirstAired>((19|20)(\d{2})(.|-|/)([0-3]\d)(.|-|/)([0-3]\d)))(?<title>(?![^\\]*?sample)[^$]*?)\.(?<ext>[^.]*)

PS.
Oh, and I almost forgot, I have to use a really old db file to get this to work otherwise the episode don't show up even tho they're parsed properly.
DS.

Okay, I'd add in a request for this too what do you mean about using a old db file? Is there any way to get this to work with the newest release?

In the meantime, while this isn't working, how do I import seasons with more than 100 episodes, like this: Donald Duck - Short Films: Season 1 Episode List
- guess it should be possible to edit one of the default expressions somehow?


/Christian
with really old i mean a db file made with a pre 2.0 svn version tv-series.dll, don't really remember which one.

yes, it's not that hard. you should be able to find it in this thread somewhere, it' a common question.
 

Jocker_Boy

Portal Pro
December 9, 2008
196
3
Lisbon
Home Country
Portugal Portugal
I have 1 triple episodes and 1 quadruple episode.

ex: top.gear.s01e01-e02-e03.avi
ex: top.gear.s01e01-e02-e03-e04.avi

Is there any possibility to work with more than double episodes?
 

billqs

Portal Member
February 8, 2009
13
0
Home Country
United States of America United States of America
I'm trying to get BeyondTV recorded shows to show up correctly in MP-TV Series. I used the script suggested by Patrick back on page 8 of this thread:

Code:
(?<series>[^$]+)?-+?.*\((?<title>.*)\)-?(?<FirstAired>((19|20)(\d{2})(.|-|/)([0-2]\d)(.|-|/)([0-2]\d)))-.*?.(?<ext>[^.]*)$

MP-TV Series recognizes the series from BeyondTV anc creates an entry for it, however, it does not recognize any of the episodes. I realize from earlier posting it will only recognize the episode if the date on the BeyondTV file matches the first aired date, but it so far is not getting any episodes at all.

Does anyone have some help?
 

Gangsta

Portal Member
February 15, 2009
8
0
Home Country
Wales Wales
Hi - I posted elsewhere before i found this bit - and i still need help.

TVSeries add references to both my video_ts.ifo (which i want) but also to vts0_1.ifo (which i dont)

my directory structure is like this:

Q:\buffy the vampire slayer S03E02\video_ts\video_ts.ifo

and i use a simple expression to parse:

<series> ~ S<season>E<episode>

which works great - EXCEPT that i have a doubler of every episode in TVSeries

Can anyone help with an expression either simple or regular

thanks in advance

graham
 

Gangsta

Portal Member
February 15, 2009
8
0
Home Country
Wales Wales
thanks m8 - your a star

<series> ~ S<season>E<episode>\VIDEO_TS\VIDEO_TS.IFO

does indeed work!
 

Zinu

Portal Pro
February 28, 2008
650
23
Home Country
Netherlands Netherlands
Hello,

I have four seasons of American Dad on my HDD. Although, the filename is as following:
01-01 - American Dad - Pilot.avi
01-23 - American Dad - Tears of a Clooney.avi

By the way, it's in a structure like this:
<search root>\American Dad\Season 1\<the files>

Where the first two digits are the season number and the other two digits the episode number.

I have tried this but it doesn't work:
<series>\Season <season>\Episode 0<season>-0<episode> - <series> - <title>.<ext>

MyTVseries is unable to parse these files default. Is there anyone who can help me with a parsing expression for this?

:D
 

Users who are viewing this thread

Top Bottom