1

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).

slhck
  • 235,242
Maciej
  • 297

1 Answers1

2

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.

slhck
  • 235,242
ta.speot.is
  • 14,323