This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm whether you accept or reject these cookies being set.

A cookie will be stored in your browser regardless of choice to prevent you being asked this question again. You will be able to change your cookie settings at any time using the link in the footer.

Hybrid: 2020.12.29 - Vapoursynth Script Error
#1
I'm trying to resize a video using nnedi3 in Vapoursynth. The script build by Hybrid (ver. 2020.12.31.1) is the following:

# 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
Reply
#2
Seems like the vslsmashsource in the dev version is broken.
Replacing it with the one I attached should help.

Cu Selur
Reply
#3
This version fixed the problem.

Thanks Smile
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)