Skip to content

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.

By Petr Samokhin

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.

ScenarioWhy silence helps
Demo under live presenter audioPrevents double sound in the room
QA screen recordingRemoves keyboard and notification noise
B-roll under new soundtrackAvoids clashing music
Slightly smaller attachmentDrops 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.

  1. Open the video in Clipchamp.
  2. Select the audio track and mute or delete it on the timeline.
  3. 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.

GoalTool
Quick mute for internal useClipchamp
Guaranteed no audio streamFFmpeg -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"
  }
}
FlagPlain meaning
-anNo audio streams in output
-c:v copyKeep video unchanged; instant
-movflags +faststartWeb-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.

Buy GetCompress now for local media compression with reusable presets and no media upload.