Preview:
I see the problem, for Avisynth preview needs to be RGB24, but Hybrid seems to be stuck at RGB32bit. (correction -> RGB32 is okay)
Don't see the problem with the Vapoursynth script.
Code:
# Imports
import vapoursynth as vs
core = vs.get_core()
# Loading Plugins
core.std.LoadPlugin(path="C:/Program Files/Hybrid/64bit/vsfilters/SourceFilter/LSmashSource/vslsmashsource.dll")
# source: 'K:\Gulliver\GULLIVER HD TRANSFER\Gulliver0001.mov'
# current color space: YUV422P10, bit depth: 10, resolution: 1920x1080, fps: 23.976, color matrix: 709, yuv luminance scale: limited, scanorder: progressive
# Loading K:\Gulliver\GULLIVER HD TRANSFER\Gulliver0001.mov using LWLibavSource
clip = core.lsmas.LWLibavSource(source="K:/Gulliver/GULLIVER HD TRANSFER/Gulliver0001.mov", format="YUV422P10", cache=0, prefer_hw=0)
# making sure input color matrix is set as 709
clip = core.resize.Point(clip, matrix_in_s="709",range_s="limited")
# making sure frame rate is set to 23.976
clip = core.std.AssumeFPS(clip=clip, fpsnum=24000, fpsden=1001)
# Setting color range to TV (limited) range.
clip = core.std.SetFrameProp(clip=clip, prop="_ColorRange", intval=1)
original = clip
# adjusting output color from: YUV422P10 to YUV420P8 for x264Model (i420@10)
clip = core.resize.Bicubic(clip=clip, format=vs.YUV420P8, range_s="limited")
# adjusting for FilterView
if (original.format.id != clip.format.id):
if (original.format.color_family == vs.RGB and clip.format.color_family != vs.RGB):
original = core.resize.Bicubic(clip=original, format=clip.format.id, matrix_s="709", range_s="limited")
elif (original.format.color_family == clip.format.color_family):
original = core.resize.Bicubic(clip=original, format=clip.format.id, range_s="limited")
else:
original = core.resize.Bicubic(clip=original, format=clip.format.id, matrix_in_s="709", range_s="limited")
stacked = core.std.StackHorizontal([original,clip])
# set output frame rate to 23.976fps
stacked = core.std.AssumeFPS(clip=stacked, fpsnum=24000, fpsden=1001)
# Output
stacked.set_output()
-> will look at it over the weekend
Quote:1. Avisynth "DeSpot" crashes "Filter View" (Vapoursynth works fine)
-> will look at it over the weekend
Quote:2. Vapoursynth "DeSpot" missing whole bunch of parameters (compare to Avisynth)
Nothing I can do about it, Vapoursynth Depot port (
https://github.com/theChaosCoder/lostfun...ostfunc.py) has no parameters (aside from the clip input).
Quote:3. Can't find "DeScratch" and "RemoveDirt" among Vapursynth filters.
DeScratch: afaik there is no port for it
RemoveDirt:only port I see
https://github.com/handaimaoh/removedirtvs is 32bit only.
Quote:Avisynth "RemoveDirt" crashes "Filter View" if "Mode" other than 16
-> will look at it over the weekend
Cu Selur