Hmm, this didn't show up yet though one I sent after did, sorry for the dupe 
msg if the original shows up.


----------  Forwarded Message  ----------

Subject: Re: [newbie] MP3 -> audio CD
Date: Sun, 14 Mar 2004 20:37:49 -0600
From: Chris <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]

On Sunday 14 March 2004 05:21 pm, robin wrote:
> Can anyone recommend a program to make normal audio CDs from a bunch of
> mp3s? Googling found me a program which retails at $799. For that, I
> wouldn't want a program to make CDs, I'd want a program that could model
> Gollum.
>
> Sir Robin

How about this, got it from this list quite awhile back, I can't remember
who posted it.  I run mp3_check first, then mp32wav, then normalize -m then
I run Tom Brinkmans bacd (thanks Tom) alias file.  Works great and all on
the CLI.


#!/bin/bash
# mp32wav

mp3file="$*"
mkdir wav


for file in "$@"  ; do
        #echo "$file"
        wavfile=`echo "$file" | sed s/\\.mp3/.wav/`
        printf "%-50s %-50s\n" "$file" "--> $wavfile"

        # to encode wav-->mp3
        #lame -h "$file" "$mp3file"

        # to encode mp3-->wav
        mpg123 -b 10000 -s "$file" | sox -t raw -r 44100 -s -w -c2 -
"wav/$wavfile"
done

HTH

-- 
  Regards
  Chris
  A 100% Microsoft free computer
  Registered Linux User 283774 http://counter.li.org
  9:10pm  up 7 days,  4:56,  6 users,  load average: 0.24, 1.14, 0.81


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com

Reply via email to