Alan Dayley wrote:
> I have MP3 files I want to decode or convert back to WAV prior to burning
> to CD. I have found "lame" to do it from the command line but there has
> to be a GUI or better way. All the tools I can find focus on going from
> CD to MP3 or OGG when I want to go the other direction.
>
> I'd like to just point a tool at a directory of MP3 files and tell it to
> convert them all. What tool do I use to do that?
>
> Alan
> ---------------------------------------------------
> PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
> To subscribe, unsubscribe, or to change you mail settings:
> http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss
>
$ for a in *.mp3 ; do lame --decode $a $a.wav ; done
xmms w/ the diskwriter output plugin is a nice GUI based solution
- --
KevinO
---------------------------------------------------
PLUG-discuss mailing list -
PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change you mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss