Problem is probably the Avisynth script.
Hybrid uses a portable Avisynth, so you need to make sure that you explicitly load all your Avisynth filters.
=> check the Avisynth preview, if that fails you are missing stuff
No clue whether the SelectRangeEvery makes sense for you,,...
Cu Selur
Ps.: Personally I would use: https://github.com/quietvoid/vs-nlq and Vapoursynth instead of Avisynth.
Hybrid uses a portable Avisynth, so you need to make sure that you explicitly load all your Avisynth filters.
=> check the Avisynth preview, if that fails you are missing stuff
ClearAutoloadDirs()
SetFilterMTMode("DEFAULT_MT_MODE", MT_MULTI_INSTANCE)
Import("C:\Program Files\Hybrid\64bit\Avisynth\avisynthPlugins\mtmodes.avsi")
# loading source: C:\Users\cebol\Desktop\ENCODES\HYBRID\DV lilo.avs
# color sampling YV12@10, matrix: bt709, scantyp: progressive, luminance scale: limited
Import("C:\Users\cebol\Desktop\ENCODES\HYBRID\DV lilo.avs") # <- THIS LOADS YOUR SCRIPT AND WILL FAIL due to dependencies.
# current resolution: 1920x1142
# adjusting frame count using SelectRangeEvery
SelectRangeEvery(every=8000,length=400,offset=0)
# setting output fps to 23.97600fps
AssumeFPS(24000,1001)
PreFetch(16)Cu Selur
Ps.: Personally I would use: https://github.com/quietvoid/vs-nlq and Vapoursynth instead of Avisynth.
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.


