The video almost looks AI Upscaled. Is it the vapoursynth upscaler? it looks really good.
@videotaperetro11263 жыл бұрын
Vapoursynth is just a framework. The upscaler you use in Vapoursynth is a composite of various libraries. It uses well known resizers like lancos or bicubic etc... But you can also upscale with: # resizing using ZNEDI3 clip = edi_rpow2.nnedi3_rpow2(clip=clip, rfactor=8, pscrn=1) # 2560x1920 # adjusting resizing clip = core.fmtc.resample(clip=clip, w=1080, h=1920, kernel="lanczos", interlaced=False, interlacedd=False) This rezizer will always resize to the 2nd power, afterwards you have to adjust the correct size with another reisizer. This is a very high quality way to do upscale. And yes the upscaler of AI is also very good. AI will always do more than upscaling, whichever option you choose, and that is not always desirable. The upscaler of Davinci Resolve, if you turn on superscale is also a very qualitative upscaler. In this clip I used AI, but I did the deinterlacing myself with Vapoursynth and QTGMC. The deinterlacer of AI is not good, gives a lot of artifacts.