From 8cd93076fbd56c6e56e39790824de8832c7b5d40 Mon Sep 17 00:00:00 2001 From: n00mkrad <61149547+n00mkrad@users.noreply.github.com> Date: Sat, 18 Apr 2026 02:09:23 +0200 Subject: [PATCH] Add APNG to use470bg list --- CodeLegacy/Os/VapourSynthUtils.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CodeLegacy/Os/VapourSynthUtils.cs b/CodeLegacy/Os/VapourSynthUtils.cs index e06aae6..d447906 100644 --- a/CodeLegacy/Os/VapourSynthUtils.cs +++ b/CodeLegacy/Os/VapourSynthUtils.cs @@ -95,7 +95,7 @@ namespace Flowframes.Os IoUtils.TryDeleteIfExists(frameIndexesJsonPath); } - bool use470bg = s.InterpSettings.inputIsFrames && !new[] { "GIF", "EXR" }.Contains(Interpolate.currentMediaFile.Format.Upper()); + bool use470bg = s.InterpSettings.inputIsFrames && !new[] { "GIF", "EXR", "APNG" }.Contains(Interpolate.currentMediaFile.Format.Upper()); args.Add(("cMatrix", use470bg ? "470bg" : "")); args.Add(("targetMatch", targetFrameCountMatchDuration));