Yes sorry about that.
you can change bitrate in the batch file.
Check the scale now.
Quote:
@echo off
setlocal EnableDelayedExpansion
set vidIn="%~1"
set vidOut= "%~n1.avi"
set v_br=320
set a_br=128
set skl=640
Title Encoding Pass 1
mencoder.exe %vidIn% -nosub -vf scale=%skl%:-2,unsharp=l3x3:0.7 -oac mp3lame -lameopts cbr:br=%a_br% -aid 0 -ovc x264 -x264encopts bitrate=%v_br%:subq=4:bframes=2:b_pyramid=normal:w eight_b -o %vidOut%
pause
|