19.03.2026, 09:30
Hi Selur, I finally solved it this way and it works for me.
Regards
LoadPlugin("C:\Program Files (x86)\AviSynth+\plugins64+\ffms2.dll")
LoadPlugin("C:\Program Files (x86)\AviSynth+\plugins64+\avsresize.dll")
LoadPlugin("C:\Program Files (x86)\AviSynth+\plugins64+\avs_libplacebo.dll")
LoadPlugin("C:\Program Files (x86)\AviSynth+\plugins64+\MapNLQ.dll")
MKV="C:\Users\cebol\Desktop\ENCODES\HYBRID\Nuremberg (2025).mkv"
BL=FFVideoSource(MKV).z_ConvertFormat(bit_depth=16).libplacebo_Tonemap(src_csp=3, dst_csp=1).z_ConvertFormat(pixel_type="YUV420P16", chromaloc_op="top_left=>top_left", resample_filter="spline36")
EL=FFVideoSource(MKV.ReplaceStr(".mkv", "_EL.mkv"))
MapNLQ(BL, EL)
z_ConvertFormat(pixel_type="YUV420P10", dither_type="error_diffusion")
z_Spline36Resize(dither="error_diffusion", 1920, 804, 0, 276, 0, -276)
Prefetch(2)
SelectRangeEvery(8000,400)
return lastRegards

