I am planning to convert a cartoon movie with a resolution of 352x224, 20fps and Mpeg Low Motion codec using the following script:
LoadPlugin("e:\kvcd\filters\atc.dll")
LoadPlugin("e:\kvcd\filters\blockbuster.dll")
LoadPlugin("e:\kvcd\filters\convolution3dyv12.dll" )
LoadPlugin("e:\kvcd\filters\dctfilter.dll")
LoadPlugin("e:\kvcd\filters\deen.dll")
LoadPlugin("e:\kvcd\filters\MPEG2Dec3.dll")
LoadPlugin("e:\kvcd\filters\Grip.dll")
LoadPlugin("e:\kvcd\filters\undot.dll")
LoadPlugin("e:\kvcd\filters\mpegdecoder.dll")
#mpegsource("d:\filename.mpg")
AviSource("e:\cartoon.avi", false)
BlindPP(Cpu=4)
Blockbuster(method="noise",detail_min=1,detail_max =8,variance=0.5,seed=1)
Convolution3D(1, 6, 12, 6, 8, 2.8, 0)
GripCrop(352, 240, source_anamorphic=false)
GripSize(resizer="BicubicResize")
TemporalSoften(2,7,7,3,2)
DCTFilter(1,1,1,1,1,1,0.5,0)
GripBorders()
My question becomes how do I change the FPS from 20 to 23.976 and have everything in synch. Also does the Grip filter add the borders to the top and bottom of the screen so that the aspect ratio remains the same and the movie is not "stretched" to fit 352x240. Thanks.
|