Video Muter

Generate the exact FFmpeg command to remove audio from any video file — paste your filenames, copy the command, run it locally.

Mute Settings

Include the file extension (mp4, mkv, mov, avi, webm, ...)

What this command does

  • -an drops all audio streams from the output
  • -c:v copy copies video stream without re-encoding — no quality loss, very fast
  • Output file is identical to input video — same resolution, frame rate, and codec

FFmpeg Command


            

Requires FFmpeg installed on your machine. Run in your terminal from the folder containing the video file.

Alternative Commands

Keep only video stream (explicit mapping)

                    

Uses -map 0:v to explicitly select only video streams — useful when the file has multiple tracks.

Mute and re-encode to H.264 (MP4)

                    

Re-encodes the video with libx264 at CRF 23. Slower than copy but ensures maximum compatibility and smaller file size.

Batch — mute all MP4 files in a folder

                    

Bash loop that processes every *.mp4 in the current directory and writes silent copies to a silent/ subfolder.

Copied!

Summary

Generate the exact FFmpeg command to remove audio from any video file — paste your filenames, copy the command, run it locally.

How it works

  1. Enter the name of your input video file (e.g. interview.mp4).
  2. Enter the desired output filename (e.g. interview_silent.mp4).
  3. Choose the output container format: MP4, MKV, MOV, WebM, or AVI.
  4. The tool builds the FFmpeg command with the -an flag to drop all audio streams.
  5. The -c:v copy flag ensures the video is remuxed without re-encoding — fast and lossless.
  6. Click "Copy command" and paste it into your terminal to run the mute.

Use cases

  • Remove unwanted background noise or music from a screen recording.
  • Prepare a silent B-roll clip before adding a new voiceover in an editor.
  • Strip audio from a video before publishing when audio rights are unclear.
  • Reduce file size slightly by dropping unused audio tracks from archival footage.
  • Create silent versions of ads or social videos for autoplay-muted feeds.
  • Remove sensitive audio from a video before sharing it externally.

Frequently Asked Questions

Last updated: 2026-06-11 · Reviewed by Nham Vu