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.mp4

When to use it

  • privacy-safe clips
  • silent previews
  • visual-only exports

How it works

  1. Upload the video.
  2. Run the mapping command to keep video only.
  3. Download the silent MP4.

Option reference

OptionWhat it does
-map 0:vMaps only video streams from the first input.
-c:v copyCopies 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.