Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 18 Jan 2003 13:13:11 +0100 (CET)
From:      Soeren Schmidt <sos@spider.deepcore.dk>
To:        Andreas Klemm <andreas@klemm.apsfilter.org>
Cc:        multimedia@FreeBSD.ORG
Subject:   Re: how to 100% copy an audio CD when having IDE drives FBSD 4.7 ?
Message-ID:  <200301181213.h0ICDCA8078729@spider.deepcore.dk>
In-Reply-To: <20030118105221.GA18392@titan.klemm.apsfilter.org>

next in thread | previous in thread | raw e-mail | index | archive | help
It seems Andreas Klemm wrote:
> Hi !
> 
> I have FreeBSD 4.7 and a big problem copying Audio CD's with
> IDE hardware...
> 
> How can I automate this process of ripping and burning, to get a
> nearly 100% exact copy of the audio CD ?? With gaps between songs ?

I dont have a script handy but the recipe goes like this:

#open master device (ie acd0c ) so that the individual track devices appear

cdcontrol -f ad0c info

#from above the number of tracks can be derived then read the tracks

for n in 01 02 03 04 ...
do
	dd if=/dev/acd0t$n of=track$n bs=2352
done

#burn copy using DAO mode to make (possibly) exact copy

burncd -f /dev/acd0c -smax -d raw track*

#done!

-Søren

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-multimedia" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200301181213.h0ICDCA8078729>