From owner-freebsd-questions Mon Oct 1 15:17:26 2001 Delivered-To: freebsd-questions@freebsd.org Received: from tharmas.rintrah.org (dhcp065-024-230-235.insight.rr.com [65.24.230.235]) by hub.freebsd.org (Postfix) with SMTP id DDB8537B40E for ; Mon, 1 Oct 2001 15:17:22 -0700 (PDT) Received: (qmail 72719 invoked by uid 0); 1 Oct 2001 22:13:54 -0000 Received: from osx.rintrah.org (HELO ?10.0.0.26?) (10.0.0.26) by tharmas.rintrah.org with SMTP; 1 Oct 2001 22:13:54 -0000 From: Devin Smith To: Ronny Walter Cc: Subject: Re: burn an audio-cd Date: Mon, 1 Oct 2001 18:17:23 -0400 Message-Id: <20011001221723.7589@mail.rintrah.org> In-Reply-To: <20011001200003.A783@stardust.sol> References: <20011001200003.A783@stardust.sol> X-Mailer: CTM PowerMail 3.0.9 carbon MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > >Servus, > >I have an atapi-cd-writer on my computer. I have a problem burning >audio-tracks to a cd. I used the following command: > >burncd -s 8 -f /dev/acd1c audio dateien/*.wav > >Then I got the following error-message: > >next writeable LBA 0 >writing from file dateien/a.wav size 10012 KB >only wrote -1 of 37632 bytes > > > >Has anybody an idea, what I am doing wrong? > >Ronny > Try burniing only 1 track (you'll waste a CD, but hey, what are they, $.50 a piece now?) burncd -f /dev/acd1c audio track1.wav fixate If that works, you know everything is burning correctly. To get multiple tracks on one CD, try #!/bin/sh cd dateien for x in `ls *.wav` do burncd -f /dev/acd1c audio $x done burncd -d /dev/acd1c fixate --devin -- Devin Smith | Master of nothing in particular http://127.0.0.1 | devin-freebsdquestions@rintrah.org "How many people do *you* know whose mail server can handle 650MB email attachments?" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message