On Saturday 20 March 2004 02:46 pm, David E. Fox wrote:
> On Mon, 15 Mar 2004 01:21:20 +0200
>
> robin <[EMAIL PROTECTED]> 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
>

Here's what I do:

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 CL.


#!/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
  4:03pm  up 12 days, 23:50,  7 users,  load average: 0.28, 0.25, 0.20


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com
____________________________________________________
Join the Club : http://www.mandrakeclub.com

Reply via email to