Converting video in linux using ffmpeg and mencoder


I’ve always looked for a good tutorial on how to convert video from anything to VCD or DVD in an easy way and from CLI and that’s also easy to understand what’s going on. For that matter some time ago I’ve found this article and now I want to share it with you.

Converting video in linux using ffmpeg and mencoder

I also want to add another step that I’ve haven’t found in that article but found to be useful, how to join two AVI together. It is a simple command if you have transcode installed (If not you can install it in a Debian based distro with sudo apt-get install transcode).

avimerge -o outputFile.avi -i inputFile1.avi inputFile2.avi .. inputFileN.avi

That’s it! Have Fun!

Information and Links

Join the fray by commenting, tracking what others have to say, or linking to it from your blog.


Other Posts
How To: Transfer your PuTTY settings between computers
Remove Windows Messenger

Write a Comment

Take a moment to comment and tell us what you think. Some basic HTML is allowed for formatting.

Reader Comments

Thanks for this post, I was looking for information like this.