Date: Mon, 1 Oct 2001 18:17:23 -0400 From: Devin Smith <devin-freebsdquestions@rintrah.org> To: Ronny Walter <mail@ronnywalter.de> Cc: <freebsd-questions@freebsd.org> Subject: Re: burn an audio-cd Message-ID: <20011001221723.7589@mail.rintrah.org> In-Reply-To: <20011001200003.A783@stardust.sol> References: <20011001200003.A783@stardust.sol>
next in thread | previous in thread | raw e-mail | index | archive | help
> >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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20011001221723.7589>