fix: swap film grain values between DVD and BluRay profiles to match quality standards

This commit is contained in:
Esa Kataja
2025-10-04 18:30:30 +03:00
parent 5b4b36c928
commit 63fda950e5
+2 -2
View File
@@ -10,12 +10,12 @@ const profiles: Record<string, profile> = {
"DVD": { "DVD": {
"crf": 30, "crf": 30,
"preset": 4, "preset": 4,
"filmGrain": 10, "filmGrain": 5,
}, },
"BluRay": { "BluRay": {
"crf": 28, "crf": 28,
"preset": 4, "preset": 4,
"filmGrain": 5, "filmGrain": 10,
}, },
}; };