Thomas' Tech Tips

Make a copy of a video file without the sound

26 November 2023 - Thomas Damgaard

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
Filed under: audio, ffmpeg, howto, multimedia, tips, video

Back to article list