🌑

Linhost.info

Convert Ogg

Out of all the screencast tools for Linux I find recordMyDesktop to be the most stable one, however the output capture is in .ogg which is not supported by most editing software. The solution is to turn the .ogg file in to another format that is commonly supported like avi, what an irony. First let’s install mencoder which will convert the files.

sudo apt-get install mencoder

I am assuming you have a previously created .ogg file in you home folder, now use the command below to convert the .ogg file in to an avi (change the file name if you need to).

mencoder out.ogg -o out.avi -oac mp3lame -ovc lavc

The output will be in form of an avi file, keep in mind that some quality loss will occur. Explanation out.ogg > the the original file out.avi > is the format we want mp3lame > audio codex lavc > video codec I support open formats but if the solution I am looking resides in proprietary I’ll use it.

— May 9, 2008