Category Archives: mp3

Converting Monkey’s Audio (ape) to flac in Ubuntu

Converting .ape files to the flac format in linux requires both the “mac” and “flac” software packages. For details on installing mac in ubuntu see here. To install flac enter the following in a terminal window:
sudo aptitude install flac
Audio file format conversions can be performed from the command line, or via the GUI using soundKonverter.
If [...]

Splitting mp3 by cue file in ubuntu

Use mp3splt to break up an mp3 file according to the break points contained in a cue file. To install mp3splt open a terminal window and enter the following:
sudo aptitude install mp3splt
To split an mp3 file named “music.mp3″ using a cue file named “music.cue” issue the following in a terminal window:
mp3splt -c music.cue music.mp3
Links:
Mp3splt Homepage
Music [...]