add(format): HLG + PQ Regex CF and to All Profiles
This commit is contained in:
parent
58b948105f
commit
fc11a8a26a
|
|
@ -0,0 +1,12 @@
|
|||
name: HLG
|
||||
description: Matches the 'HLG' Regex Pattern
|
||||
tags:
|
||||
- Colour Grade
|
||||
- HDR
|
||||
conditions:
|
||||
- name: HLG
|
||||
negate: false
|
||||
pattern: HLG
|
||||
required: true
|
||||
type: release_title
|
||||
tests: []
|
||||
|
|
@ -0,0 +1,12 @@
|
|||
name: PQ
|
||||
description: Matches the 'PQ' Regex Pattern
|
||||
tags:
|
||||
- Colour Grade
|
||||
- HDR
|
||||
conditions:
|
||||
- name: PQ
|
||||
negate: false
|
||||
pattern: PQ
|
||||
required: true
|
||||
type: release_title
|
||||
tests: []
|
||||
|
|
@ -129,6 +129,10 @@ custom_formats:
|
|||
score: -99999
|
||||
- name: HEVC
|
||||
score: -99999
|
||||
- name: HLG
|
||||
score: -99999
|
||||
- name: PQ
|
||||
score: -99999
|
||||
- name: Remux
|
||||
score: -99999
|
||||
- name: Unwanted Release Groups
|
||||
|
|
|
|||
|
|
@ -117,6 +117,10 @@ custom_formats:
|
|||
score: 100
|
||||
- name: HDR10 (Missing) (1080p)
|
||||
score: 100
|
||||
- name: HLG
|
||||
score: 100
|
||||
- name: PQ
|
||||
score: 100
|
||||
- name: Special Edition
|
||||
score: 100
|
||||
- name: WEB-DL Tier 1
|
||||
|
|
|
|||
|
|
@ -139,6 +139,10 @@ custom_formats:
|
|||
score: -99999
|
||||
- name: HEVC
|
||||
score: -99999
|
||||
- name: HLG
|
||||
score: -99999
|
||||
- name: PQ
|
||||
score: -99999
|
||||
- name: Remux
|
||||
score: -99999
|
||||
- name: Unwanted Release Groups
|
||||
|
|
|
|||
|
|
@ -116,6 +116,10 @@ custom_formats:
|
|||
score: -99999
|
||||
- name: HEVC
|
||||
score: -99999
|
||||
- name: HLG
|
||||
score: -99999
|
||||
- name: PQ
|
||||
score: -99999
|
||||
- name: UHDBits
|
||||
score: -99999
|
||||
- name: Unwanted Release Groups
|
||||
|
|
|
|||
|
|
@ -110,6 +110,10 @@ custom_formats:
|
|||
score: 100
|
||||
- name: HDR10 (Missing)
|
||||
score: 100
|
||||
- name: HLG
|
||||
score: 100
|
||||
- name: PQ
|
||||
score: 100
|
||||
- name: Special Edition
|
||||
score: 100
|
||||
- name: TrueHD
|
||||
|
|
|
|||
|
|
@ -125,6 +125,10 @@ custom_formats:
|
|||
score: 100
|
||||
- name: HDR10 (Missing)
|
||||
score: 100
|
||||
- name: HLG
|
||||
score: 100
|
||||
- name: PQ
|
||||
score: 100
|
||||
- name: Special Edition
|
||||
score: 100
|
||||
- name: TrueHD
|
||||
|
|
|
|||
|
|
@ -90,6 +90,10 @@ custom_formats:
|
|||
score: 100
|
||||
- name: HDR10 (Missing)
|
||||
score: 100
|
||||
- name: HLG
|
||||
score: 100
|
||||
- name: PQ
|
||||
score: 100
|
||||
- name: Special Edition
|
||||
score: 100
|
||||
- name: WEB-DL Tier 1
|
||||
|
|
|
|||
|
|
@ -116,6 +116,10 @@ custom_formats:
|
|||
score: -99999
|
||||
- name: HEVC
|
||||
score: -99999
|
||||
- name: HLG
|
||||
score: -99999
|
||||
- name: PQ
|
||||
score: -99999
|
||||
- name: Remux
|
||||
score: -99999
|
||||
- name: Unwanted Release Groups
|
||||
|
|
|
|||
|
|
@ -0,0 +1,8 @@
|
|||
name: HLG
|
||||
pattern: \b(HLG)\b
|
||||
description: This regex matches a `HLG` generalisation. This is a basic HDR Format.
|
||||
tags:
|
||||
- Enhancement
|
||||
- Colour Grade
|
||||
- HDR
|
||||
tests: []
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
name: PQ
|
||||
pattern: \b(PQ)\b
|
||||
description: This regex matches a `PQ` generalisation. This is a basic HDR Format.
|
||||
tags:
|
||||
- Enhancement
|
||||
- Colour Grade
|
||||
- HDR
|
||||
tests: []
|
||||
Loading…
Reference in New Issue