mp3splt is a free open-source utility to split mp3 and ogg files selecting a begin and an end time position, without decoding (lossless splitting). It's very useful to split large mp3/ogg to make smaller files or to split entire albums to obtain original tracks.
If you want to split an album, you can select split points and filenames manually or you can get them automatically from CDDB (internet or a local file) or from .cue files. Supports also automatic silence split, that can be used also to adjust cddb/cue splitpoints. You can extract tracks from Mp3Wrap or AlbumWrap files in few seconds. For mp3 files, both ID3v1 & ID3v2 tags are supported. Mp3splt-project is split in 3 parts : libmp3splt, mp3splt and mp3splt-gtk.
Supported OSes : GNU Linux, *BSD, MacOS X, BeOS, Windows
How to split MP3 files with mp3splt using a silence threshold
The following command will split FILE.MP3 using a silence threshold of -30 dB, a minimum silence duration of 1 second. The silence will be remove from the resulting files.
Code:
mp3splt -s -p th=-30,min=1,rm FILE.mp3
The command will produce a directory with "Track 0*.mp3" files.
How to join MP3 files with mpgjoin
If you like to join the result MP3 files, run the following command
Code:
mpgjoin *.mp3 -o JOINED.mp3
It will join all MP3 file in the directory, creating the JOINED.mp3 file.