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
-
-androps all audio streams from the output -
-c:v copycopies 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
Uses -map 0:v to explicitly select only video streams — useful when the file has multiple tracks.
Re-encodes the video with libx264 at CRF 23. Slower than copy but ensures maximum compatibility and smaller file size.
Bash loop that processes every *.mp4 in the current directory and writes silent copies to a silent/ subfolder.
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
- Enter the name of your input video file (e.g. interview.mp4).
- Enter the desired output filename (e.g. interview_silent.mp4).
- Choose the output container format: MP4, MKV, MOV, WebM, or AVI.
- The tool builds the FFmpeg command with the -an flag to drop all audio streams.
- The -c:v copy flag ensures the video is remuxed without re-encoding — fast and lossless.
- 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.