Hi All,
It's just me I suppose, but sometimes I wish a wide screen (16:9) could
be converted to full screen without the problems of aspect ratio. You
know, the egg head problems. Well, the updated AutoCrop handles
this. Here's the link and below is a sample avs script:
http://forum.doom9.org/showthread.ph...threadid=37204
LoadPlugin("E:\DVD Backup\2 - DVD2SVCD\MPEG2DEC\MPEG2DEC2.dll")
LoadPlugin("E:\DVD Backup\2 - DVD2SVCD\BlockBuster\BlockBuster.dll")
LoadPlugin("E:\DVD Backup\2 - DVD2SVCD\LegalClip\LegalClip.dll")
LoadPlugin("E:\DVD Backup\2 - DVD2SVCD\FluxSmooth\FluxSmooth.dll")
LoadPlugin("E:\DVD Backup\2 - DVD2SVCD\AutoCrop\AutoCrop.dll")
mpeg2source("D:\Temp\movie.d2v")
#
LegalClip()
#
AutoCrop(false,1,1,0,0,0,0,40,10)
#
BilinearResize(336,224)
#
FluxSmooth(temporal_threshold=7, spatial_threshold=7)
#
#Blockbuster( method="noise", detail_min=1, detail_max=10, variance=0.5 )
#
AddBorders( 8,8,8,8 )
LegalClip()
For preview use AutoCrop(true,1,1,0,0,0,0,40,10). The above is a sample
avs script for KVCD-LBR.
BTW, I left out Blockbuster sharpen due to it's
increasing file size and it made file size predictions way off from the
actual encode. Try some tests and see if file prediction keeps changing
for the same settings with Blockbuster sharpen.
-black prince