From owner-freebsd-multimedia Sat Jan 18 4:13:27 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 2267037B401 for ; Sat, 18 Jan 2003 04:13:26 -0800 (PST) Received: from spider.deepcore.dk (cpe.atm2-0-56339.0x50c6aa0a.abnxx2.customer.tele.dk [80.198.170.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 15FC943F5B for ; Sat, 18 Jan 2003 04:13:19 -0800 (PST) (envelope-from sos@spider.deepcore.dk) Received: (from sos@localhost) by spider.deepcore.dk (8.12.5/8.12.6) id h0ICDCA8078729; Sat, 18 Jan 2003 13:13:12 +0100 (CET) (envelope-from sos) From: Soeren Schmidt Message-Id: <200301181213.h0ICDCA8078729@spider.deepcore.dk> Subject: Re: how to 100% copy an audio CD when having IDE drives FBSD 4.7 ? In-Reply-To: <20030118105221.GA18392@titan.klemm.apsfilter.org> To: Andreas Klemm Date: Sat, 18 Jan 2003 13:13:11 +0100 (CET) Cc: multimedia@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL98b (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=ISO-8859-1 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 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