SimonSez07
4th March 2003, 09:16
there are many instances where you have an interlaced (not telecined) dvd or dv source in anamorphic widescreen that you need to resize to the proper aspect ratio before encoding. most people would simply deinterlace, resize, and encode as progressive, but that looses quality and then you have a final product that is 29.97 fps progressive (not ideal for display on a tv).
i would much rather leave the video interlaced and encode as such to preserve the most quality. for instance encoding to svcd is a perfect example since mpeg2 can handle interlaced source and you will be viewing the final video on a tv.
i came across this avisynth script which will correctly resize to svcd resolution while preserving the video perfectly interlaced.
LoadPlugin("MPEG2DEC.DLL")
MPEG2Source("Video.d2v")
Bob
BilinearResize(480,360)
AddBorders(0,60,0,60)
DoubleWeave
SelectOdd
SelectEven
this method produces far superior encodes as long as you encode with the 'interlaced source' option enabled
for square pixel encodes you would simply replace BilinearResize(480,360) with BilinearResize(640,360)
i would much rather leave the video interlaced and encode as such to preserve the most quality. for instance encoding to svcd is a perfect example since mpeg2 can handle interlaced source and you will be viewing the final video on a tv.
i came across this avisynth script which will correctly resize to svcd resolution while preserving the video perfectly interlaced.
LoadPlugin("MPEG2DEC.DLL")
MPEG2Source("Video.d2v")
Bob
BilinearResize(480,360)
AddBorders(0,60,0,60)
DoubleWeave
SelectOdd
SelectEven
this method produces far superior encodes as long as you encode with the 'interlaced source' option enabled
for square pixel encodes you would simply replace BilinearResize(480,360) with BilinearResize(640,360)