Selur's Little Message Board

Full Version: How Load Custom VS plugin
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi! 

I'm trying to connect this VS plugin through the Custom section, but I can't 
https://github.com/dnjulek/VapourSynth-Checkmate 

Can you tell me what my mistake is? 
Connecting AviSynth plugins is easy, but VapourSynth doesn't work for some reason.

Code:
core.std.LoadPlugin(path="Z:/soft/HEVC/VS/Checkmate-r2-win64/checkmate.dll")

clip = Checkmate(clip=clip, thr=12, tmax=12, tthr2=0)

Error:
Code:
NameError: name 'Checkmate' is not defined
Instead of:
Code:
clip = Checkmate(clip=clip, thr=12, tmax=12, tthr2=0)
you need to use:
Code:
clip = core.checkmate.Checkmate(clip=clip, thr=12, tmax=12, tthr2=0)
As a side note:
If you want to use Checkmate, you could use the version that comes with vszip, which should be a bit faster.
Since vszip already come with Hybrid, you could call it through:
Code:
core.std.LoadPlugin(path="%FILTERPATH%/Support/vszip.dll")
clip = core.vszip.Checkmate(clip=clip, thr=12, tmax=12, tthr2=0)
see: https://github.com/dnjulek/vapoursynth-z.../Checkmate

Quote:Connecting AviSynth plugins is easy, but VapourSynth doesn't work for some reason.
Unlike Avisysynth, Vapoursynth uses namespaces and has no 'hidden' last-variable.

Cu Selur
Thanks!

For those who may need it...
clip = core.vszip.Checkmate(clip=clip, thr=12, tmax=12, tthr2=0)
Sorry, typo