Remove Audio from Video on Windows
Remove audio from video on Windows with Clipchamp mute export or FFmpeg. Silent MP4 for demos, tickets, and overlays.
Screen recordings with Teams notification chimes, gameplay clips with copyrighted music, and bug repro videos with open-mic noise often need a silent video file. You notice when a PowerPoint slide should autoplay without surprise sound, when a UI walkthrough will get new narration in post, or when SharePoint flags an audio track you never intended to share. Removing audio locally produces a cleaner embed and slightly smaller attachments.
Why remove audio
Muting in the player is not enough for handoffs. You want no audio stream in the file so Teams previews stay silent, editors do not inherit background noise, and compliance scans ignore unused tracks.
| Scenario | Why silence helps |
|---|---|
| Demo under live presenter audio | Prevents double sound in the room |
| QA screen recording | Removes keyboard and notification noise |
| B-roll under new soundtrack | Avoids clashing music |
| Slightly smaller attachment | Drops unused audio bytes |
Clipchamp can export with volume muted, but some exports still contain a silent audio track. FFmpeg with -an removes the stream entirely. To keep audio separately, extract with MP4 to MP3 on Windows first.
When you need smaller files but must keep sound, see the video compression guide instead.
Export in Clipchamp
Clipchamp (built into Windows 11) is fine for one clip when you mute tracks on the timeline before export.
- Open the video in Clipchamp.
- Select the audio track and mute or delete it on the timeline.
- Export at 1080p (or 720p for chat attachments).
Verify the result: some workflows still write a silent AAC track. When the recipient requires zero audio streams, use FFmpeg -an below.
| Goal | Tool |
|---|---|
| Quick mute for internal use | Clipchamp |
| Guaranteed no audio stream | FFmpeg -an or GetCompress |
| Save audio separately | MP4 to MP3 on Windows |
Trim dead air in Clipchamp before export when notification sounds cluster at the start; stripping audio does not remove visual segments you still need to cut.
Strip audio with FFmpeg
FFmpeg in PowerShell removes audio precisely. Install with winget:
winget install --id Gyan.FFmpeg -e
Copy video only (fastest):
ffmpeg -i input.mp4 -c:v copy -an output-silent.mp4
Re-encode when copy fails:
ffmpeg -i input.mov -c:v libx264 -crf 22 -preset medium `
-an -movflags +faststart output-silent.mp4
Batch strip audio from every MP4 in a folder:
mkdir silent-out
Get-ChildItem *.mp4 | ForEach-Object {
ffmpeg -i $_.Name -c:v copy -an "silent-out\$($_.BaseName)-silent.mp4"
if ($LASTEXITCODE -ne 0) {
ffmpeg -i $_.Name -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 | Web-friendly MP4 metadata |
For MKV with multiple tracks, map video explicitly:
ffmpeg -i input.mkv -map 0:v:0 -c:v copy -an output-silent.mp4
Combine with MOV to MP4 on Windows when you also need container conversion in one pass.
Using GetCompress
GetCompress fits recurring remove audio from video on Windows work when QA and design teams ship screen recordings that slides and tickets need silent.
Drop MP4, MOV, or a folder into the app. Disable audio on export, trim in the preview, and set resolution when the silent clip must fit a template.
Useful workflow pieces in GetCompress:
- Batch queue: strip audio from a repro folder without PowerShell scripts.
- Presets: save “silent 1080p demo” for sprint review decks.
- Preview and trim: cut noisy sections before export when muting alone is not enough.
- Folder monitoring: watch an exports folder and produce silent versions automatically.
- Local processing: keep unreleased UI footage on your machine instead of uploading noisy captures online.
- Target file size: shrink silent demos when SharePoint caps attachment size.
After export, play the file in Movies & TV and confirm no audio device activity. Re-run with re-encode if a silent track remains in the container metadata.
- Convert MOV to MP4 on WindowsConvert MOV to MP4 on Windows with Clipchamp export or FFmpeg. H.264 MP4 for uploads and sharing.
- Extract Audio from MP4 on WindowsExtract audio from MP4 on Windows with FFmpeg. M4A and MP3 for podcasts and lectures.
- How to Compress Video on WindowsHow to compress video on Windows with Clipchamp, FFmpeg, and GetCompress. Smaller MOV and MP4 files for email, Slack, and uploads.
- Convert AVCHD to MP4 on WindowsConvert AVCHD to MP4 on Windows with Clipchamp export or FFmpeg. H.264 MP4 for editing and uploads.
Buy GetCompress now for local media compression with reusable presets and no media upload.