Sounds like a task for Bash:Xamindar wrote:I have a few albums that are riped to flac format and was wondering if there was a program that will rip those to mp3 and keep the id3 tags and file names the same (with the exception of .mp3 of course).
Code: Select all
#!/bin/bash
BITRATE="320"
OPTIONS="-h"
which lame||exit 1
which flac||exit 1
[[ -d "${1}" ]] || exit 1
for flac in $(find "${1}" -name "*.flac" -type f)
do
cd $(dirname "${flac}")
flac --decode "${flac}" && lame -b ${BITRATE} ${OPTIONS} "$(basename ${flac} .flac).wav" "$(basename ${flac} .wav).mp3"
done
Code: Select all
* media-sound/soundconverter
Available versions: 0.8.3
Installed: none
Homepage: http://soundconverter.berlios.de/
Description: A simple sound converter application for the GNOME environment.