erwan
16th August 2002, 22:15
i'm trying to re encode a divx movie to a dvd.
i use avisynth + cce for i want to resize my movie.
this is where i get a pb.
here is my avs script :
AVISource("G:\EP6 Le Retour du Jedi FR LASERDISC.avi")
BicubicResize(720,318,0,0.75)
AddBorders(0,129,0,129)
ResampleAudio(44100)
the divx is 544x240
i want 720x576
so i resize preserving ratio (318 = 240 * 720/544)
and i add borders at top/bottom : 576 - 318 = 258 / 2 = 129
it plays fine is media player.
but the addborders makes CCE crash with the following error :
"avistreamread() failed (0x80044074): buffer is too small".
if i comment the addborders statement, cce goes fine.
and finally, the resize filter (simpleresize, bilinear ou bicubic) makes the final movie all screwy : looks like every line shifts from one pixel on the right .... :(
any idea?
if anyone already re encoded a divx to dvd with resizing on the fly thru avs, i'd be glad to hear his experience.
erwan
i use avisynth + cce for i want to resize my movie.
this is where i get a pb.
here is my avs script :
AVISource("G:\EP6 Le Retour du Jedi FR LASERDISC.avi")
BicubicResize(720,318,0,0.75)
AddBorders(0,129,0,129)
ResampleAudio(44100)
the divx is 544x240
i want 720x576
so i resize preserving ratio (318 = 240 * 720/544)
and i add borders at top/bottom : 576 - 318 = 258 / 2 = 129
it plays fine is media player.
but the addborders makes CCE crash with the following error :
"avistreamread() failed (0x80044074): buffer is too small".
if i comment the addborders statement, cce goes fine.
and finally, the resize filter (simpleresize, bilinear ou bicubic) makes the final movie all screwy : looks like every line shifts from one pixel on the right .... :(
any idea?
if anyone already re encoded a divx to dvd with resizing on the fly thru avs, i'd be glad to hear his experience.
erwan