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
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
Ads