Break one long file into multiple shorter pieces. Three modes: equal parts (cut into N sections of equal length), by duration (every X seconds), or custom markers (split at specific timestamps). The reverse operation of the Audio Merger.
Any audio file — interview, mixtape, album bounce, lecture recording.
Up to 200 MB
Equal parts: N sections of identical length (good for splitting a recording in half or thirds). By duration: every X seconds (good for chunking long files into upload-friendly sizes). Custom markers: enter exact timestamps where each cut happens (good for splitting an album into tracks).
0.01s precision in custom mode
Web Audio slices the buffer at the boundaries you set and emits one WAV per piece. Download individually or all at once.
Output: multiple 16-bit WAV files
Use Custom markers mode. Enter the start time of each track as a separate marker. For an album with 12 tracks you'd enter 11 markers (the boundaries between tracks). The first piece runs from 0 to marker 1, the next runs from marker 1 to marker 2, and so on. Track times are usually in the album's tracklist or you can find them visually by scrubbing the file in any media player.
Long-form recordings that need to be chunked into uniform pieces — splitting a 90-minute recording into 10-minute chunks for cloud upload limits, splitting a podcast into evenly-sized social clips, or chunking a lecture for student playback.
Yes. Each boundary is converted to a sample index at the source's sample rate, so concatenating all the output pieces would reproduce the original file bit-for-bit. Each cut happens at an exact sample, not an approximation.
Splitting decoded PCM samples and writing them back is lossless to WAV. Re-encoding each piece to MP3 here would force lossy compression for no reason. If you need MP3 outputs, run each split through the WAV to MP3 converter or use a batch encoder.