Page 2 of 2
Re: New to qbittorrent and can't get RSS Episode filters working
Posted: Fri Nov 12, 2021 7:56 pm
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
Re: New to qbittorrent and can't get RSS Episode filters working
Posted: Tue Apr 26, 2022 8:05 am
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
Re: New to qbittorrent and can't get RSS Episode filters working
Posted: Tue Apr 26, 2022 11:18 am
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.
Re: New to qbittorrent and can't get RSS Episode filters working
Posted: Tue Apr 26, 2022 6:08 pm
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
Re: New to qbittorrent and can't get RSS Episode filters working
Posted: Thu Apr 28, 2022 9:17 am
by eisendud
Thank you guys
Eis