A collection of VapourSynth script that I used sometimes.
Optional:
A collection of script to get the best possible quality from multi-source video.
- better_frame
- better_planes
A collection of comparision script
- check_difference
- save_difference
- stack_compare
- interleave_compare
- compare
check_difference
is mostly the same as save_difference
, but instead of saving the frame difference into a picture check_difference
would only print out into console what frame have difference from the provided threshold.
stack_compare
or compare
is a way to compare multiple video or clip and interleave_compare
is a wrapped partial function for stack_compare that interleave between multiple video
A collection of degraining script.
- adaptive_degrain2
- adaptive_bm3d
- adaptive_dfttest
- adaptive_knlm
- adaptive_tnlm
- adaptive_smdegrain
This module only contains a single actual function which is adaptive_degrain2
, everything else is a partial wrapped function for adaptive_degrain2
where the kernel is changed.
A collection of mask creation tools.
- antiedgemask
- antiedge
- simple_native_mask
- native_mask
- recursive_apply_mask
- rapplym
A collection of scaling function.
- masked_descale
- upscale_nnedi3
- adaptive_scaling
- adaptive_rescale
- adaptive_descale
upscale_nnedi3
is actually a typed-version and "fixed" version of nnedi3_rpow2
. The reason is because the latest version of Vapoursynth does not like it.
A collection of utilities script, might not be useful.
- is_extension
- register_format
A collection of script to handle video or image source.
- source
- src
- SimpleFrameReplace
- frame_replace
- sfr
- debug_clip
- debugclip
- shift_444
More information of every script can be seen from the docstring.
This project is licensed with MIT License.