diff --git a/docs/Radarr/V3/Radarr-collection-of-custom-formats.md b/docs/Radarr/V3/Radarr-collection-of-custom-formats.md index 65475dd54..d6ed51e5a 100644 --- a/docs/Radarr/V3/Radarr-collection-of-custom-formats.md +++ b/docs/Radarr/V3/Radarr-collection-of-custom-formats.md @@ -55,7 +55,7 @@ I also made 2 guides related to this one. | [HDR](#hdr) | [4K Remaster](#4k-remaster) | [Low Quality Releases](#lq-releases) | [High Quality Releases](#hq-releases) | | [HDR (undefined)](#hdr-undefined) | [Special Editions](#special-edition) | [720/1080p no x265](#7201080p-no-x265) | [x264](#x264) | | [10 Bit](#10-bit) | [Criterion Collection](#criterion-collection) | [3D](#3d) | [x265](#x265) | -| | [Theatrical Cut](#theatrical-cut) | | [MPEG2](#mpeg2) | +| | [Theatrical Cut](#theatrical-cut) | [No-RlsGroup](#no-rlsgroup) | [MPEG2](#mpeg2) | | | [IMAX](#imax) | | [FreeLeech](#freeleech) | | | | | [Dutch Groups](#dutch-groups) | | | | | [Anime Dual Audio](#anime-dual-audio) | @@ -1418,7 +1418,7 @@ Advanced Audio Coding "negate": true, "required": true, "fields": { - "value": "eac3" + "value": "[^-]dd[p+]|eac3" } }, { @@ -2596,12 +2596,12 @@ Remaster (also digital remastering and digitally remastered) refers to changing "includeCustomFormatWhenRenaming": false, "specifications": [ { - "name": "avc|vc-1|hevc", + "name": "Video coding standards", "implementation": "ReleaseTitleSpecification", "negate": false, "required": true, "fields": { - "value": "avc|vc-1|hevc" + "value": "avc|vc-1|hevc|MPEG-?2" } }, { @@ -2637,7 +2637,7 @@ Remaster (also digital remastering and digitally remastered) refers to changing "negate": true, "required": true, "fields": { - "value": "[xh]\\.?265|\\bHEVC(\\b|\\d)" + "value": "[xh][ .]?265|\\bHEVC(\\b|\\d)" } } ] @@ -2885,6 +2885,51 @@ That's why I created my own golden rule. ------ +### No-RlsGroup + +Score [-9999] + +>Some indexers strip out the release group what could result in LQ groups getting a higher score. +>For example a lot of EVO releases end up stripping the group name, so they appear as "upgrades", and they end up getting a decent score if other things match + +!!! warning + + If you don't use a decent filenames like not adding release groups don't add this Custom Format, except if you want to upgrade them. + +??? example "json" + + ```json + { + "trash_id": "ae9b7c9ebde1f3bd336a8cbd1ec4c5e5", + "name": "No-RlsGroup", + "includeCustomFormatWhenRenaming": false, + "specifications": [ + { + "name": "-RlsGroup Missing", + "implementation": "ReleaseTitleSpecification", + "negate": true, + "required": true, + "fields": { + "value": "-[ ]?(?!(HD|MA|ES|X)\\b)\\w+?$" + } + }, + { + "name": "Weird RlsGroup Formats Missing", + "implementation": "ReleaseTitleSpecification", + "negate": true, + "required": true, + "fields": { + "value": "Tigole|Joy|YIFY|YTS.MX|FreetheFish|afm72|Anna|Bandi|Ghost|Kappa|MONOLITH|Qman|RZeroX|SAMPA|Silence|theincognito|t3nzin|Vyndros|KRaLiMaRKo|E\\.N\\.D|PrimeHD" + } + } + ] + } + ``` + +[TOP](#index) + +------ + ## Misc ------