From ca5e97bfc9ea0d3a38198a3a0f124ff84dbb6dbf Mon Sep 17 00:00:00 2001 From: Your Name Date: Sat, 1 Nov 2025 21:21:44 -0500 Subject: [PATCH] fix(profile): Correct scoring to prioritize 1080p over 720p in Micro profiles Fixed critical scoring issue where 720p releases scored higher than 1080p. Changes: - Added 1080p Bluray, 1080p WEB-DL, 1080p WEBRip (200,000 pts each) - Removed codec-specific 1080p WEB-DL (h264) format - Standardized all 720p sources to 100,000 pts - Updated upgradeUntilScore to 400,000 (1080p) and 300,000 (720p) - Updated descriptions to reflect equal source priorities Scoring now correctly prioritizes: - 1080p releases: 350,000 pts (150K tier + 200K source) - 720p releases: 250,000 pts (150K tier + 100K source) - 480p releases: 210,000 pts (150K tier + 60K source) --- profiles/1080p Micro.yml | 16 ++++++++++------ profiles/720p Micro.yml | 10 +++++----- 2 files changed, 15 insertions(+), 11 deletions(-) diff --git a/profiles/1080p Micro.yml b/profiles/1080p Micro.yml index 6ba264a..5346383 100644 --- a/profiles/1080p Micro.yml +++ b/profiles/1080p Micro.yml @@ -7,7 +7,7 @@ description: '1080p Micro targets highly compressed micro-encodes for storage-co - Fallbacks in Place for Proper Quality Progression - - 1080p WEB-DL > 1080p Bluray > 720p WEB-DL > 720p Bluray > 480p WEB-DL > DVD + - 1080p (all sources) > 720p (all sources) > 480p WEB-DL > DVD - Prefers x265/HEVC for better compression' tags: @@ -18,7 +18,7 @@ tags: - x265 upgradesAllowed: true minCustomFormatScore: 10000 -upgradeUntilScore: 200000 +upgradeUntilScore: 400000 minScoreIncrement: 1 custom_formats: - name: Micro Encode Tier 1 @@ -27,14 +27,18 @@ custom_formats: score: 100000 - name: Micro Encode Tier 3 score: 80000 -- name: 1080p WEB-DL (h264) - score: 140000 +- name: 1080p Bluray + score: 200000 +- name: 1080p WEB-DL + score: 200000 +- name: 1080p WEBRip + score: 200000 - name: 720p WEB-DL score: 100000 - name: 720p Bluray - score: 80000 + score: 100000 - name: 720p WEBRip - score: 80000 + score: 100000 - name: 480p WEB-DL score: 60000 - name: DVD diff --git a/profiles/720p Micro.yml b/profiles/720p Micro.yml index 8e51ac6..a76b552 100644 --- a/profiles/720p Micro.yml +++ b/profiles/720p Micro.yml @@ -7,7 +7,7 @@ description: '720p Micro targets highly compressed micro-encodes for extreme sto - Fallbacks in Place for Proper Quality Progression - - 720p WEB-DL > 720p Bluray > 480p WEB-DL > DVD + - 720p (all sources) > 480p WEB-DL > DVD - Prefers x265/HEVC for better compression' tags: @@ -18,7 +18,7 @@ tags: - x265 upgradesAllowed: true minCustomFormatScore: 10000 -upgradeUntilScore: 200000 +upgradeUntilScore: 300000 minScoreIncrement: 1 custom_formats: - name: Micro Encode Tier 1 @@ -27,12 +27,12 @@ custom_formats: score: 100000 - name: Micro Encode Tier 3 score: 80000 +- name: 720p Bluray + score: 100000 - name: 720p WEB-DL score: 100000 -- name: 720p Bluray - score: 80000 - name: 720p WEBRip - score: 80000 + score: 100000 - name: 480p WEB-DL score: 60000 - name: DVD