From fc11a8a26a0fbfb4fe5ebaf34095db28a4cf4da7 Mon Sep 17 00:00:00 2001 From: Seraphys Date: Sat, 3 May 2025 20:30:46 -0500 Subject: [PATCH] add(format): HLG + PQ Regex CF and to All Profiles --- custom_formats/HLG.yml | 12 ++++++++++++ custom_formats/PQ.yml | 12 ++++++++++++ profiles/1080p Balanced.yml | 4 ++++ profiles/1080p Quality (HDR).yml | 4 ++++ profiles/1080p Quality.yml | 4 ++++ profiles/1080p Remux.yml | 4 ++++ profiles/2160p Balanced.yml | 4 ++++ profiles/2160p Quality.yml | 4 ++++ profiles/2160p Remux.yml | 4 ++++ profiles/720p Quality.yml | 4 ++++ regex_patterns/HLG.yml | 8 ++++++++ regex_patterns/PQ.yml | 8 ++++++++ 12 files changed, 72 insertions(+) create mode 100644 custom_formats/HLG.yml create mode 100644 custom_formats/PQ.yml create mode 100644 regex_patterns/HLG.yml create mode 100644 regex_patterns/PQ.yml diff --git a/custom_formats/HLG.yml b/custom_formats/HLG.yml new file mode 100644 index 0000000..042183e --- /dev/null +++ b/custom_formats/HLG.yml @@ -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: [] diff --git a/custom_formats/PQ.yml b/custom_formats/PQ.yml new file mode 100644 index 0000000..738813e --- /dev/null +++ b/custom_formats/PQ.yml @@ -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: [] diff --git a/profiles/1080p Balanced.yml b/profiles/1080p Balanced.yml index f017890..7ccdeff 100644 --- a/profiles/1080p Balanced.yml +++ b/profiles/1080p Balanced.yml @@ -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 diff --git a/profiles/1080p Quality (HDR).yml b/profiles/1080p Quality (HDR).yml index f989ced..f062ae7 100644 --- a/profiles/1080p Quality (HDR).yml +++ b/profiles/1080p Quality (HDR).yml @@ -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 diff --git a/profiles/1080p Quality.yml b/profiles/1080p Quality.yml index a15c354..784402b 100644 --- a/profiles/1080p Quality.yml +++ b/profiles/1080p Quality.yml @@ -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 diff --git a/profiles/1080p Remux.yml b/profiles/1080p Remux.yml index 4fb954b..c5258c3 100644 --- a/profiles/1080p Remux.yml +++ b/profiles/1080p Remux.yml @@ -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 diff --git a/profiles/2160p Balanced.yml b/profiles/2160p Balanced.yml index 634099a..c23de6d 100644 --- a/profiles/2160p Balanced.yml +++ b/profiles/2160p Balanced.yml @@ -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 diff --git a/profiles/2160p Quality.yml b/profiles/2160p Quality.yml index 9a953f1..0642523 100644 --- a/profiles/2160p Quality.yml +++ b/profiles/2160p Quality.yml @@ -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 diff --git a/profiles/2160p Remux.yml b/profiles/2160p Remux.yml index 24113d5..dc765bc 100644 --- a/profiles/2160p Remux.yml +++ b/profiles/2160p Remux.yml @@ -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 diff --git a/profiles/720p Quality.yml b/profiles/720p Quality.yml index b1ce982..983c24e 100644 --- a/profiles/720p Quality.yml +++ b/profiles/720p Quality.yml @@ -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 diff --git a/regex_patterns/HLG.yml b/regex_patterns/HLG.yml new file mode 100644 index 0000000..c929ea0 --- /dev/null +++ b/regex_patterns/HLG.yml @@ -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: [] diff --git a/regex_patterns/PQ.yml b/regex_patterns/PQ.yml new file mode 100644 index 0000000..a827be5 --- /dev/null +++ b/regex_patterns/PQ.yml @@ -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: []