Remove audio from video using FFmpeg

FFmpeg can losslessly copy the video stream while removing the audio stream. Use a command like:

ffmpeg -i input.mp4 -an -c:v copy output.mp4
-an
omits the audio stream from the output file
-c:v copy
losslessly copy the video stream without re-encoding it