This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from argparse import ArgumentParser | |
| from pathlib import Path | |
| from vsexprtools import ExprOp, norm_expr | |
| from vstools import ( | |
| CustomRuntimeError, Keyframes, KwargsT, Sentinel, clip_async_render, core, get_w, mod4, mod_x, ranges_product, | |
| shift_clip, split, vs | |
| ) | |
| name = 'SetsuNoKeyframes' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import vapoursynth as vs | |
| from math import ceil, floor | |
| from rgvs import repair, removegrain | |
| from vsmask.edge import EdgeDetect, PrewittStd | |
| from vsutil import scale_value, split, depth, Dither, Range as CRange | |
| core = vs.core | |
| def edge_cleaner( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from __future__ import annotations | |
| from math import ceil, floor | |
| from typing import Optional, Sequence | |
| import vapoursynth as vs | |
| from lvsfunc.kernels import BSpline, Lanczos, Mitchell | |
| # https://github.com/Varde-s-Forks/RgToolsVS | |
| from rgvs import minblur, repair | |
| from vsmask.better_vsutil import join, split |