Selur's Little Message Board

Full Version: Hybrid: 2020.12.29 - Vapoursynth Script Error
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I'm trying to resize a video using nnedi3 in Vapoursynth. The script build by Hybrid (ver. 2020.12.31.1) is the following:

Code:
# Imports
import vapoursynth as vs
core = vs.get_core()
# Loading Plugins
core.std.LoadPlugin(path="D:/Programs/Hybrid/64bit/vsfilters/SourceFilter/LSmashSource/vslsmashsource.dll")
# source: 'F:\VideoTests\Tammy\Tammy.1957.DVDRip.576p.mkv'
# current color space: YUV420P8, bit depth: 8, resolution: 720x440, fps: 25, color matrix: 470bg, yuv luminance scale: limited, scanorder: progressive
# Loading F:\VideoTests\Tammy\Tammy.1957.DVDRip.576p.mkv using LWLibavSource
clip = core.lsmas.LWLibavSource(source="F:/VideoTests/Tammy/Tammy.1957.DVDRip.576p.mkv", format="YUV420P8", cache=0, prefer_hw=0)
# making sure input color matrix is set as 470bg
clip = core.resize.Point(clip, matrix_in_s="470bg",range_s="limited")
# making sure frame rate is set to 25
clip = core.std.AssumeFPS(clip=clip, fpsnum=25, fpsden=1)
# Setting color range to TV (limited) range.
clip = core.std.SetFrameProp(clip=clip, prop="_ColorRange", intval=1)
# adjusting output color from: YUV420P8 to YUV420P10 for NVEncModel (i420@8)
clip = core.resize.Bicubic(clip=clip, format=vs.YUV420P10, range_s="limited")
# set output frame rate to 25.000fps
clip = core.std.AssumeFPS(clip=clip, fpsnum=25, fpsden=1)
# Output
clip.set_output()

When I try to view the filter output, the following error is shown in VP Editor:

Failed to evaluate the script:
Python exception: No entry point found in D:/Programs/Hybrid/64bit/vsfilters/SourceFilter/LSmashSource/vslsmashsource.dll
Seems like the vslsmashsource in the dev version is broken.
Replacing it with the one I attached should help.

Cu Selur
This version fixed the problem.

Thanks Smile