When you trim an audio file, you expect the result to sound identical to the original — just shorter. Whether that's actually true depends on whether the tool used stream copy or re-encoding. Most people don't know the difference, but it affects both speed and quality.
How stream copy works for audio
An audio file is a container (MP3, WAV, OGG, etc.) holding encoded audio data. Stream copy means the tool reads your specified start and end points, finds the nearest valid cut positions in the audio bitstream, and copies that portion to a new file. No decoding, no encoding — just a binary copy of the audio data between your cut points.
The result is immediate. A 2-hour WAV file trimmed to a 10-minute segment takes the same time as copying 10 minutes' worth of audio data — essentially instant. The output is bit-for-bit identical to the original for the copied section.
Which formats support lossless stream copy trimming
| Format | Stream copy? | Notes |
|---|---|---|
| WAV | Yes | Sample-accurate cuts possible |
| FLAC | Yes | Sample-accurate cuts possible |
| OGG Vorbis | Yes (with minor offset) | Page-boundary alignment required |
| AAC | Yes (with minor offset) | Frame-boundary alignment |
| MP3 | Partial | May re-encode small sections at cut points |
The MP3 caveat
MP3 stores audio in frames of ~26ms each. Stream copy can only cut at frame boundaries, so the actual cut point may be up to 26ms away from your specified time. For most audio trimming — removing a 5-second intro, cutting to a rounded timestamp — this is completely unnoticeable. For synchronised audio that must align with video to the frame, you need re-encoding.
When re-encoding is the better choice
- You need sample-accurate cuts in MP3 (rare in practice).
- You want to change the audio format at the same time as trimming.
- You need to apply volume normalisation or effects to the trimmed segment.
- The source file has encoding issues that cause problems with stream copy.
For the vast majority of audio trimming tasks — cutting silence, extracting a segment, removing an intro — stream copy is exactly what you want. It's faster, lossless, and simpler.
Trim audio with stream copy
ZenTools Audio Trimmer uses FFmpeg stream copy for near-instant, lossless results.
Open Audio Trimmer