Page 1 of 1

How to ignore movie if year is missing?

Posted: August 17th, 2021, 11:18 pm
by firekidop
i don't want to download if release name don't have year in file. like:

Code: Select all

Bearry 1080p AMZN WEBRip DD2 0 x264-EVO
but download if there is year available. any help please? sorry for my english

Code: Select all

Bearry 2021 1080p AMZN WEBRip DD2 0 x264-EVO

Re: How to ignore movie if year is missing?

Posted: August 18th, 2021, 4:52 am
by jcfp
You can use a pre-queue script to check for that, and make it refuse or pause the job if the year is missing. The check itself would typically be implemented in the form of a regular expression, along the lines of

Code: Select all

^.+[\s._](19|20)[0-9]{2}[\s._]
for a year 20th or 21st century year, surrounded by some form of spacing, that isn't at the start of the job title.

Re: How to ignore movie if year is missing?

Posted: August 18th, 2021, 9:54 am
by firekidop
thank you so much.