CLI example:
# ffmpeg -i my-video-file.mp4 -vcodec copy -an output-without-audio.mp4
Where:
-vcodec copy
– means copy video as is
-an
– remove audio stream completely
Note: FFmpeg is an open-source software project for handling video, audio and other multimedia streams.