Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 05 Feb 2001 13:51:38 -0600 (CST)
From:      Conrad Sabatier <cjsabatier@home.com>
To:        Pater Pandoson <ppandoson@eCoNeed.com>
Cc:        "freebsd-questions@FreeBSD.ORG" <freebsd-questions@FreeBSD.ORG>
Subject:   RE: burn audio cds on a IDE burner
Message-ID:  <XFMail.010205135138.cjsabatier@home.com>
In-Reply-To: <3A7EF9E2.3E36F9F6@eCoNeed.com>

next in thread | previous in thread | raw e-mail | index | archive | help

On 05-Feb-01 Pater Pandoson wrote:
> How do I best create audio cd's from my mp3 collection, to
> tide me over during theses moments when I have no mp3
> player near me.
> 
> using this was suggested to me.
> mpg123 --cda - song,mp3 > track1.cda
> 
> however this dos not produce anything near listenable.
> when I use burncd to create the cd.
> 
> Thanks.

for f in *.mp3
do
        mpg123 -w "`basename \"$f\" .mp3`.wav" "$f"
done

burncd -f <cd/rw device> -s <write speed> audio *.wav fixate

-- 
Conrad Sabatier
cjsabatier@home.com



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?XFMail.010205135138.cjsabatier>