Re: [newbie] mp3s to wav/cd burning

2005-03-25 Thread rnmscott
Quoting Duncan Anderson [EMAIL PROTECTED]: Otherwise, you can use various methods via the shell. One that I always used to use was this: for FILE in *.mp3 do FILE=`echo $FILE | sed s/.mp3//g` mpg123 -s $FILE.mp3 $FILE.raw sox -r 44100 -w -s -c 2 $FILE.raw $FILE.wav

Re: [newbie] mp3s to wav/cd burning

2005-03-22 Thread Chris
On Friday 18 March 2005 10:13 pm, Smiley wrote: On Fri, 18 Mar 2005 22:00:09 -0600 Mikkel L. Ellertson [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] wrote: What do people use for making music cds from mp3s? k3b I did with gnome-toaster five years ago :) There's also gdrdao (GUI for

Re: [newbie] mp3s to wav/cd burning

2005-03-22 Thread Mikkel L. Ellertson
Chris wrote: On Friday 18 March 2005 10:13 pm, Smiley wrote: On Fri, 18 Mar 2005 22:00:09 -0600 Mikkel L. Ellertson [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] wrote: What do people use for making music cds from mp3s? k3b I did with gnome-toaster five years ago :) There's also gdrdao (GUI for

Re: [newbie] mp3s to wav/cd burning

2005-03-22 Thread Chris
On Tuesday 22 March 2005 08:19 pm, Mikkel L. Ellertson wrote: I got into this thread a little late, kind of behind on reading, anyway, I use the below script in 9.0, called mp32wav. #!/bin/bash # mp32wav mp3file=$* mkdir wav for file in $@ ; do #echo $file

Re: [newbie] mp3s to wav/cd burning

2005-03-22 Thread Mikkel L. Ellertson
Chris wrote: On Tuesday 22 March 2005 08:19 pm, Mikkel L. Ellertson wrote: I got into this thread a little late, kind of behind on reading, anyway, I use the below script in 9.0, called mp32wav. #!/bin/bash # mp32wav mp3file=$* mkdir wav for file in $@ ; do #echo $file

Re: [newbie] mp3s to wav/cd burning

2005-03-21 Thread Duncan Anderson
Mikkel L. Ellertson wrote: I like to make scripts a bit more bullet proof... I would probably change it to: for i in *.mp3 ; do name=$(basename $i .mp3) mpg123 -s $name.mp3 | sox -f 44100 -w -s -c 2 - $name.wav done This way, it handles files with spaces in the name, and you avoid having

Re: [newbie] mp3s to wav/cd burning

2005-03-21 Thread Mikkel L. Ellertson
Duncan Anderson wrote: Mikkel L. Ellertson wrote: I like to make scripts a bit more bullet proof... I would probably change it to: for i in *.mp3 ; do name=$(basename $i .mp3) mpg123 -s $name.mp3 | sox -f 44100 -w -s -c 2 - $name.wav done This way, it handles files with spaces in the name,

Re: [newbie] mp3s to wav/cd burning

2005-03-21 Thread Duncan Anderson
Mikkel L. Ellertson wrote: lower case names for local varables - so you don't break things if you deside to source the code from another script. Mikkel, Explain this to me, I don't quite follow your rationale here. I always use upper case for variable names so they can be clearly seen as such

Re: [newbie] mp3s to wav/cd burning

2005-03-21 Thread Mikkel L. Ellertson
Duncan Anderson wrote: Mikkel L. Ellertson wrote: lower case names for local varables - so you don't break things if you deside to source the code from another script. Mikkel, Explain this to me, I don't quite follow your rationale here. I always use upper case for variable names so they can be

Re: [newbie] mp3s to wav/cd burning

