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

next in thread | previous in thread | raw e-mail | index | archive | help
On Sat, 18 Jan 2003 13:13:11 +0100 (CET)
Soeren Schmidt <sos@spider.deepcore.dk> scrisse:

>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
Hi , i use this:
#!/bin/sh
cd /where/you/want/tmp/

echo "Cdda2wav !!"
cdda2wav -v255 -D/dev/acd1c -S32 -x -Oraw  -E little -B &&

echo "Burncd !!"

burncd -v -s 8 -f/dev/acd0a raw audio*.raw fixate
rm audio_*

voila' :-))
Ciao,
Antonio

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?20030118132348.36801008.delrosso.a>