Browser FFmpeg recipe
Mute Video Online with FFmpeg
Keep only the video stream and write a silent output file.
Command
Run this FFmpeg command
ffmpeg -i input.mp4 -map 0:v -c:v copy silent.mp4When to use it
- privacy-safe clips
- silent previews
- visual-only exports
How it works
- Upload the video.
- Run the mapping command to keep video only.
- Download the silent MP4.
Option reference
| Option | What it does |
|---|---|
-map 0:v | Maps only video streams from the first input. |
-c:v copy | Copies the video stream without re-encoding. |
Practical notes
- This recipe is similar to remove-audio, but uses stream mapping for clarity.
- If your file has multiple video streams, check the FFmpeg console output.
FAQ
Is mute video different from remove audio?
They are usually equivalent. This version explicitly maps only video streams.
Will the output file be smaller?
Usually yes, because the audio stream is removed.