To extract only the video stream and save it to a new file, you can use the following command:
ffmpeg -i video.mp4 -an -c:v copy video_without_sound.mp4
-i video.mp4
: Specifies the input file.-an
: This option tells ffmpeg to exclude the audio.-c:v copy
: Copies the video codec without re-encoding.