I've been trying to rip mp3 copies of my cds using abcde. My issue is that I want to rip two sets of mp3s at two different bit-rates.
One high bit-rate set for playback on my computer, and another lower bit-rate set for playback on mobile devices that have small storage capacity.
Currently I run:
abcde -o mp3:"-b 320" && abcde -c .abcdelow.conf -o mp3:"-b 128"
...which technically works, but is annoying because I have to enter the same information twice, and really isn't feasible if I have to hand enter the album data. I would like to do this with one command so that I only have to enter the information one time.
My config file:
MP3ENCODERSYNTAX=default
FLACENCODERSYNTAX=default
LAME=lame
FLAC=flac
# Taggers, rippers, replaygain etc:
ID3=id3
ID3V2=id3v2
MID3V2=mid3v2
EYED3=eyeD3
#This line is the only difference between my two conf files.
OUTPUTFORMAT='low___${ARTISTFILE//_/ }/${ALBUMFILE//_/ }/${TRACKNUM//_/ } ${TRACKFILE//_/ }'