I have a divx that is 713mb and 93minutes long(according to VD and its properties) I used Fitcd v1.05 and made a script to put it on one 74min cd. I set it for vcd 350x240, and checked the file predication box.
I opened up tmpgn, loaded the LBR template and hit encode. The resulting mpeg was 912mb, not the size I expected. I have tried this three times so far and it hasnt worked once for me. Am i missing something here? Should I be manuall changing the .95 in the script to something higher or lower? Heres the script I used. Thanks for any and all help.
JV
LoadPlugin("D:\AviSynth2\MPEG2DEC.dll")
AviSource("C:\Downloaded Programs\ring.avi")
BilinearResize(336,240,151,0,338,272)
#TemporalSmoother(2,2)
AddBorders(8,0,8,0)
#Trim(0,137822).FadeOut(150)
#ConvertToRGB24 # For TMPGEnc or VFAPI
#ResampleAudio(44100) # CCE 2.5 'crashfix' for Athlons
#== If you want this 'fix' permanently, edit the INI-file:
#== Under [AVSscript] set CCEcrashfix=1
###--------------------- 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--------------------------###
|