are there any free or paid convertors that make HQ/HD MP4 out of AVI files. Ideally, i would run it in a directory with AVIs and it converts it until done )

of course it should be for unix/linux.

anyone heard of such a thing?

link|improve this question
@studiohack I don't understand why this question was closed? What part of the FAQ does this not comply with? – Bryan Dec 20 '11 at 17:22
@Bryan not sure what happened here, it was a very long time ago. Reopened. – studiohack Dec 20 '11 at 17:26
Okay, I guess it was related to the migration of the question, however the closed message did infer it was closed whilst on SU. Despite this, I'm not able to give a better answer than the ones below. Maybe @maxbugaenko will now be able to accept one of the answers. Thanks for reopening though. – Bryan Dec 20 '11 at 17:57
feedback

migrated from stackoverflow.com Nov 22 '10 at 21:21

This question came from our site for professional and enthusiast programmers.

6 Answers

ffmpeg. For mpeg4 video you probably want to use the x264 codec.

link|improve this answer
feedback

ffmpeg and transcode or mencoder and vlc are available options. You will find most documentation on ffmpeg.

link|improve this answer
feedback

Arista is good at this. arista-transcode is the command-line version, for doing batch transcodes.

link|improve this answer
feedback

You can use Handbrake nightly build and you can choose a command line version and a GUI which both does batch transcodeing and outputs to MP4 using ffmpeg.

link|improve this answer
feedback

I use ffmpeg. One possible simple script:

for i in *avi
do ffmpeg -i $i -vcodec libx264 -sameq -whatever $i.mp4
done

The "-vcodec libx264" says to use H.264 encoding for video. The "-sameq" says that the output video should be the same quality as the original (not whatever ffmpeg defaults to).

Note that in the USA at least, encoding into H.264 without paying a license fee is a violation of patent law. I do not know what country you are writing from or what your patent law may be.

link|improve this answer
feedback

If you want a GUI, use WinFF or Handbrake.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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