From 3b21e75c2d3cffe0e6e9aca09a49b918bf022582 Mon Sep 17 00:00:00 2001 From: Seraphys Date: Mon, 31 Mar 2025 15:10:27 -0500 Subject: [PATCH] add(regex): STAN Regex/CF + Score --- custom_formats/STAN.yml | 59 ++++++++++++++++++++++++++++++++ profiles/1080p Balanced.yml | 2 ++ profiles/1080p Quality (HDR).yml | 2 ++ profiles/1080p Quality.yml | 2 ++ profiles/1080p Remux.yml | 2 ++ profiles/2160p Balanced.yml | 2 ++ profiles/2160p Quality.yml | 2 ++ profiles/2160p Remux.yml | 2 ++ regex_patterns/STAN.yml | 9 +++++ 9 files changed, 82 insertions(+) create mode 100644 custom_formats/STAN.yml create mode 100644 regex_patterns/STAN.yml diff --git a/custom_formats/STAN.yml b/custom_formats/STAN.yml new file mode 100644 index 0000000..bc53f3c --- /dev/null +++ b/custom_formats/STAN.yml @@ -0,0 +1,59 @@ +name: STAN +description: Matches 'STAN' WEB-DLs. Negates any encodes. +tags: +- Streaming Service +- WEB-DL +conditions: +- name: STAN Regex + negate: false + pattern: STAN + required: true + type: release_title +- name: Not WEBRip + negate: true + required: true + source: webrip + type: source +- name: Not x265 + negate: true + pattern: x265 + required: true + type: release_title +tests: +- conditionResults: + - matches: true + name: AMZN Regex + negate: false + pattern: Amazon Prime + required: true + type: release_title + - matches: true + name: x265 + negate: true + pattern: x265 + required: false + type: release_title + expected: false + id: 1 + input: The Bad Guys (2022) (1080p AMZN Webrip x265 10bit EAC3 5 1 - ArcX)[TAoE] + lastRun: '2025-01-14T09:45:16.007149' + passes: true +- conditionResults: + - matches: true + name: AMZN Regex + negate: false + pattern: Amazon Prime + required: true + type: release_title + - matches: true + name: x265 + negate: true + pattern: x265 + required: false + type: release_title + expected: false + id: 2 + input: Top Gun Maverick (2022) IMAX (1080p AMZN WEB-DL x265 SDR DDP Atmos 5.1 English + - Goki TAoE) + lastRun: '2025-01-14T09:45:16.007149' + passes: true diff --git a/profiles/1080p Balanced.yml b/profiles/1080p Balanced.yml index 4015913..cb37871 100644 --- a/profiles/1080p Balanced.yml +++ b/profiles/1080p Balanced.yml @@ -77,6 +77,8 @@ custom_formats: score: 30 - name: SD Quality Tier 1 score: 30 +- name: STAN + score: 30 - name: HULU score: 20 - name: iT diff --git a/profiles/1080p Quality (HDR).yml b/profiles/1080p Quality (HDR).yml index cb056d7..a21a36b 100644 --- a/profiles/1080p Quality (HDR).yml +++ b/profiles/1080p Quality (HDR).yml @@ -97,6 +97,8 @@ custom_formats: score: 30 - name: SD Quality Tier 1 score: 30 +- name: STAN + score: 30 - name: HDR10+ score: 20 - name: HULU diff --git a/profiles/1080p Quality.yml b/profiles/1080p Quality.yml index 5fcfb11..ac304f3 100644 --- a/profiles/1080p Quality.yml +++ b/profiles/1080p Quality.yml @@ -87,6 +87,8 @@ custom_formats: score: 30 - name: SD Quality Tier 1 score: 30 +- name: STAN + score: 30 - name: HULU score: 20 - name: iT diff --git a/profiles/1080p Remux.yml b/profiles/1080p Remux.yml index b32f783..7f7cc86 100644 --- a/profiles/1080p Remux.yml +++ b/profiles/1080p Remux.yml @@ -60,6 +60,8 @@ custom_formats: score: 30 - name: PMTP score: 30 +- name: STAN + score: 30 - name: HULU score: 20 - name: iT diff --git a/profiles/2160p Balanced.yml b/profiles/2160p Balanced.yml index 5b42bde..2b2dafd 100644 --- a/profiles/2160p Balanced.yml +++ b/profiles/2160p Balanced.yml @@ -92,6 +92,8 @@ custom_formats: score: 30 - name: SD Quality Tier 1 score: 30 +- name: STAN + score: 30 - name: HDR10+ score: 20 - name: HULU diff --git a/profiles/2160p Quality.yml b/profiles/2160p Quality.yml index bb9337d..62e8d8f 100644 --- a/profiles/2160p Quality.yml +++ b/profiles/2160p Quality.yml @@ -107,6 +107,8 @@ custom_formats: score: 30 - name: SD Quality Tier 1 score: 30 +- name: STAN + score: 30 - name: HDR10+ score: 20 - name: HULU diff --git a/profiles/2160p Remux.yml b/profiles/2160p Remux.yml index a8188ad..eaafd7b 100644 --- a/profiles/2160p Remux.yml +++ b/profiles/2160p Remux.yml @@ -70,6 +70,8 @@ custom_formats: score: 30 - name: PMTP score: 30 +- name: STAN + score: 30 - name: HDR10+ score: 20 - name: HULU diff --git a/regex_patterns/STAN.yml b/regex_patterns/STAN.yml new file mode 100644 index 0000000..1508cc3 --- /dev/null +++ b/regex_patterns/STAN.yml @@ -0,0 +1,9 @@ +name: STAN +pattern: \b(stan)\\b[ ._-]web[ ._-]?(dl|rip)?\\b +description: 'Stan is an Australian over-the-top streaming service. The service offers + a broad range of film and television content from both local and foreign productions, + particularly from the United States and United Kingdom. ' +tags: +- Streaming Service +- WEB-DL +tests: []