Rss Help

Get help with all aspects of SABnzbd
Forum rules
Help us help you:
  • Are you using the latest stable version of SABnzbd? Downloads page.
  • Tell us what system you run SABnzbd on.
  • Adhere to the forum rules.
  • Do you experience problems during downloading?
    Check your connection in Status and Interface settings window.
    Use Test Server in Config > Servers.
    We will probably ask you to do a test using only basic settings.
  • Do you experience problems during repair or unpacking?
    Enable +Debug logging in the Status and Interface settings window and share the relevant parts of the log here using [ code ] sections.
Post Reply
therealwakka
Newbie
Newbie
Posts: 4
Joined: November 16th, 2008, 3:42 pm

Rss Help

Post by therealwakka »

Hallo,
i have a question about rss nzb downloading:

When i made rss feeds for tv shows, and i want an episode for example 02.
My Problem is that there are multiple releases of one episode in the rss-feed.
How can i say sabnzbd that i need only one of the same episode?
User avatar
shypike
Administrator
Administrator
Posts: 19774
Joined: January 18th, 2008, 12:49 pm

Re: Rss Help

Post by shypike »

Naming reports is done at each uploaders own discretion.
That means that SABnzbd will never be able to prevent duplicate downloads
due to identical shows with slightly different names.
However, you can add some negative filters, like "not 720p".
Check out the RSS help page for this.

Don't expect SABnzbd to have some kind of artificial intelligence so that
it "knows" a show has already been downloaded, despite them having
different titles.
therealwakka
Newbie
Newbie
Posts: 4
Joined: November 16th, 2008, 3:42 pm

Re: Rss Help

Post by therealwakka »

But i would be good that SABnzbd looks if for example s02e01 exists in the folder and ignore the next download.
User avatar
shypike
Administrator
Administrator
Posts: 19774
Joined: January 18th, 2008, 12:49 pm

Re: Rss Help

Post by shypike »

Tell me how this is going to work for these shows:

The Imaginary Show S02E01
Imaginary Show S02E01
Rabbit tales S02E01
Rabbit tales S02E02
lazyman
Newbie
Newbie
Posts: 22
Joined: October 14th, 2008, 12:09 am

Re: Rss Help

Post by lazyman »

I think the original issue really comes down to having a better RSS feed then he is currently using.

As for filtering goes, I would like to boost up the AltBinz technique mentioned elsewhere on the forums. Although there would still be issues for eps that groups release with underscores and not periods (full stops). The only thing that could fix that would be new scene rules that required full stops instead of underscores. If the filter used a different matching mechanism than just contains, that could prove to be helpful.

For example: if you like the show House you might have a filter that looked liked House.S*. It would get everything that started with House.S, but not shows like Celebrity.Rehab.Presents.Sober.House.S* (personal experience). Since Celebrity does not equal House, it would not download.

Anyhow, that's my 2 cents. Thanks for the great program, no longer using VirtualPC to run AltBinz. Fancy I know.
User avatar
switch
Moderator
Moderator
Posts: 1380
Joined: January 17th, 2008, 3:55 pm
Location: UK

Re: Rss Help

Post by switch »

You will have to explain how altbin does it as we aren't too familiar with every aspect of that program.
For sab, a filter of "re:^House\.S" should match what you want. Regular expressions are very powerful, you can even make it match only specific episodes:
(show - 1x01 naming)

Code: Select all

re:^show\s-\s1x(?:12|13|14|15|16|17|18|19|20|21|22|23|24)\s-\s.*$
lazyman
Newbie
Newbie
Posts: 22
Joined: October 14th, 2008, 12:09 am

Re: Rss Help

Post by lazyman »

It works in much the same way as Windows search. More of an is equal to than an is like.
Example:
You have a list of files:
CSI.S09E01.720p.x264.HDTV
CSI.S09E01.HDTV
CSI.Miami.S07E01.720p.x264.HDTV
CSI.Miami.S07E01.HDTV
CSI.New.York.S05E01.720p.x264.HDTV
CSI.New.York.S05E01.HDTV
National.Geographic.The.Real.CSI.HDTV

Now, you have a crappy old TV like me and don't much have use for 720p files and you don't like the characters in CSI Miami.

So you might setup the following filters to deny anything 720p or Miami, but accept other the CSI series.
reject *720p*
reject *x264*
reject CSI.Miami*
accept CSI*

Which would result in these being accepted:
CSI.S09E01.HDTV
CSI.New.York.S05E01.HDTV

I hope that is a bit more clear.
User avatar
switch
Moderator
Moderator
Posts: 1380
Joined: January 17th, 2008, 3:55 pm
Location: UK

Re: Rss Help

Post by switch »

You can do the same in sabnzbd

Code: Select all

[Reject] 720p
[Reject] x264
[Reject] CSI.Miami
[Accept] CSI
Using * is also supported, but is not required.
Last edited by switch on January 25th, 2009, 11:15 am, edited 1 time in total.
lazyman
Newbie
Newbie
Posts: 22
Joined: October 14th, 2008, 12:09 am

Re: Rss Help

Post by lazyman »

Correct, but currently it would also download the National Geographic show since it has CSI in the title. But theoretically i would only want the crime drama series. Usually its not a huge problem, so I wouldn't put it high on the priority list. I guess the best solution would be to find a good RegEx primer and beginners guide.
User avatar
switch
Moderator
Moderator
Posts: 1380
Joined: January 17th, 2008, 3:55 pm
Location: UK

Re: Rss Help

Post by switch »

If you just want to match the start of the string, see my post a few posts up, specifically try:

Code: Select all

re:^CSI
instead of just CSI
lazyman
Newbie
Newbie
Posts: 22
Joined: October 14th, 2008, 12:09 am

Re: Rss Help

Post by lazyman »

How do you feel about adding this link in the rss section of the wiki? http://www.developer.com/lang/article.php/3330231 It explains the general concepts of regex much better than the python docs and might result in smarter users :)
User avatar
shypike
Administrator
Administrator
Posts: 19774
Joined: January 18th, 2008, 12:49 pm

Re: Rss Help

Post by shypike »

Done, thanks.
Post Reply