2007-03-01, 03:33 PM
I'm trying to increase the quality of the xvid transcodes by using a 2-pass method.
have anyone else done this? Also does this code look like it will work
Will using {LOG_FILE} work? or so I need to do something else?
Thanks,
have anyone else done this? Also does this code look like it will work
Code:
ffmpeg -i {SOURCE_FILE} -deinterlace -vcodec mpeg4 -g 240 -qscale 2 -croptop 0 -cropbottom 0 -aspect 16:9 -s 640x360 -passlogfile {LOG_FILE} -pass 1 -mbd 2 -vtag xvid -y -f avi NUL
ffmpeg -i {SOURCE_FILE} -deinterlace -vcodec mpeg4 -g 240 -b 1200k -croptop 0 -cropbottom 0 -aspect 16:9 -s 640x360 -passlogfile {LOG_FILE} -pass 2 -acodec mp3 -ab 128 -ac 2 -mbd 2 -vtag xvid -qmin 2 -async 1 -y -f avi {DEST_FILE}
Will using {LOG_FILE} work? or so I need to do something else?
Thanks,