I use a shell script called flac2mp3.sh. It transcodes flac to mp3 with user-configurable settings, and copies artwork. I've modified mine to copy .cue and .log files, also.
flac2mp3: http://www.bytemonkey.org/projects/flac2mp3/ Using this script you should be able to do something as simple as: flac2mp3 /path/to/flac /path/to/mp3 If this doesn't work, something like this might work: Code: -------------------- #!/bin/sh FLACDIR=/music/flac MP3DIR=/music/mp3 cd $FLACDIR for artist in *; do mkdir "$MP3DIR/$artist" cd "$artist" for album in *; do mkdir "$MP3DIR/$artist/$album" /path/to/flac2mp3 "$album" "$MP3DIR/$artist/$album" cd "$FLACDIR/$artist" done cd "$FLACDIR" done -------------------- -- gleam ------------------------------------------------------------------------ gleam's Profile: http://forums.slimdevices.com/member.php?userid=10531 View this thread: http://forums.slimdevices.com/showthread.php?t=35168 _______________________________________________ ripping mailing list [email protected] http://lists.slimdevices.com/lists/listinfo/ripping
