If you have a VCD and need to create an MP4 file of it's content, use mplayer to do so. If you install just mplayer, you will not get --dumpstream or --dumpfile. To get those parameters, you need to open a terminal window and install mplayer2 as follows:$ sudo apt-get install mplayer2 <enter> Open a … Continue reading How to convert VCD to MP4 using mplayer in Linux
Tag: mp4
Convert webm format video to mp4
At times, video files are encoded in a webm format. The webm format was introduced sometime in 2010 enabling support to embed it within HTML 5 files. If you want to convert video from the webm format to mp4, you can use ffmpeg as follows: $ ffmpeg -i video.webm video.mp4
Concatenate multiple MP4 files using MP4Box in Linux
To concatenate 2 or more .mp4 files in Linux use MP4Box. Open a terminal window and enter the command below: $ MP4Box -add file1.mp4 -cat file2.mp4 output.mp4 <enter> If you cannot find MP4Box on your computer, open a terminal window and install it with: $ sudo apt-get install gpac <enter>