Join multiple MP3 files (lossless)

6

3

How do you join multiple MP3 files into one? "cat" and "mp3wrap" are no good as they produce non standard MP3 files. I know I can use audacity, but when you have 1000's of MP3 files to join into one, it takes too long.

Any suggestions?

oshirowanen

Posted 2010-10-24T10:45:15.987

Reputation: 1 858

Keep in mind that MP3 is not a lossless format. Concatentating the audio requires re-encoding them. (Although I'm not 100% sure on this. A while ago somebody figured out how to do certain manipulations on jpg images, another lossy format, without having the re-encode them. While the format is lossy, the transforms were lossless.) – Ouroborus – 2015-12-17T05:44:50.783

Answers

6

Use ffmpeg or a similar tool to convert all of your MP3s into a consistent format, e.g.

ffmpeg -i originalA.mp3 -f mp3 -ab 128kb -ar 44100 -ac 2 intermediateA.mp3 ffmpeg -i originalB.mp3 -f mp3 -ab 128kb -ar 44100 -ac 2 intermediateB.mp3

Then, at runtime, concat your files together:

cat intermediateA.mp3 intermediateB.mp3 > output.mp3

Finally, run them through the tool MP3Val to fix any stream errors without forcing a full re-encode:

mp3val output.mp3 -f -nb
(source)

Nifle

Posted 2010-10-24T10:45:15.987

Reputation: 31 337

1@mykhal But Amarok and Clementine do not; they show the original first file's length. – Mr Lister – 2014-07-29T06:11:18.093

1So it's not possible to do this lossless? – oshirowanen – 2010-10-24T20:05:56.777

@oshirowanen maybe using VBR it's possible, did you try that? – Tobias Kienzler – 2011-08-24T12:56:27.020

interesting, simple catting 2 mp3 files (extracted 2CD movie audio track) automagically works, mplayer shows correct total duration – mykhal – 2011-10-23T21:10:07.203

11

You can do this programmatically with ffmpeg's concat demuxer.

First, create a file called inputs.txt with lines like

file '/path/to/input1.mp3'
file '/path/to/input2.mp3'
file '/path/to/input3.mp3'

...etc. Then, run the following ffmpeg command:

ffmpeg -f concat -i inputs.txt -c copy output.mp3

It's possible to generate inputs.txt easily with a bash for loop (this can probably be done with a Windows batch for loop too), assuming you want to merge the files in alphabetical order. This will match every *.mp3 in the working directory, but it can be easily modified:

for f in ./*.mp3; do echo "file '$f'" >> inputs.txt; done
##  Alternatively
printf "file '%s'\n" ./*.mp3 >> inputs.txt

It's also possible to do the entire thing in one line, avoiding the creation of an intermediate list file with process substitution:

ffmpeg -f concat -i <(printf "file '%s'\n" ./*.mp3) -c copy output.mp3

evilsoup

Posted 2010-10-24T10:45:15.987

Reputation: 10 085

+1 However, as per this answer, you can specify the files inline with "concat:file1.mp3|file2.mp3" instead of inputs.txt, and then -f concat is unnecessary.

– Sparhawk – 2017-05-01T03:53:15.307

The process substitution example here creates an input list that ffmpeg doesn't like; it barfs for me with [concat @ 0x10201a200] Impossible to open '/dev/fd/./01 Track.mp3'. I fixed it by making the path to the files absolute: ffmpeg -f concat -i <(printf "file '/path/to/files/%s'\n" *.mp3) -c copy output.mp3 – Neil C. Obremski – 2014-02-24T21:15:41.400

1

Freemake Audio Converter is great:

http://www.freemake.com/free_audio_converter/

Converts and/or joins audio files.

After downloading and installing Freemake (be careful not to install Ad-Aware Web Companion, TuneUp Utilities, Opera, or set Yahoo! as your homepage), launch the program. Click the +Audio button at the top left of the window, and select the files you want to merge/convert.

Click the Join files "switch" at the top right of the window.

Select the audio type you want (probably FLAC for lossless)

It will let you customize your audio settings and output folder. Once you're ready click convert.

Clefspeare13

Posted 2010-10-24T10:45:15.987

Reputation: 56

0

Goldwave has some batch processing capabilities, though it's shareware, not freeware.

Force Flow

Posted 2010-10-24T10:45:15.987

Reputation: 3 850

0

You can use the free mp3cat:

mp3cat indir - > outfile.mp3

niutech

Posted 2010-10-24T10:45:15.987

Reputation: 763

This doesn't currently work unless you've used mp3cat to make a recording in the correct format: https://tomclegg.ca/mp3cat

– Louis – 2018-07-15T16:50:31.440