Saturday, May 5, 2012

How to convert a video from one format to another?

To convert a video from a particular format (let's say mov) to another (let's say mpeg). I use avconv.

In order to have it in your Ubuntu distribution:

sudo apt-get install ffmpeg

Now you can convert your video using the following command:

avconv -i <source_file.mov> <target_file.mpeg>

No comments:

Post a Comment