Hi All,
Like most I usually encode with the default settings created by FitCD,
but are there better filters for resize, smoothing, etc.?

Will others filters
compress the file size as well or better? So far I’ve discovered the following
filters for testing and my issue is there settings? Below is my script:
#
# Compressibility Test
#
LoadPlugin("E:\DVD Backup\2 - DVD2SVCD\MPEG2Dec\MPEG2DEC2.dll")
LoadPlugin("E:\DVD Backup\2 - DVD2SVCD\SimpleResize\Simpleresize.dll")
LoadPlugin("E:\DVD Backup\2 - DVD2SVCD\Unfilter\Unfilter.dll")
LoadPlugin("E:\DVD Backup\2 - DVD2SVCD\Lanczos\Lanczos.dll")
LoadPlugin("E:\DVD Backup\2 - DVD2SVCD\C3D\Convolution3D.dll")
Mpeg2Source("D:\Temp\Movie.d2v")
#SimpleResize(352,240)
#BicubicResize(352,240)
#BilinearResize(352,240)
#LanczosResize(352,240)
#TemporalSmoother(2,2)
#Convolution3D(1,0,0,7,7,3,0)
#UnFilter(5,5)
#Sharpen(.1)
#AddBorders(8,8,8,8 )
###--------------------- Start Of File Size Prediction ----------------------###
IL = Framecount / 100 # interval length in frames
SL = round(Framerate) # sample length in frames
SelectRangeEvery(IL,SL)
## MPEG size = ((Total frames/Framerate)/100) * (MPEG sample file size * .95) ##
###------------------------End File Size Prediction--------------------------###
#
# End of Script
How do they compare?
1) Convolution3D vs TemporalSmoother
2) LanczosResize vs BilinearResize, BicubicRsizse
3) Sharpen vs Unfilter
Which combinations would give the best compression and picture quality?
-black prince