Remove Audio From MP4
Strip the audio tracks from an MP4 while copying its existing video stream when the codec and container are compatible.
あらゆるビデオ ファイルから音声を即座に削除します。
Supports MP4, WebM, MOV, and other video formats that FFmpeg WebAssembly can read.
This video format cannot be previewed by your browser, but FFmpeg may still be able to remove its audio.
All audio tracks will be removed. The video stream is copied without video re-encoding whenever the source container supports it.
Remove the audio track from a video while keeping the existing video stream. CyberTools uses FFmpeg WebAssembly in your browser and applies audio removal with stream copy, so compatible videos do not need to be video-encoded again.
Upload a supported video and click Mute Video. CyberTools runs FFmpeg WebAssembly in your browser with the -an option to remove audio and -c:v copy to copy the existing video stream. The result is a silent video without a video re-encode when the source stream is compatible with the output container.
Removing audio is useful when you need a silent video, want to replace the soundtrack later, need cleaner footage for editing, or want media that can autoplay without sound.
Strip the audio tracks from an MP4 while copying its existing video stream when the codec and container are compatible.
Create a silent WebM by removing its audio while preserving the existing video bitstream when FFmpeg can stream-copy it.
Remove the audio track from a MOV file without intentionally changing the video stream.
Generate a version of a video with no original audio tracks for presentations, websites, previews, or background playback.
Remove the existing soundtrack before adding replacement music or narration in another editing workflow.
Create silent media for interfaces and websites where muted video playback is preferred or required.
Muting a video can mean different things. CyberTools removes the audio tracks entirely rather than merely reducing their volume, and it copies the video stream instead of deliberately re-encoding it.
| Method | What It Does | Main Advantage | Important Detail |
|---|---|---|---|
| Remove audio track | Outputs video with no original audio stream | Creates a genuinely silent file | Audio information is not retained in the output |
| Set audio volume to zero | Keeps an audio stream but makes it silent | Audio structure remains available | The file still contains an audio track |
| Video stream copy | Copies encoded video packets without a video re-encode | Fast and avoids generational video encoding loss | The copied video codec must be valid in the output container |
| Full video re-encode | Decodes and encodes the video again | Can change codec, dimensions, bitrate, or other properties | Usually takes longer and can introduce encoding loss |
| Mute MP4 | Removes audio from an MP4-compatible workflow | Useful for broad playback compatibility | Actual success depends on the streams inside the MP4 |
| Mute WebM or MOV | Removes audio while retaining the source container extension | Useful when you want to keep the same general file format | Stream-copy compatibility depends on the source codec and container |
The current Video Muter uses FFmpeg WebAssembly in the browser. It writes the selected video into FFmpeg's virtual filesystem, removes audio with -an, copies the video stream with -c:v copy, then returns the resulting silent file to the browser.
The selected video is read by the browser and written into FFmpeg's in-memory virtual filesystem.
The FFmpeg -an option tells the output process not to include audio streams.
The -c:v copy option copies the existing encoded video stream instead of decoding and re-encoding it.
The current workflow creates the muted output using the source file's extension.
After FFmpeg finishes, the result is read back into browser memory and exposed as an Object URL for preview and download.
The temporary input and output files are removed from the FFmpeg virtual filesystem after successful processing.
Use stream-copy muting when your goal is simply to remove sound and you do not need to change the video codec, resolution, frame rate, bitrate, or visual appearance.
This directly removes audio without unnecessarily encoding the video again.
The encoded video packets are copied rather than recreated through another encoding pass.
Stream copy cannot convert H.264 to VP9, AV1, HEVC, or another codec.
Removing audio can reduce the file somewhat, but it does not compress the copied video stream.
A silent video is a clean starting point for adding a new soundtrack in an editing tool.
A stream-copy operation can fail when the output container cannot hold the source video codec.
The current muting workflow removes audio and copies the encoded video stream with -c:v copy. That means CyberTools does not intentionally re-encode the video stream during a successful stream-copy mute operation.
The existing encoded video packets are copied into the output instead of being decoded and encoded again.
Because the video stream is copied, the muting command does not apply a new video CRF, bitrate, preset, or resolution setting.
The output can be smaller because the original audio streams are not included, although the video stream itself is not compressed further.
The tool does not improve low-quality source footage. It preserves the existing encoded video stream when stream copy succeeds.
Output file size may differ slightly because containers include metadata and structural overhead in addition to media streams.
If the source video codec cannot be copied into the output container, the current stream-copy operation can fail instead of automatically re-encoding the video.
The current CyberTools Video Muter performs its main FFmpeg operation inside your browser using FFmpeg WebAssembly.
Removing audio is a narrow media operation. It does not replace a full video converter, compressor, audio editor, or timeline editor.
These concepts explain why removing audio can be fast, why the video does not need another encoding pass, and why some files may still be incompatible with stream copy.
An audio stream stored inside a media container alongside video or other media streams.
The encoded sequence of video data stored inside a media file.
A process that copies an already encoded media stream into a new output without decoding and re-encoding that stream.
An FFmpeg output option that disables audio streams in the output.
An FFmpeg option that copies the existing encoded video stream instead of using a video encoder.
A method used to encode or decode media, such as H.264, VP9, AV1, HEVC, AAC, or Opus.
A file structure such as MP4, WebM, or MOV that can hold video, audio, metadata, and other media streams.
A media-processing framework used to inspect, copy, encode, decode, and transform audio and video streams.
A browser technology that allows compiled software such as FFmpeg to run inside a web page.
A video file whose output contains video but no original audio tracks.
Answers about removing video audio, stream copy, supported formats, video quality, browser processing, and FFmpeg behavior.