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)
This commit is contained in:
parent
7a40447c58
commit
ca5e97bfc9
|
|
@ -7,7 +7,7 @@ description: '1080p Micro targets highly compressed micro-encodes for storage-co
|
||||||
|
|
||||||
- Fallbacks in Place for Proper Quality Progression
|
- 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'
|
- Prefers x265/HEVC for better compression'
|
||||||
tags:
|
tags:
|
||||||
|
|
@ -18,7 +18,7 @@ tags:
|
||||||
- x265
|
- x265
|
||||||
upgradesAllowed: true
|
upgradesAllowed: true
|
||||||
minCustomFormatScore: 10000
|
minCustomFormatScore: 10000
|
||||||
upgradeUntilScore: 200000
|
upgradeUntilScore: 400000
|
||||||
minScoreIncrement: 1
|
minScoreIncrement: 1
|
||||||
custom_formats:
|
custom_formats:
|
||||||
- name: Micro Encode Tier 1
|
- name: Micro Encode Tier 1
|
||||||
|
|
@ -27,14 +27,18 @@ custom_formats:
|
||||||
score: 100000
|
score: 100000
|
||||||
- name: Micro Encode Tier 3
|
- name: Micro Encode Tier 3
|
||||||
score: 80000
|
score: 80000
|
||||||
- name: 1080p WEB-DL (h264)
|
- name: 1080p Bluray
|
||||||
score: 140000
|
score: 200000
|
||||||
|
- name: 1080p WEB-DL
|
||||||
|
score: 200000
|
||||||
|
- name: 1080p WEBRip
|
||||||
|
score: 200000
|
||||||
- name: 720p WEB-DL
|
- name: 720p WEB-DL
|
||||||
score: 100000
|
score: 100000
|
||||||
- name: 720p Bluray
|
- name: 720p Bluray
|
||||||
score: 80000
|
score: 100000
|
||||||
- name: 720p WEBRip
|
- name: 720p WEBRip
|
||||||
score: 80000
|
score: 100000
|
||||||
- name: 480p WEB-DL
|
- name: 480p WEB-DL
|
||||||
score: 60000
|
score: 60000
|
||||||
- name: DVD
|
- name: DVD
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@ description: '720p Micro targets highly compressed micro-encodes for extreme sto
|
||||||
|
|
||||||
- Fallbacks in Place for Proper Quality Progression
|
- 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'
|
- Prefers x265/HEVC for better compression'
|
||||||
tags:
|
tags:
|
||||||
|
|
@ -18,7 +18,7 @@ tags:
|
||||||
- x265
|
- x265
|
||||||
upgradesAllowed: true
|
upgradesAllowed: true
|
||||||
minCustomFormatScore: 10000
|
minCustomFormatScore: 10000
|
||||||
upgradeUntilScore: 200000
|
upgradeUntilScore: 300000
|
||||||
minScoreIncrement: 1
|
minScoreIncrement: 1
|
||||||
custom_formats:
|
custom_formats:
|
||||||
- name: Micro Encode Tier 1
|
- name: Micro Encode Tier 1
|
||||||
|
|
@ -27,12 +27,12 @@ custom_formats:
|
||||||
score: 100000
|
score: 100000
|
||||||
- name: Micro Encode Tier 3
|
- name: Micro Encode Tier 3
|
||||||
score: 80000
|
score: 80000
|
||||||
|
- name: 720p Bluray
|
||||||
|
score: 100000
|
||||||
- name: 720p WEB-DL
|
- name: 720p WEB-DL
|
||||||
score: 100000
|
score: 100000
|
||||||
- name: 720p Bluray
|
|
||||||
score: 80000
|
|
||||||
- name: 720p WEBRip
|
- name: 720p WEBRip
|
||||||
score: 80000
|
score: 100000
|
||||||
- name: 480p WEB-DL
|
- name: 480p WEB-DL
|
||||||
score: 60000
|
score: 60000
|
||||||
- name: DVD
|
- name: DVD
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue