How to remove audio from a video
Need a silent video for Instagram, a background loop, or to save size? Learn how to strip audio instantly without re-encoding the whole file when possible.
Sometimes you need video without sound: a silent background for a website hero, a meme without the original music, or just to reduce file size before sending.
Why remove audio?
- Privacy: someone talking in background
- Size: audio can be 10-20% of file
- Platforms: Instagram background videos or GIF conversions need no audio
- Editing: you plan to add your own music later
Fast method vs full re-encode
If you only need to remove audio and keep same format (MP4 to MP4), we can do a fast remux - copy video stream without re-encoding. It's instant and lossless. If you also change resolution, rotate, or change format, we re-encode video with -an flag.
How to do it in JSM-Video.com
- Drop your MP4, MOV, or WebM file.
- Wait for green "Engine ready - Multi-threaded acceleration active".
- Check "Remove audio" in options.
- Choose output: MP4 Universal for max compatibility.
- Click Convert. Download. No upload.
Command line equivalent
If you prefer desktop FFmpeg: ffmpeg -i input.mp4 -c:v copy -an output.mp4 for fast copy, or ffmpeg -i input.mp4 -c:v libx264 -crf 23 -an output.mp4 for re-encode with rotation.
Privacy note
Stripping audio is sensitive - you may be removing a voice that identifies someone. Doing it locally means the original audio never leaves your device, unlike server tools that keep logs of audio tracks.
Common mistakes
- Muting volume in player does not remove audio track - file still contains it. You must re-export with -an.
- Converting to GIF automatically removes audio, but file will be larger. Better remove audio first, then decide if GIF needed.