New to qbittorrent and can't get RSS Episode filters working

Windows specific questions, problems.
johnny jackhammer
Newbie
Newbie
Posts: 16
Joined: Thu May 17, 2018 2:46 pm

Re: New to qbittorrent and can't get RSS Episode filters working

Post by johnny jackhammer »

klepptoman wrote: Mon Aug 02, 2021 2:32 am I want to filter a specific word only , ie I only wish to DL "Dog" , Currently my RSS filter will download anything with "dog" in the title.
Any help would be appreciated.
Brush up on your regex... it's a steep learning curve but it works really well. :)

https://regex101.com
eisendud

Re: New to qbittorrent and can't get RSS Episode filters working

Post by eisendud »

Hi there

RSS smart episode filter list

Why do the QBT download the "same" movie twice...
I only want to auto download the first version that it find in the rss filter
My filter for this is like:
Move*S0?E*nordic*1080P*264*

It autodowload :
Movie.S06E07.NORDiC.1080p.WEB-DL.H.264.DD5.1-TWASERiES
Movie.S06E07.NORDiC.1080p.WEB.H264-EGEN

Is there a line that i can add in the filter, that it will only download one time Movie.S06.... and skip the rest. Besides repacks.
I dont care what type of file it is, besides Name,1080P and 264

Thx
Eis
johnny jackhammer
Newbie
Newbie
Posts: 16
Joined: Thu May 17, 2018 2:46 pm

Re: New to qbittorrent and can't get RSS Episode filters working

Post by johnny jackhammer »

EDITED:

(?i)\btvshow\b.*S\d{2}E\d{2}.*nordic.*1080p.*?264

(?i)\bmovie\b.*nordic.*1080p.*?264

Try that RegEx, links to Regex101.com

You have chosen the release group “nordic”. Take that out if you don’t care. Usually seasons indicate a show not a movie.

The episode switch should only match one time.
Last edited by johnny jackhammer on Tue Apr 26, 2022 6:50 pm, edited 2 times in total.
Gripweed107
Member
Member
Posts: 39
Joined: Fri Jul 03, 2020 6:38 pm

Re: New to qbittorrent and can't get RSS Episode filters working

Post by Gripweed107 »

I'm assuming the same as Johnny did in that you meant "TVshow" and not "Movie" because a listing with Seasons and Episodes indicates a TV Show.

Based on your example filter given I would use the RegEx filter of ---
^TVshow.*nordic.*1080p.*?264.*

^ means the file starts with TVshow. Examples: ^Dog or ^Dog.and.Cat
.* means that it can be anything. No parenthesis are needed
?264 means that it will look for a file using 264 type protocol, either X264 or H264

For Episode Filter if you want just Season 6 Episode 7 use - 6x7

If it is a weekly series and you want to start from Season 6 Episode 7 and continue on, use - 6x7-;
Enable Smart Episode Filter
Set Ignore Subsequent Matches to probably 5 days is best
eisendud

Re: New to qbittorrent and can't get RSS Episode filters working

Post by eisendud »

Thank you guys

Eis
Post Reply