You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using portable Vapoursynth R62 on Windows 11
Using:
# Imports
import vapoursynth as vs
# getting Vapoursynth core
core = vs.core
# Loading Plugins
core.std.LoadPlugin(path="F:/Hybrid/64bit/vsfilters/SubtitleFilter/VSFilterMod/VSFilterMod.dll")
core.std.LoadPlugin(path="F:/Hybrid/64bit/vsfilters/Support/libimwri.dll")
# source: 'C:/Users/Selur/Desktop/hybrid_test/croquants.png'
# current color space: RGB24, bit depth: 8, resolution: 720x480, fps: 25, color matrix: 470bg, yuv luminance scale: limited, scanorder: progressive
# Loading C:\Users\Selur\Desktop\hybrid_test\croquants.png using vsImageReader
clip = core.imwri.Read(["C:/Users/Selur/Desktop/hybrid_test/croquants.png"])
clip = core.std.Loop(clip=clip, times=6050)
# Input color space is assumed to be RGB24
# Setting color transfer info (470bg), when it is not set
clip = clip if not core.text.FrameProps(clip,'_Transfer') else core.std.SetFrameProps(clip, _Transfer=5)
# Setting color primaries info (), when it is not set
clip = clip if not core.text.FrameProps(clip,'_Primaries') else core.std.SetFrameProps(clip, _Primaries=5)
# Setting color range to TV (limited) range.
clip = core.std.SetFrameProp(clip=clip, prop="_ColorRange", intval=1)
# making sure frame rate is set to 25
clip = core.std.AssumeFPS(clip=clip, fpsnum=25, fpsden=1)
# Converting to target color sampling
clip = core.std.SetFrameProp(clip=clip, prop="_FieldBased", intval=0) # progressive
# Loading C:\Users\Selur\Desktop\hybrid_test\hector.ass using VSFilterMod
clip = core.vsfm.TextSubMod(clip=clip, file="C:/Users/Selur/Desktop/hybrid_test/hector.ass")
clip = core.resize.Bicubic(clip=clip, format=vs.YUV420P8, matrix_s="470bg", range_s="limited")
# set output frame rate to 25fps (progressive)
clip = core.std.AssumeFPS(clip=clip, fpsnum=25, fpsden=1)
# Output
clip.set_output()
fails, using:
# Imports
import vapoursynth as vs
# getting Vapoursynth core
core = vs.core
# Loading Plugins
core.std.LoadPlugin(path="F:/Hybrid/64bit/vsfilters/SubtitleFilter/VSFilterMod/VSFilterMod.dll")
core.std.LoadPlugin(path="F:/Hybrid/64bit/vsfilters/Support/libimwri.dll")
# source: 'C:/Users/Selur/Desktop/hybrid_test/croquants.png'
# current color space: RGB24, bit depth: 8, resolution: 720x480, fps: 25, color matrix: 470bg, yuv luminance scale: limited, scanorder: progressive
# Loading C:\Users\Selur\Desktop\hybrid_test\croquants.png using vsImageReader
clip = core.imwri.Read(["C:/Users/Selur/Desktop/hybrid_test/croquants.png"])
clip = core.std.Loop(clip=clip, times=6050)
# Input color space is assumed to be RGB24
# Setting color transfer info (470bg), when it is not set
clip = clip if not core.text.FrameProps(clip,'_Transfer') else core.std.SetFrameProps(clip, _Transfer=5)
# Setting color primaries info (), when it is not set
clip = clip if not core.text.FrameProps(clip,'_Primaries') else core.std.SetFrameProps(clip, _Primaries=5)
# Setting color range to TV (limited) range.
clip = core.std.SetFrameProp(clip=clip, prop="_ColorRange", intval=1)
# making sure frame rate is set to 25
clip = core.std.AssumeFPS(clip=clip, fpsnum=25, fpsden=1)
# Converting to target color sampling
clip = core.resize.Bicubic(clip=clip, format=vs.YUV420P8, matrix_s="470bg", range_s="limited")
clip = core.std.SetFrameProp(clip=clip, prop="_FieldBased", intval=0) # progressive
# Loading C:\Users\Selur\Desktop\hybrid_test\hector.ass using VSFilterMod
clip = core.vsfm.TextSubMod(clip=clip, file="C:/Users/Selur/Desktop/hybrid_test/hector.ass")
# set output frame rate to 25fps (progressive)
clip = core.std.AssumeFPS(clip=clip, fpsnum=25, fpsden=1)
# Output
clip.set_output()
(moved the RGB24 -> YUV420P8 conversion before the filter crashes.
I'm using portable Vapoursynth R62 on Windows 11
Using:
fails, using:
(moved the RGB24 -> YUV420P8 conversion before the filter crashes.
hector.zip contains the used ass and image file.
The text was updated successfully, but these errors were encountered: