Remove Audio from Video on Windows: 2 Methods
Remove audio from video on Windows with FFmpeg -an for a true silent file, plus Clipchamp mute prep. Keep demos and tickets quiet.
Screen recordings with Teams chimes, clips with copyrighted music, and bug videos with open-mic noise often need a silent file. Muting in the player is not enough. You want no audio stream so PowerPoint, Teams previews, and editors stay quiet.
Why remove the audio stream
| Scenario | Why silence helps |
|---|---|
| Demo under live presenter audio | Prevents double sound |
| QA screen recording | Removes keyboard and notification noise |
| B-roll under a new soundtrack | Avoids clashing music |
| Slightly smaller attachment | Drops unused audio bytes |
Clipchamp can mute on the timeline, but some exports still embed a silent audio track. FFmpeg with -an removes the stream entirely. To keep audio separately, extract with MP4 to MP3 on Windows first. If you need a smaller file and must keep sound, see how to compress video on Windows .
Method 1: Strip audio with FFmpeg
Best for: A guaranteed silent MP4, including batches.
Install FFmpeg with winget if needed:
winget install --id Gyan.FFmpeg -eCopy video only (fastest when codecs allow):
ffmpeg -i input.mp4 -c:v copy -an output-silent.mp4Re-encode when copy fails:
ffmpeg -i input.mov -c:v libx264 -crf 22 -preset medium `
-an -movflags +faststart output-silent.mp4Batch every MP4 in a folder:
mkdir silent-out
Get-ChildItem *.mp4 | ForEach-Object {
ffmpeg -i $_.FullName -c:v copy -an "silent-out\$($_.BaseName)-silent.mp4"
if ($LASTEXITCODE -ne 0) {
ffmpeg -i $_.FullName -c:v libx264 -crf 22 -preset medium `
-an -movflags +faststart "silent-out\$($_.BaseName)-silent.mp4"
}
}| Flag | Plain meaning |
|---|---|
-an | No audio streams in output |
-c:v copy | Keep video unchanged; instant |
-movflags +faststart | Better for web playback |
For MKV with multiple tracks, map video explicitly:
ffmpeg -i input.mkv -map 0:v:0 -c:v copy -an output-silent.mp4Limitation: You maintain the commands. Combine with MOV to MP4 on Windows when the container also needs to change.
Method 2: Mute in Clipchamp
Best for: One internal clip when a silent track is acceptable.
- Open the video in Clipchamp (Windows 11).
- Select the audio track and mute or delete it on the timeline.
- Trim noisy lead-in if needed.
- Export at 1080p (or 720p for chat).
Verify the result. When the recipient requires zero audio streams, finish with Method 1.
Limitation: Some exports still write a silent AAC track.
Check that the file is truly silent
Play the file in Movies & TV and confirm no audio device activity. Inspect streams:
ffprobe -hide_banner output-silent.mp4You should see a video stream and no audio stream. If a silent track remains, re-run with -an and a re-encode.
When FFmpeg alone is enough
FFmpeg is enough for one-off silent demos and for scripted QA folders.
GetCompress is not a dedicated audio-strip tool. After you have a silent file (or if size is the real problem and sound can stay), use it to compress or convert video locally with presets and preview. It does not replace FFmpeg for guaranteed stream removal. For size-limited silent embeds, compress the silent export with how to compress video on Windows .
- Convert MOV to MP4 on WindowsConvert MOV to MP4 on Windows with GetCompress, Clipchamp, or FFmpeg. Get H.264 MP4 for uploads, Teams, and size-limited portals.
- Convert MP4 to MP3 on WindowsConvert MP4 to MP3 on Windows with GetCompress, FFmpeg, or Clipchamp. Extract audio as M4A or MP3 for podcasts, lectures, and legacy CMS uploads.
- How to Compress Video on WindowsCompress video on Windows with GetCompress, Clipchamp, or FFmpeg. Trim first, pick 720p or 1080p, and clear email or upload size limits.
- Remove Audio from Video on MacRemove audio from video on Mac with FFmpeg -an for a true silent file, plus QuickTime trim prep. Keep demos and overlays quiet.