If you just double the resolution, you should not use stepped resizing at all.
Look at the code that is creates and what your settings are doing.
So I would recommend:
a. clear the temp folder you are using
b. use sane settings
Cu Selur
Look at the code that is creates and what your settings are doing.
clip = core.std.AddBorders(clip=clip, left=1, right=2, top=0, bottom=0) # add borders to archive mod 4 (NNEDI3(CL)) - 680x564
# Step 1: current: 680x564, target: 754x622
# resizing using ZNEDI3
# current: 680x564 target: 754x622 -> pow: 2
clip = edi_rpow2.nnedi3_rpow2(clip=clip, rfactor=2, nsize=2, nns=4) # 1360x1128
clip = core.std.Crop(clip=clip, left=2, right=4, top=0, bottom=0) # removing borders (NNEDI3(CL)) - 1354x1128
# resizing 1354x1128 to 754x622
clip = core.fmtc.resample(clip=clip, w=754, h=622, kernel="spline64", interlaced=False, interlacedd=False)# before YUV444P8 after YUV444P16
# Step 2: current: 754x622, target: 838x674
# using lanczos resize instead of nnedi3 since width after cropping isn't mod4
# resizing 754x622 to 838x674
clip = core.fmtc.resample(clip=clip, w=838, h=674, kernel="spline64", interlaced=False, interlacedd=False)# before YUV444P16 after YUV444P16
# Step 3: current: 838x674, target: 926x730
# using lanczos resize instead of nnedi3 since width after cropping isn't mod4
# resizing 838x674 to 926x730
clip = core.fmtc.resample(clip=clip, w=926, h=730, kernel="spline64", interlaced=False, interlacedd=False)# before YUV444P16 after YUV444P16
# Step 4: current: 926x730, target: 1006x794
# using lanczos resize instead of nnedi3 since width after cropping isn't mod4
# resizing 926x730 to 1006x794
clip = core.fmtc.resample(clip=clip, w=1006, h=794, kernel="spline64", interlaced=False, interlacedd=False)# before YUV444P16 after YUV444P16
# Step 5: current: 1006x794, target: 1086x858
# using lanczos resize instead of nnedi3 since width after cropping isn't mod4
# resizing 1006x794 to 1086x858
clip = core.fmtc.resample(clip=clip, w=1086, h=858, kernel="spline64", interlaced=False, interlacedd=False)# before YUV444P16 after YUV444P16
# Step 6: current: 1086x858, target: 1166x922
# using lanczos resize instead of nnedi3 since width after cropping isn't mod4
# resizing 1086x858 to 1166x922
clip = core.fmtc.resample(clip=clip, w=1166, h=922, kernel="spline64", interlaced=False, interlacedd=False)# before YUV444P16 after YUV444P16
# Step 7: current: 1166x922, target: 1246x986
# using lanczos resize instead of nnedi3 since width after cropping isn't mod4
# resizing 1166x922 to 1246x986
clip = core.fmtc.resample(clip=clip, w=1246, h=986, kernel="spline64", interlaced=False, interlacedd=False)# before YUV444P16 after YUV444P16
# Step 8: current: 1246x986, target: 1326x1050
# using lanczos resize instead of nnedi3 since width after cropping isn't mod4
# resizing 1246x986 to 1326x1050
clip = core.fmtc.resample(clip=clip, w=1326, h=1050, kernel="spline64", interlaced=False, interlacedd=False)# before YUV444P16 after YUV444P16
# Step 9: current: 1326x1050, target: 1406x1114
# using lanczos resize instead of nnedi3 since width after cropping isn't mod4
# resizing 1326x1050 to 1406x1114
clip = core.fmtc.resample(clip=clip, w=1406, h=1114, kernel="spline64", interlaced=False, interlacedd=False)# before YUV444P16 after YUV444P16
# Step 10: current: 1406x1114, target: 1416x1080
# using lanczos resize instead of nnedi3 since width after cropping isn't mod4
# resizing 1406x1114 to 1416x1080
clip = core.fmtc.resample(clip=clip, w=1416, h=1080, kernel="spline64", interlaced=False, interlacedd=False)# before YUV444P16 after YUV444P16
a. clear the temp folder you are using
b. use sane settings
Cu Selur
----
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.