fix(format): HDR improvements (#50)
- fixed a issue where HDR was matching both HDR10 & 10+ - fixed an issue where unknown lossless audio was matching for TrueHD releases / missing groups - added a new 'general HDR' CF which matches HDR that isn't HDR10 nor HDR10+ - added an optional any character between HDR10 and +
This commit is contained in:
parent
3b40d67dbb
commit
03a63e2459
16 changed files with 264 additions and 193 deletions
22
custom_formats/HDR.yml
Normal file
22
custom_formats/HDR.yml
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
name: HDR
|
||||
description: Matches the 'HDR' Regex Pattern
|
||||
tags:
|
||||
- Colour Grade
|
||||
- HDR
|
||||
conditions:
|
||||
- name: HDR
|
||||
negate: false
|
||||
pattern: HDR
|
||||
required: true
|
||||
type: release_title
|
||||
- name: Not HDR10
|
||||
type: release_title
|
||||
required: true
|
||||
negate: true
|
||||
pattern: HDR10
|
||||
- name: Not HDR10+
|
||||
type: release_title
|
||||
required: true
|
||||
negate: true
|
||||
pattern: HDR10+
|
||||
tests: []
|
||||
Loading…
Add table
Add a link
Reference in a new issue