How to Remove audio from video file with FFmpeg?

I have a video test.mp4 and I want to remove the audion from the video. So, that there is no audion in video. How to remove audio from video file with FFmpeg?

thanks

View Answers

February 2, 2015 at 2:19 AM

Hi,

You can use the '-an' option to remove the audio from video.

Check the following command:

ffmpeg -i test.mp4 -vcodec copy -an test-noaudio.mp4

Thanks









Related Tutorials/Questions & Answers:
Advertisements