Merge pull request #199 from TRaSH-/Radarr-CF-Collection-patch20210411

Radarr cf collection patch20210411
pull/201/head
TRaSH 4 years ago committed by GitHub
commit 0d71ade77e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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
<sub><sub><sub>Score [-9999]</sub>
>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"
}
}
]
}
```
<sub><sup>[TOP](#index)</sup>
------
## Misc
------

Loading…
Cancel
Save