Posts: 80
Threads: 31
Joined: Feb 2018
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.
core.std.LoadPlugin(path="Z:/soft/HEVC/VS/Checkmate-r2-win64/checkmate.dll")
clip = Checkmate(clip=clip, thr=12, tmax=12, tthr2=0)
Error:
NameError: name 'Checkmate' is not defined
Posts: 11.483
Threads: 63
Joined: May 2017
26.03.2025, 22:20
(This post was last modified: 26.03.2025, 23:20 by Selur.
Edit Reason: typo
)
Instead of:
clip = Checkmate(clip=clip, thr=12, tmax=12, tthr2=0)
you need to use:
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:
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
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.
>>> Offline from 30th of June till 6th of July. <<<
(will be at the
RochHarz festival)
Posts: 80
Threads: 31
Joined: Feb 2018
Thanks!
For those who may need it...
clip = core.vszip.Checkmate(clip=clip, thr=12, tmax=12, tthr2=0)
Posts: 11.483
Threads: 63
Joined: May 2017
Sorry, typo
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.
>>> Offline from 30th of June till 6th of July. <<<
(will be at the
RochHarz festival)