04.09.2020, 20:38
This is a simplified script from Hybrid to load filters from desktop instead of autoload. I load script directly to vsViewer:
It gives me error:
l33tmeatwad explained that "DotKill R2 only has DotKillS, DotKillT, & DotKillZ https://github.com/myrsloik/DotKill "
import vapoursynth as vs
core = vs.get_core()
core.std.LoadPlugin('/Users/shph/Desktop/dotkill64.dylib')
clip = core.lsmas.LWLibavSource(source="/Users/shph/Desktop/Test Patterns Resolve 422 HQ.mov", format="YUV422P10", cache=0, prefer_hw=0)
clip = core.resize.Point(clip, matrix_in_s="709",range_s="limited")
clip = core.std.AssumeFPS(clip, fpsnum=25, fpsden=1)
clip = core.std.SetFrameProp(clip=clip, prop="_ColorRange", intval=1)
clip = core.resize.Bicubic(clip=clip, format=vs.YUV444P8, range_s="limited")
clip = core.dotkill.DotKill(clip=clip)
clip = core.resize.Bicubic(clip=clip, format=vs.YUV422P10, range_s="limited")
clip.set_output()
It gives me error:
Failed to evaluate the script:
Python exception: There is no function named DotKill
Traceback (most recent call last):
File "src/cython/vapoursynth.pyx", line 2244, in vapoursynth.vpy_evaluateScript
File "src/cython/vapoursynth.pyx", line 2245, in vapoursynth.vpy_evaluateScript
File "/Users/shph/Desktop/simple test.vpy", line 11, in <module>
clip = core.dotkill.DotKill(clip=clip)
File "src/cython/vapoursynth.pyx", line 1934, in vapoursynth.Plugin.__getattr__
AttributeError: There is no function named DotKill
