Double Cds

Posted by: thinfourth2

Double Cds - 04/11/2003 03:41

Now we all know that this is really a throw back to the fact that you can't get 40 songs on on CD so therefore most compliation albums come as double CDs.

As an empeg or any half decent Mp3 player this is not a limiting factor as we can have if we wanted a compliation 400 tracks long.

Now when i get a double CD and rip it i get to directorys with Cd1 tracks 1 to 20 and then CD2 with tracks 1 to 20 but when i stick this over to my empeg it becomes the album tracks 1 to 40 but i do this manualy.

is there anyway that this can be done automatically to combine them together and add the track numbers up so we end up with one directory with track number 1 to 40 which we then just flip across to the empeg or whatever.
Posted by: sundayjumper

Re: Double Cds - 04/11/2003 07:06

I don't have too many albums like this, but the ones I do I rip into one directory with filenames 1.01, 1.02.....1.20, 2.01, 2.02.....2.20. Then they all end up in the right order and you can still tell which disc they came from (if that's important).

Steve.
Posted by: thinfourth2

Re: Double Cds - 04/11/2003 07:27

i don't have a problem as all i do is rip into two directorys then upload the two onto the empeg then cut the second one out and paste it at the end of the second

What i want is for something like Mp3tagstudio so i can just update the track numbers to reflect it is in fact one album instead of two
Posted by: mtempsch

Re: Double Cds - 04/11/2003 10:27

Tag & Rename allows you to pick a starting number when autonumbering the files.
Could be handy for all the audio books I rip, but I use another method: rip each CD with the CD# in the Album tag and file name; at the end toss all files in one folder, sort on file name and then autonumber them all at once, then fix the Album tag and adjust the filename. Might sound cumbersome, but it all goes very smoothly in T&R...

/Michael
Posted by: thinfourth2

Re: Double Cds - 04/11/2003 11:51

Is tag&rename a program or a part of tag studio i haven't fond yet
Posted by: tfabris

Re: Double Cds - 04/11/2003 11:54

Tag & Rename is a different product than Tag Studio. They perform similar functions with different user interfaces.
Posted by: mtempsch

Re: Double Cds - 04/11/2003 13:05

Sorry Paul, should've linked it.
As Tony said, does about the same things as Tag Studio, but with a different GUI approach.

/Michael
Posted by: webroach

Re: Double Cds - 04/11/2003 22:21

Another option people may want to look into is MP3 Book Helper. It's the tagging program I use, and the fact that you can use pretty standard regex in the tagging commands makes it nice and quick when you have a complicated rename.

Also makes it easy to do the multi-disc re-number trick:

Drag the ALBUM_CD1 folder onto the program, then the ALBUM_2, and tell it to start counting at 1. Nice and tidy.
Posted by: drakino

Re: Double Cds - 06/11/2003 19:47

Being that I know you have a Powerbook, you might want to look at MP3 Rage, the best OS X tagger I have found.
Posted by: wfaulk

Re: Double Cds - 10/11/2003 11:19

I don't quite follow what you're asking, but when I have a multi-CD set, I create a playlist for the set that contains one playlist for each CD, each of which then contains the tracks on the appropriate CD. That way it's easy to play the whole set and it's easy to play only one CD.
Posted by: tms13

Re: Double Cds - 03/12/2003 19:34

Here's the script I use to set appropriate trackno tags. For a typical double album, I use it like

mp3-renumber 1 disc*/*.mp3

or you can change the number 1 to run it only on the second disc. I had to do this for some of my Harry Potter discs when I ran into command-line length limits. In fact, I reached the 127 limit on track number - someone obviously used a signed type when they shouldn't have!

Anyway here's the shell code:


#!/bin/bash

# Renumbers a sequence of MP3 files. Useful for multi-disc albums.

if test $# -eq 0; then echo "$0 startnum file ..."; fi

i=$1; shift

while test $# -gt 0
do
id3v2 -T $i "$1"
i=`expr $i + 1`
shift
done