26.07.2020, 09:54
You can set crop, letterbox and deinterlace order in Avisynth.
Looking at:
I really don't see the problem,...
works fine here when I move Letterbox over Resize,...
I need more details to reproduce the problem you are describing since atm. it looks to me like simply changing the filter order fixes the problem.
Cu Selur
Looking at:
Quote:- deinterlaced (mask box may be cleaner edges if run before; technically can be run after as well)you would only need to move letterbox above the resizing.
- crop
- pad back to 720x480/576
- resize to 4:3, 640x480 NTSC or 720x540 PAL
I really don't see the problem,...
FFVideoSource("F:\TESTCL~1\files\INTERL~1\INTERL~1\YUV422~1.AVI",cachefile="E:\Temp\avi_1deca8d5573c8cb8cd8489678b764f38_853323747_1_0.ffindex",fpsnum=25,colorspace="YUY2")
# current resolution: 720x576
# deinterlacing
ConvertToYV16(interlaced=true)
AssumeTFF()
QTGMC(Preset="Fast", ediThreads=2)
SelectEven()
# cropping
Crop(20,0,-20,0)# 680x576
# letterboxing
AddBorders(20,0,20,0)# resolution: 680x576 -> 720x576
# scaling to 720x458
Spline36Resize(720,458)
# adjust color to YV12
ConvertToYV12()
PreFetch(8)
return lastI need more details to reproduce the problem you are describing since atm. it looks to me like simply changing the filter order fixes the problem.
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.

