Page 1 of 1

RSS Filter - Only download TV episodes, not entire season

Posted: February 5th, 2011, 12:05 am
by army
Hi


I have RSS feeds setup with Nzbmatrix




I want to setup my RSS filters so:
- I only download the single episodes
- I do not want to download the entire season of any show


So far my filters are:
1 | Requires | *S[1234567890]E*
0 | Accept | *


Single episode names for TV shows are formatted like SHOWNAME.S01E01
Entire seasons are normally formatted like SHOWNAME.S01.DVDRIP

Therefore using this:
*S[1234567890]E*

Should only fetch any file that has S01E or S02E or S03 etc. -- and NOT the Entire season episodes..


However the above filter doesn't work when I use the Preview function.


Does anybody have any tips what I need to put into the RSS filter to only download Single episodes?


Thanks!


however, both of the above doesn't seem to only fetch single episodes when I use the preview button.

Re: RSS Filter - Only download TV episodes, not entire season

Posted: February 5th, 2011, 5:14 am
by shypike
If you want to use regular expressions, you need to add re: in front.
Otherwise it's just a simple wildcard expression.
Also your regex is incorrec.
So you would need:
re:.*S[0-9]+E.*

See: http://www.developer.com/lang/article.php/3330231