2005-03-21 Thread riccardo
On Monday 21 March 2005 06:44 pm, Mikkel L. Ellertson's email resulted: 0.6 RATWR10_MESSID Message-ID has ratware pattern (HEXHEX.HEXHEX@) 0.1 HTML_60_70 BODY: Message is 60% to 70% HTML 0.0 HTML_MESSAGE BODY: HTML included in message 6.1 T_RATWARE_OOPS_05 BODY: Spammer

Re: [newbie] mp3s to wav/cd burning

2005-03-21 Thread Duncan Anderson
Mikkel L. Ellertson wrote: If you are using a varable in a loop, and its value only has meaning in that loop, but not in the rest of the script, use a lowercase name. For example: for name in *.txt ; do file $name done For small scripts, it is not too important, unless you do something like .

Re: [newbie] mp3s to wav/cd burning

2005-03-21 Thread Rob Blomquist
On Friday 18 March 2005 19:37, [EMAIL PROTECTED] wrote: Hi, What do people use for making music cds from mp3s? I have an old italian cd burning software on my old NT machine that happily does this automatically, is there something similar avaialable? Is K3B too easy to use for you guys?

Re: [newbie] mp3s to wav/cd burning

2005-03-21 Thread Mikkel L. Ellertson
Duncan Anderson wrote: JoeHill wrote: On Sat, 19 Mar 2005 14:37:18 +1100 [EMAIL PROTECTED] disseminated the following: What do people use for making music cds from mp3s? Check out ROXDAO. The site is offline right now, but check it out later, very nice GUI for burning audio CD's, you can

Re: [newbie] mp3s to wav/cd burning

2005-03-20 Thread JoeHill
On Sat, 19 Mar 2005 14:37:18 +1100 [EMAIL PROTECTED] disseminated the following: What do people use for making music cds from mp3s? Check out ROXDAO. The site is offline right now, but check it out later, very nice GUI for burning audio CD's, you can see a shot of it on my site.

Re: [newbie] mp3s to wav/cd burning

2005-03-20 Thread Duncan Anderson
JoeHill wrote: On Sat, 19 Mar 2005 14:37:18 +1100 [EMAIL PROTECTED] disseminated the following: What do people use for making music cds from mp3s? Check out ROXDAO. The site is offline right now, but check it out later, very nice GUI for burning audio CD's, you can see a shot of it on my

Re: [newbie] mp3s to wav/cd burning

2005-03-20 Thread Duncan Anderson
Duncan Anderson wrote: JoeHill wrote: Check out ROXDAO. The site is offline right now, but check it out later, very nice GUI for burning audio CD's, you can see a shot of it on my site. http://kymatica.com/software.html I am having problems accessing that URL. The site is offline right now,

[newbie] mp3s to wav/cd burning

2005-03-18 Thread rnmscott
Hi, What do people use for making music cds from mp3s? I have an old italian cd burning software on my old NT machine that happily does this automatically, is there something similar avaialable? Thanks, Richard This email was sent

Re: [newbie] mp3s to wav/cd burning

2005-03-18 Thread Mikkel L. Ellertson
[EMAIL PROTECTED] wrote: Hi, What do people use for making music cds from mp3s? I have an old italian cd burning software on my old NT machine that happily does this automatically, is there something similar avaialable? Thanks, Richard k3b Want

Re: [newbie] mp3s to wav/cd burning

2005-03-18 Thread Smiley
On Fri, 18 Mar 2005 22:00:09 -0600 Mikkel L. Ellertson [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] wrote: What do people use for making music cds from mp3s? k3b I did with gnome-toaster five years ago :) There's also gdrdao (GUI for cdrdao) wich entirely devoted to this purpose --

Re: [newbie] mp3s to wav/cd burning

2005-03-18 Thread rnmscott
so you can just use the default k3b instlal and there is an option for music cds to make mp3s into a CD full of wav files? Can't remember seeing that? Richard Quoting Mikkel L. Ellertson [EMAIL PROTECTED]: [EMAIL PROTECTED] wrote: Hi, What do people use for making music cds from mp3s?