--- std/dekagen-1.0.1/dekagen 2004-01-11 09:10:51.000000000 -0800 +++ dotpeople/dekagen-1.0.1/dekagen 2004-05-08 11:47:47.000000000 -0700 @@ -36,17 +36,18 @@ RCDIR="${HOME}/.dekagen" # per-user configuration directory TEMPDIR=${RCDIR} # per-user temporary data directory SAVETO=${HOME} # per-user file storage directory -ENCODER='oggenc' # MP3/Ogg converter tool (command name or 'none') +ENCODER='lame' # MP3/Ogg converter tool (command name or 'none') RIPPER='cdparanoia' # CDDA ripping tool (command name or 'none') ID3TOOL='built-in' # ID3 tagging tool (command name or 'built-in' or 'none') BITRATE='128' # MP3/Ogg nominal encoding bitrate (KBits) -METHOD='manual' # 'manual' or 'cddb' +METHOD='cddb' # 'manual' or 'cddb' XMCDLIB='' # $XMCD_LIBDIR DEVICE='/dev/cdrom' # device used for ripping -NCONVENT='artist-name_of_song.mp3' -SELEC='1' # MP3/Ogg naming convention -WHOLE='no' # rip whole CD ('yes' or 'no') +NCONVENT='track-Artist-Name_Of_Song.mp3 (capitalized)' +SELEC='4' # MP3/Ogg naming convention +WHOLE='yes' # rip whole CD ('yes' or 'no') SMALL='no' # small HD ('yes' or 'no') +LAMEOPTS="-ms -v -V 0 -b 32 -B 256" # lame encoder options # ############################################################################# @@ -604,9 +611,9 @@ lame) if [ "${ID3TOOL}" = 'built-in' ] ; then - lame -S -h -b ${BITRATE} --tl "${ID3ALBUM}" --ta "${ID3ARTIST}" --tt "${ID3TITLE}" --tn "${ID3NUM}" --ty "${ID3YEAR}" "${EIN}" "${ENEW}" ; + lame ${LAMEOPTS} -S --tl "${ID3ALBUM}" --ta "${ID3ARTIST}" --tt "${ID3TITLE}" --tn "${ID3NUM}" --ty "${ID3YEAR}" "${EIN}" "${ENEW}" ; else - lame -S -h -b ${BITRATE} "${EIN}" "${ENEW}" ; + lame ${LAMEOPTS} -S "${EIN}" "${ENEW}" ; fi rm "${EIN}" ;;