VapourSynth scripts for various releases
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

126 lines
2.8KB

  1. import vapoursynth as vs
  2. from tanteidan_common import (PrettyConfig, PrettySource, antialias, deband,
  3. denoise, finalize, regrain, stupid_op_scenefilter,
  4. wd_scenefilter)
  5. from yt_common.automation import SelfRunner
  6. from yt_common.denoise import bm3d
  7. from yt_common.source import waka_replace
  8. from typing import List, Optional
  9. from lvsfunc.dehardsub import HardsubSign, HardsubSignFade, HardsubMask, bounded_dehardsub
  10. from lvsfunc.misc import replace_ranges
  11. from lvsfunc.types import Range
  12. import os
  13. core = vs.core
  14. EPNUM: int = int(os.path.basename(os.path.splitext(__file__)[0]))
  15. CONFIG: PrettyConfig = PrettyConfig(EPNUM)
  16. SOURCE: PrettySource = PrettySource(CONFIG)
  17. OP: Optional[int] = 0
  18. WELCOMING_DAYS: Optional[int] = None
  19. WAKA_REPLACE: List[List[Range]] = [
  20. [(31864, 32650)],
  21. [],
  22. ]
  23. TITLECARDS: List[Range] = [
  24. (2609, 2704),
  25. (5174, 5221),
  26. (5738, 5773),
  27. (5774, 5809),
  28. (6920, 6967),
  29. (9209, 9256),
  30. (10223, 10270),
  31. (11375, 11434),
  32. (11627, 11674),
  33. (12806, 12853),
  34. (14649, 14732),
  35. (16431, 16478),
  36. (19516, 19563),
  37. (24622, 24669),
  38. (25618, 25665),
  39. (27691, 27738),
  40. (29957, 30004),
  41. ]
  42. SIGNS_RU: List[HardsubMask] = [
  43. HardsubSignFade(TITLECARDS + [
  44. (2158, 2298),
  45. (31751, 31863),
  46. (5666, 5683),
  47. (5684, 5701),
  48. (5702, 5737),
  49. (6722, 6763),
  50. (6764, 6811),
  51. (10715, 10757),
  52. (12026, 12115),
  53. (12566, 12631),
  54. (12632, 12683),
  55. (20821, 20919),
  56. (20920, 21039),
  57. ]),
  58. HardsubSign([
  59. (2327, 2608),
  60. ]),
  61. ]
  62. AA_STRONGER: List[Range] = [
  63. (15231, 15338), # this fucking plant what the hell
  64. ]
  65. AA_STRONG: List[Range] = [
  66. ]
  67. AA_WEAK: List[Range] = [
  68. (13814, 14518),
  69. ]
  70. AA_NONE: List[Range] = TITLECARDS + [ # chapter 2 title cards are insanely detailed
  71. (20821, 21039),
  72. ]
  73. STUPID_DENOISE: List[Range] = [
  74. (11435, 11626),
  75. (12026, 12115),
  76. ]
  77. def filter_basic() -> vs.VideoNode:
  78. wakas, ref = SOURCE.source()
  79. wakas = [w[0] + w for w in wakas]
  80. waka = wakas[0]
  81. waka, wakas = waka_replace(waka, wakas[1:], WAKA_REPLACE)
  82. src = bounded_dehardsub(waka, ref, SIGNS_RU, wakas)
  83. src.set_output(1)
  84. return src
  85. def filter() -> vs.VideoNode:
  86. src = filter_basic()
  87. den = denoise(src)
  88. deb = deband(den)
  89. deb = replace_ranges(deb, bm3d(src, sigma=4, radius=1), STUPID_DENOISE)
  90. aa = antialias(deb, stronger=AA_STRONGER, strong=AA_STRONG, weak=AA_WEAK, noaa=AA_NONE)
  91. scenefilter = stupid_op_scenefilter(aa, deb, OP)
  92. if WELCOMING_DAYS is not None:
  93. scenefilter = wd_scenefilter(aa, deb, WELCOMING_DAYS)
  94. grain = regrain(scenefilter)
  95. final = finalize(grain)
  96. final.set_output()
  97. return final
  98. if __name__ == "__main__":
  99. SelfRunner(CONFIG, filter, filter_basic)
  100. else:
  101. filter()