From 90497bbadf09910ae58707635071180a7132a053 Mon Sep 17 00:00:00 2001 From: louis Date: Wed, 28 Apr 2021 15:37:38 -0400 Subject: [PATCH] tanteidan: common: scenefiltering never ends --- Bishounen Tanteidan/tanteidan_common/filter.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/Bishounen Tanteidan/tanteidan_common/filter.py b/Bishounen Tanteidan/tanteidan_common/filter.py index 92cd582..f8c3a59 100644 --- a/Bishounen Tanteidan/tanteidan_common/filter.py +++ b/Bishounen Tanteidan/tanteidan_common/filter.py @@ -89,7 +89,15 @@ def wd_scenefilter(aa: vs.VideoNode, deb: vs.VideoNode, start: Optional[int]) -> # this does icky things to the credits but until we get NC it's way worth it if start is None: return aa - WD_AA_STRONG: List[Range] = [(start+1263, start+1355), (start+1468, start+1617)] + WD_AA_STRONG: List[Range] = [ + (start+26, start+33), + (start+34, start+41), + (start+984, start+1076), + (start+1077, start+1169), + (start+1170, start+1262), + (start+1263, start+1355), + (start+1468, start+1617), + ] sraa = upscaled_sraa(deb, rfactor=1.6, downscaler=Bicubic(b=0, c=1/2).scale) return replace_ranges(aa, sraa, WD_AA_STRONG)