| | #1 (permalink) |
| Portal Member Join Date: Aug 2005 Location: Brugge
Posts: 162
Thanks: 13
Thanked 59 Times in 19 Posts
Country: | Could someone post a list with the default expressions?? I'm interested in the ones that can handle double episodes... Greetz & Thx ![]() |
| | |
| | #2 (permalink) |
| MP Donator ![]() Join Date: Sep 2006 Location: Hampshire Age: 30
Posts: 298
Thanks: 55
Thanked 7 Times in 7 Posts
Country: | Just look in the configuration interface under Import Settings > Parsing Expressions
__________________ HTPC: Vista x86 | Intel E7300 | GeIL 2GB PC2-6400C4 | GA-G31M-S2L | Sapphire HD 4550 512M | WD6400AAKS 640GB | Kworld DVB-T 399U Moneual 301 | Antec NeoHE 430W Server: WHS | Intel E2180 | 2GB PC2-5300 | Gigabyte GA-G33-DS3R | 2x Icy Dock MB-454SPF | 2x WD5000AAKS 500GB | 5x WD10EACS 1TB | Cooler Master Centurion 590 | Seasonic M12 600W PSU |
| | |
| | #6 (permalink) |
| MP Donator ![]() Join Date: Sep 2006 Location: Hampshire Age: 30
Posts: 298
Thanks: 55
Thanked 7 Times in 7 Posts
Country: | Here ya go: Code: Type: Simple
<series> - <season>x<episode> - <title>.<ext>
Type: Simple
\<series>\Season <season>\Episode <episode> - <title>.<ext>
Type: Regexp
(?<series>[^\\\[]*) - \[(?<season>[0-9]{1,2})x(?<episode>[0-9\W]+)\](( |)(-( |)|))(?<title>[^$]*?)\.(?<ext>[^.]*)
Type: Regexp
(?<series>[^\\$]*) - season (?<season>[0-9]{1,2}) - (?<title>[^$]*?)\.(?<ext>[^.]*)
Type: Regexp
^(?<series>[^\\$]+)\\[^\\$]*?(?:s(?<season>[0-1]?\d)e(?<episode>\d\d)|(?<season>(?:[0-1]\d|(?<!\d)\d))x?(?<episode>\d\d))(?!\d)(?:[ .-]?(?:(?<episode2>\d\d(?!\d))|E(?<episode2>\d\d)|(?:\d\d|(?<!\d)\d)x?(?<episode2>\d{2}(?!\d)))|)[ -.]*(?<title>[^\\]*?(?<HR>HR\.)?[^\\]*?)\.(?<ext>[^.]*)$
Type: Regexp
^.*?\\?(?<series>[^\\$]+?)(?:s(?<season>[0-1]?\d)e(?<episode>\d\d)|(?<season>(?:[0-1]\d|(?<!\d)\d))x?(?<episode>\d\d))(?!\d)(?:[ .-]?(?:(?<episode2>\d\d(?!\d))|E(?<episode2>\d\d)|(?:\d\d|(?<!\d)\d)x?(?<episode2>\d{2}(?!\d)))|)[ -.]*(?<title>[^\\]*?(?<HR>HR\.)?[^\\]*?)\.(?<ext>[^.]*)$
__________________ HTPC: Vista x86 | Intel E7300 | GeIL 2GB PC2-6400C4 | GA-G31M-S2L | Sapphire HD 4550 512M | WD6400AAKS 640GB | Kworld DVB-T 399U Moneual 301 | Antec NeoHE 430W Server: WHS | Intel E2180 | 2GB PC2-5300 | Gigabyte GA-G33-DS3R | 2x Icy Dock MB-454SPF | 2x WD5000AAKS 500GB | 5x WD10EACS 1TB | Cooler Master Centurion 590 | Seasonic M12 600W PSU |
| | |
| | #7 (permalink) |
| Portal Member Join Date: Aug 2005 Location: Brugge
Posts: 162
Thanks: 13
Thanked 59 Times in 19 Posts
Country: | Code: Type: Regexp
^.*?\\?(?<series>[^\\$]+?)(?:s(?<season>[0-1]?\d)e(?<episode>\d\d)|(?<season>(?:[0-1]\d|(?<!\d)\d))x?(?<episode>\d\d))(?!\d)(?:[ .-]?(?:(?<episode2>\d\d(?!\d))|E(?<episode2>\d\d)|(?:\d\d|(?<!\d)\d)x?(?<episode2>\d{2}(?!\d)))|)[ -.]*(?<title>[^\\]*?(?<HR>HR\.)?[^\\]*?)\.(?<ext>[^.]*)$
Filename example: The.Office.US.S03E10-11.HDTV.XviD.avi parsing test does everything correct except for the Episode Title (HDTV XviD) So if any can adjust this one for me, i have no knowledge whatsoever about regex.. Thx in advance! Edit/ i don't need episode titles, it should just have HDTV.XVID coded into that regex Thx ![]() |
| | |
| | #8 (permalink) |
| Portal Member Join Date: Jun 2006
Posts: 60
Thanks: 2
Thanked 0 Times in 0 Posts
| how could i change the below regexp to work for possible double eps in the format: name - seasonxepisode1&episode2 - title1 & title2 thanks Code: ^.*?\\?(?<series>[^\\$]+?)(?:s(?<season>[0-1]?\d)e(?<episode>\d\d)|(?<season>(?:[0-1]\d|(?<!\d)\d))x?(?<episode>\d\d))(?!\d)(?:[ .-]?(?:(?<episode2>\d\d(?!\d))|E(?<episode2>\d\d)|(?:\d\d|(?<!\d)\d)x?(?<episode2>\d{2}(?!\d)))|)[ -.]*(?<title>[^\\]*?(?<HR>HR\.)?[^\\]*?)\.(?<ext>[^.]*)$
Last edited by Scoobsheister; 2007-03-31 at 01:26.. |
| | |
| | #9 (permalink) |
| Portal Member Join Date: Feb 2006 Location: Missouri Age: 25
Posts: 249
Thanks: 5
Thanked 2 Times in 2 Posts
Country: | I cant get mine to work. I tried using both of these Type: Regexp (?<series>[^\\\[]*) - \[(?<season>[0-9]{1,2})x(?<episode>[0-9\W]+)\](( |)(-( |)|))(?<title>[^$]*?)\.(?<ext>[^.]*) Type: Regexp (?<series>[^\\$]*) - season (?<season>[0-9]{1,2}) - (?<title>[^$]*?)\.(?<ext>[^.]*) I have it named 05x01-02. It sees the episode when i do a test, but i scroll over to episode number it's orange (like it doesnt understand it). Any suggestions? |
| | |
| | #10 (permalink) |
| Community Skin Designer Join Date: Apr 2007 Location: north pole Age: 22
Posts: 387
Thanks: 14
Thanked 58 Times in 35 Posts
Country: | I use this one: ^.*?\\?(?<series>[^\\$]+?)(?:s(?<season>[0-1]?\d)e(?<episode>\d\d)|(?<season>(?:[0-1]\d|(?<!\d)\d))x?(?<episode>\d\d))(?!\d)(?:[ .-]?(? ?<episode2>\d\d(?!\d))|E(?<episode2>\d\d)|(?:\d\d|(?<!\d)\d)x?(?<episode2>\d{2}(?!\d)))|)[ -.]*(?<title>[^\\]*?(?<HR>HR\.)?[^\\]*?)\.(?<ext>[^.]*)$Works for all my episodes (Only using "Series - 1x01(-02) - title.ext" format) I enabled only this default regexp. So uncheck the other ones. |
| | |
![]() |
| Bookmarks |
| Tags |
| default, episodes, expressions or double |
| Thread Tools | |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Help with TVServer and client | rick78 | Television (MyTV frontend and TV-Server) | 8 | 2006-12-12 19:48 |
| Choosing default waveout device doesn´t work | mrman | General Support | 3 | 2006-11-23 00:53 |
| Default MyMusic views | weeb | General Support | 13 | 2006-04-28 15:45 |