avisynth_filter
avisynth_filter copied to clipboard
DirectShow filters that put AviSynth and VapourSynth into video playing
``` from vapoursynth import core import vapoursynth as vs pp = VpsFilterSource matrix = "709" pp = core.resize.Spline36(pp, format=vs.RGBS, matrix_in_s=matrix) pp = core.resize.Spline36(pp, format=vs.YUV444P16, matrix=matrix, matrix_in=matrix, range=1) pp.set_output() ``` if...
Feature request: Anyway to have avisynth filter to be used systemwide? Like ffdshow? Not sure if that is possible but I think it is a good feature. If so, would...
Latest MPC Video Renderer supports Dolby Vision, so it's a good idea to pass DoVi data through AVSF. I don't want to make any PRs cause you'll rewrite everything from...