From owner-freebsd-multimedia Sat Jan 18 4:23:48 2003 Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 52B9637B401 for ; Sat, 18 Jan 2003 04:23:47 -0800 (PST) Received: from smtp0.libero.it (smtp0.libero.it [193.70.192.33]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4296043F3F for ; Sat, 18 Jan 2003 04:23:46 -0800 (PST) (envelope-from delrosso.a@inwind.it) Received: from homer.freebsd.home (62.98.97.132) by smtp0.libero.it (6.7.015) id 3E1B0377004E1A13; Sat, 18 Jan 2003 13:23:40 +0100 Received: by homer.freebsd.home (Postfix, from userid 1000) id 780E2350; Sat, 18 Jan 2003 13:23:48 +0100 (CET) Date: Sat, 18 Jan 2003 13:23:48 +0100 From: UndeRsc0re To: Soeren Schmidt 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> X-Mailer: Sylpheed version 0.8.8claws (GTK+ 1.2.10; i386-portbld-freebsd4.7) Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Sat, 18 Jan 2003 13:13:11 +0100 (CET) Soeren Schmidt 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