ZeroUtil

Audio Trimmer

Cut a section from MP3, WAV, M4A, OGG or FLAC files. Stream-copy is fast and lossless. Files auto-deleted after 15 minutes.

Maintained by

How to Trim an Audio File Online

  1. Drop your audio file onto the upload area. MP3, WAV, M4A, OGG, FLAC up to 500 MB are accepted.
  2. Listen to the preview player to find the start and end points of the section you want to keep.
  3. Type the start and end seconds into the trim range fields. The output length is shown live.
  4. Press Trim audio. The file uploads to our EU servers, FFmpeg cuts the section using stream-copy (lossless), and you download the result.
  5. Both files auto-delete from our servers within 15 minutes.

Why stream-copy keeps quality intact

The trimmer uses FFmpeg's -c copy mode: the audio stream is copied byte-for-byte from the source into the output without going through the encoder. The result is sample-perfect identical to the matching range in the original file - no transcoding loss, no second-generation MP3 artifacts. The downside is that the cut snaps to the nearest keyframe of the source codec, which for MP3 means roughly 26 ms granularity. That is finer than human perception for almost every practical use case.

If you need frame-accurate cuts (down to a single sample) you would need a re-encode pass - we may add that as an option in a future version. For ringtones, podcast highlights, voice memo trimming and music sample extraction the default copy mode is the right choice.

Common use cases

  • Make a ringtone. Trim a 30-second hook out of a song; iOS expects an M4A under 40 seconds.
  • Highlight a podcast moment for sharing on social. Cut the 60 most quotable seconds out of a 90-minute episode.
  • Clean up a voice memo by removing the awkward few seconds at the start before recording started or the dead air at the end.
  • Sample music for a video edit, demo or remix.
  • Cut audiobook chapters into separate files matching chapter boundaries.

Frequently Asked Questions

Does trimming reduce audio quality?

No. With stream-copy the audio bytes are copied directly from the source into the output, with no re-encoding. The trimmed section is sample-perfect identical to the matching range in the original file. The only minor caveat is that the cut snaps to the nearest codec keyframe (~26 ms for MP3) which is well below human perception.

Can I trim multiple sections from the same file?

Not in one pass with this tool. Run the trimmer once per section you want to keep, downloading each piece. To stitch them together afterwards use a separate audio joiner. We may add multi-section trimming as a future feature.

Why is my output format the same as the input?

Stream-copy requires the output container to match the input codec. An MP3 input becomes an MP3 output, a WAV input becomes a WAV output, and so on. To convert format and trim in one step use the audio converter tool with start/end parameters - it does both but re-encodes the audio.

What is the maximum file size?

500 MB per upload. That covers roughly 10 hours of stereo CD-quality WAV, or 100+ hours of typical MP3. If you need more either trim down a copy first locally or use FFmpeg directly: `ffmpeg -ss START -to END -i input.mp3 -c copy output.mp3`.

Why does the trimmer reject my file?

The most common cause is a non-audio file (a video without audio extraction, or a broken file). Make sure the file is a real audio format (MP3, WAV, M4A, OGG, FLAC) and that your browser plays it in the preview before pressing Trim. If the preview duration shows 0:00 the file metadata is unreadable and the trimmer cannot determine valid bounds.

How fast is the operation?

Near-instant for stream-copy. Even a 4-hour audiobook trims in seconds because no re-encoding happens. Upload time dominates total wait.

Are my files private?

Files travel over HTTPS to api.zeroutil.com (EU server). FFmpeg processes them locally on the server, returns a signed download URL, and both input and trimmed output are auto-deleted after 15 minutes. We do not log content, do not transcribe audio, and do not retain anything beyond the deletion window.

More Video & Audio