Categories
How-To Software

How to remove an audio track from an mp4 video file

I recorded a mp4 video file and I would like to strip away the audio because i just don’t need it. Using ffmpeg in ubuntu made this task a very simple one. Simply run the following command:

ffmpeg -i file-in.mp4 -vcodec copy -an file-out.mp4

As you see, a very quick helpful solution.