Topic: SVP4 not compatible with VapourSynth R57? (re: vapoursynth.core)

I've installed VapourSynth R57 (instead of the version included with SVP4) but SVP4 is attempting to generate a script with the following:

import vapoursynth as vs
core = vs.get_core(threads=25)

I think that get_core() is deprecated and you should be using vapoursynth.core instead?  If so, can I manually fix this in SVP4 until SVP4 has a new release?

Re: SVP4 not compatible with VapourSynth R57? (re: vapoursynth.core)

script\generate.js, line 457
replace

    VS.push('core = vs.get_core(threads='+global.threads+')');

with

    VS.push('core = vs.core');
    VS.push('core.num_threads = '+global.threads);

Re: SVP4 not compatible with VapourSynth R57? (re: vapoursynth.core)

Thanks!

Do you plan to update SVP4 to VS R57?

Re: SVP4 not compatible with VapourSynth R57? (re: vapoursynth.core)

VS 54+ built with Python 3.9 which is not compatible with Windows 7.
Doesn't look like a good enough reason to drop Win7 support...

Re: SVP4 not compatible with VapourSynth R57? (re: vapoursynth.core)

I feel like the fact that Microsoft dropped Win7 support is a better reason.