I'm looking for a command line tool (preferably with no installation) which allows me to encode AVI to XVID (as MPEG4).

I know some solutions for Linux but can't find the same on Windows (XP).

link|improve this question
feedback

2 Answers

up vote 2 down vote accepted

Don't bother with WinFF, just go straight to ffmpeg.

ffmpeg -i input.avi -vcodec mpeg4 -qscale 2 output.mp4

Adjust the qscale option (ranges from 1 to 31) to your needs. 1 means best quality, 31 worst.

link|improve this answer
Sounds good! Where can I find cmd line help / examples? – Maciej Apr 28 '11 at 11:49
1  
@Maciej: Here and here. – grawity Apr 28 '11 at 13:00
feedback

You should try WinFF. It uses ffmpeg for the conversion.

link|improve this answer
1  
He wants something to use from the command line. Why did you link him to an application with a GUI? – ta.speot.is Apr 28 '11 at 11:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.