From 63fda950e5cde69eb1085d4fc883967bdd488b78 Mon Sep 17 00:00:00 2001 From: Esa Kataja Date: Sat, 4 Oct 2025 18:30:30 +0300 Subject: [PATCH] fix: swap film grain values between DVD and BluRay profiles to match quality standards --- src/commandBuilder.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commandBuilder.ts b/src/commandBuilder.ts index 07a12db..d942855 100644 --- a/src/commandBuilder.ts +++ b/src/commandBuilder.ts @@ -10,12 +10,12 @@ const profiles: Record = { "DVD": { "crf": 30, "preset": 4, - "filmGrain": 10, + "filmGrain": 5, }, "BluRay": { "crf": 28, "preset": 4, - "filmGrain": 5, + "filmGrain": 10, }, };