Combine several MP3s to one MP3

Joined
Nov 10, 2006
Messages
324
Reaction score
6
Points
18
Location
Leeds, England
Your Mac's Specs
17" Core Duo Macbook Pro
Is there any way with the software that comes with OS X to take a load of MP3s and combine them into a single one? I have an audio book I've put on my mac that are ordered by number 001 - 050 and would like to make it one file - is that possible without any extra software?

Thanks.
 
Joined
Apr 11, 2007
Messages
361
Reaction score
13
Points
18
Location
New Mexico, USA
Your Mac's Specs
15" MBP 2.0 GHz, Core Duo, 2 GB Ram
Use Garageband...

open garageband, create a new music project, in bottom right corner of new project window click the plus sign...create a real instrument track.

Now drag the 1st mp3 of your book to that track, and make sure it is butted against the left edge of the track. Now do the same with the 2nd mp3, and butt it against the right edge of the 1st, and so on. Now export, Share this as an mp3.

Brian
 
Joined
Feb 9, 2005
Messages
2,340
Reaction score
82
Points
48
Location
DFW
Your Mac's Specs
MacBook Pro 13" | MacBook Pro 13" | Mac Mini 2GHz C2D
there was an article in Macworld about how to join tracks in iTunes. when i get home i will post the info.
 
Joined
Jul 6, 2007
Messages
681
Reaction score
13
Points
18
Location
UK
Your Mac's Specs
MBP : 2.4GHz : 2GB RAM : 256MB VRAM : 160GB HDD
I used MP3 Trimmer to do this awhile back (yeah, I know it's called MP3 Trimmer, but it also joins tracks). Probably easier than doing it manually in GarageBand.
 
Joined
Jul 24, 2006
Messages
666
Reaction score
20
Points
18
Location
Long Beach Island, NJ
Your Mac's Specs
MBP l iPhone l iPod
this is what was in mac world . its in the section "mind the gap" heres another link
 

bobtomay

,
Retired Staff
Joined
Dec 22, 2006
Messages
26,561
Reaction score
677
Points
113
Location
Texas, where else?
Your Mac's Specs
15" MBP '06 2.33 C2D 4GB 10.7; 13" MBA '14 1.8 i7 8GB 10.11; 21" iMac '13 2.9 i5 8GB 10.11; 6S
There are drawbacks to all the options above. First, it would be best to put the mp3's comprising your book into the Audiobooks folder. That way you don't have to worry about your book starting if you just want to listen to your music on shuffle play. Second, you want your books to be bookmarkable. Meaning, the next time you start listening to your book, it starts playing where you left off last time.

I just did a tutorial on this a couple of weeks ago and can be found here.

There are several other methods I found and tried. But this really was the easiest and fastest method at accomplishing the task.

I have two tutorials there. For what you want to accomplish, you will need Post # 1 & 3.
It does require "extra" software (all free).
These two tutorials are the result of reading through every link related to this matter on at least the first 5 pages of several google searches. I found no other step by step method on getting it done.
 
Joined
May 27, 2006
Messages
445
Reaction score
16
Points
18
Location
Concord, NC
Your Mac's Specs
Macbook Pro 17" 2.6GHz 4GB RAM
Here's a simple shell script that I wrote for you:

#!/bin/sh


for SRC in $(ls *.mp3)
do
cat $SRC >> master.mp3
done

exit 0


1. Put it in a file saved as joinmp3.sh (or whatever...).
2. Open Terminal and type do chmod +x joinmp3.sh.
3. Move the shell script to the same directory as the mp3s.
4. Run it via Terminal by typing sh joinmp3.sh .
5. You'll end up with a final master.mp3 file.
 

Shop Amazon


Shop for your Apple, Mac, iPhone and other computer products on Amazon.
We are a participant in the Amazon Services LLC Associates Program, an affiliate program designed to provide a means for us to earn fees by linking to Amazon and affiliated sites.
Top