2 # Copyright (c) 1998-2001 Robert Woodcock <rcw@debian.org>
3 # Copyright (c) 2003-2005 Jesus Climent <jesus.climent@hispalinux.es>
4 # This code is hereby licensed for public consumption under either the
5 # GNU GPL v2 or greater, or Larry Wall's Artistic license - your choice.
7 # You should have received a copy of the GNU General Public License
8 # along with this program; if not, write to the Free Software
9 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
11 # Copyright for this work is to expire January 1, 2010, after which it
12 # shall be public domain.
16 VERSION='2.3.99-$Revision$'
20 echo "This is abcde v$VERSION."
21 echo "Usage: abcde [options] [tracks]"
23 echo "-1 Encode the whole CD in a single file"
24 echo "-a <action1[,action2]...>"
25 echo " Actions to perform:"
26 echo " cddb,read,normalize,encode,tag,move,replaygain,playlist,clean"
27 #echo "-A Experimental actions (retag, transcode)"
28 echo "-b Enable batch normalization"
29 #echo "-B Disable batch replaygain (do file by file)"
31 echo " Specify a configuration file (overrides system and user config files)"
33 echo " Specify discid to resume from (only needed if you no longer have the cd)"
35 echo " Specify CDROM device to grab (flac uses a single-track flac file)"
36 echo "-D Debugging mode (equivalent to sh -x abcde)"
37 echo "-e Erase encoded track information from status file"
38 echo "-f Force operations that otherwise are considered harmful. Read \"man abcde\""
39 echo "-g Use \"lame --nogap\" for MP3 encoding. Disables low disk and pipes flags"
40 echo "-h This help information"
41 #echo "-i Tag files while encoding, when possible (local only) -NWY-"
42 echo "-j <#> Number of encoder processes to run at once (localhost)"
43 echo "-k Keep the wav tracks for later use"
44 echo "-l Use low disk space algorithm"
45 echo "-L Use local CDDB storage directory"
46 echo "-n No lookup. Don't query CDDB, just create and use template"
47 echo "-N Noninteractive. Never prompt for anything"
48 echo "-m Modify playlist to include CRLF endings, to comply with some players"
49 echo "-M Create a CUE file"
50 echo "-o <type1[,type2]...>"
51 echo " Output file type(s) (vorbis,mp3,flac,spx,mpc,wav,m4a). Defaults to vorbis"
52 echo "-p Pad track numbers with 0's (if less than 10 tracks)"
53 echo "-P Use UNIX pipes to read+encode without wav files"
54 echo "-r <host1[,host2]...>"
55 echo " Also encode on these remote hosts"
56 echo "-R Use local CDDB in recursive mode"
57 #echo "-R Add replaygain values to the tag info (only for vorbis,flac,mp3)"
59 echo " Show dielfs from the CDDB info (year,genre)"
60 echo "-S <#> Set the CD speed"
61 echo "-t <#> Start the track numbering at a given number"
62 echo "-T <#> Same as -t but modifies tag numbering"
63 echo "-u Use UNICODE tags and comments"
64 echo "-v Show version number and exit"
65 echo "-V Be a bit more verbose about what is happening behind the scenes"
66 echo "-x Eject CD after all tracks are read"
68 echo " Add a comment to the CD tracks"
69 echo "-W <#> Contatenate CDs: -T #01 -w \"CD #\""
70 echo "-z Use debug CDROMREADERSYNTAX option (needs cdparanoia)"
72 echo "Tracks is a space-delimited list of tracks to grab."
73 echo "Ranges specified with hyphens are allowed (i.e., 1-5)."
75 #echo "Double hyphens are used to concatenate tracks"
80 echo "$@" >> "$ABCDETEMPDIR/status"
83 # log [level] [message]
85 # log outputs the right message in a common format
91 error) echo "[ERROR] abcde: $@" >&2 ;;
92 warning) echo "[WARNING] $@" >&2 ;;
93 info) echo "[INFO] $@" ;;
97 # Funtions to replace the need of seq, which is too distribution dependant.
101 while [ $i -ne `expr $2 + 1` ]
111 if echo $i | grep -q "[[:digit:]]" ; then
112 while [ $i -ne `expr $2 + 1` ]
119 log error "syntax error while processing track numbers"
124 # Functions to replace the need of awk {print $1} and {print $NF}
127 if [ X"$1" = "X" ]; then
128 for first in `cat`; do
139 if [ X"$1" = "X" ]; then
140 for stdin in `cat`; do
144 for last in $@ ; do :; done
149 # checkstatus [blurb]
150 # Returns "0" if the blurb was found, returns 1 if it wasn't
151 # Puts the blurb content, if available, on stdout.
152 # Otherwise, returns "".
155 # Take the last line in the status file if there's multiple matches
157 BLURB=$(egrep $PATTERN "$ABCDETEMPDIR/status" | tail -n 1)
159 if [ -z "$BLURB" ]; then
164 # See if there's a = in it
165 if [ "$(echo $BLURB | grep -c =)" != "0" ]; then
166 echo "$(echo $BLURB | cut -f2- -d=)"
172 # chechwarnings [blurb]
173 # Returns "0" if the blurb was found (meaning there was an warning),
174 # returns 1 if it wasn't (yes this is a little backwards).
175 # Does not print the blurb on stdout.
176 # Otherwise, returns "".
179 if [ -e "$ABCDETEMPDIR/warnings" ]; then :; else
182 # Take the last line in the status file if there's multiple matches
184 BLURB="$(egrep $PATTERN "$ABCDETEMPDIR/warnings" | tail -n 1)"
186 if [ -z "$BLURB" ]; then
187 # negative, we did not have a negative...
190 # affirmative, we had a negative...
195 # checkerrors [blurb]
196 # Returns "0" if the blurb was found (meaning there was an error),
197 # returns 1 if it wasn't (yes this is a little backwards).
198 # Does not print the blurb on stdout.
199 # Otherwise, returns "".
202 if [ -e "$ABCDETEMPDIR/errors" ]; then :; else
205 # Take the last line in the status file if there's multiple matches
207 BLURB="$(egrep $PATTERN "$ABCDETEMPDIR/errors" | tail -n 1)"
209 if [ -z "$BLURB" ]; then
210 # negative, we did not have a negative...
213 # affirmative, we had a negative...
219 # Finds the right pager in the system to display a file
223 # Use the debian sensible-pager wrapper to pick the pager
224 # user has requested via their $PAGER environment variable
225 if [ -x "/usr/bin/sensible-pager" ]; then
226 /usr/bin/sensible-pager "$PAGEFILE"
227 elif [ -x "$PAGER" ]; then
228 # That failed, try to load the preferred editor, starting
229 # with their PAGER variable
231 # If that fails, check for less
232 elif [ -x /usr/bin/less ]; then
233 /usr/bin/less -f "$PAGEFILE"
234 # more should be on all UNIX systems
235 elif [ -x /bin/more ]; then
236 /bin/more "$PAGEFILE"
238 # No bananas, just cat the thing
243 # run_command [blurb] [command...]
244 # Runs a command, silently if necessary, and updates the status file
249 # See if this is supposed to be silent
250 if [ "$(checkstatus encode-output)" = "loud" ]; then
254 # Special case for SMP, since
255 # encoder output is never displayed, don't mute echos
256 if [ -z "$BLURB" -a "$MAXPROCS" != "1" ]; then
265 normalize|normalize-audio)
266 if [ "$RETURN" = "2" ]; then
267 # File was already normalized.
272 if [ "$RETURN" != "0" ]; then
273 # Put an error in the errors file. For various reasons we
274 # can't capture a copy of the program's output but we can
275 # log what we attempted to execute and the error code
276 # returned by the program.
277 if [ "$BLURB" ]; then
280 echo "${TWEAK}returned code $RETURN: $@" >> "$ABCDETEMPDIR/errors"
281 return $RETURN # Do not pass go, do not update the status file
283 if [ "$BLURB" ]; then
284 echo $BLURB >> "$ABCDETEMPDIR/status"
288 # relpath() and slash() are Copyright (c) 1999 Stuart Ballard and
289 # distributed under the terms of the GNU GPL v2 or later, at your option
291 # Function to determine if a word contains a slash.
300 # Function to give the relative path from one file to another.
301 # Usage: relpath fromfile tofile
302 # eg relpath music/Artist/Album.m3u music/Artist/Album/Song.mp3
303 # (the result would be Album/Song.mp3)
304 # Output is relative path to $2 from $1 on stdout
306 # This code has the following restrictions:
307 # Multiple ////s are not collapsed into single /s, with strange effects.
308 # Absolute paths and ../s are handled wrong in FR (but they work in TO)
309 # If FR is a directory it must have a trailing /
317 /*) ;; # No processing is needed for absolute paths
319 # Loop through common prefixes, ignoring them.
320 while slash "$FR" && [ "$(echo "$FR" | cut -d/ -f1)" = "$(echo "$TO" | cut -d/ -f1)" ]
322 FR="$(echo "$FR" | cut -d/ -f2-)"
323 TO="$(echo "$TO" | cut -d/ -f2-)"
325 # Loop through directory portions left in FR, adding appropriate ../s.
328 FR="$(echo "$FR" | cut -d/ -f2-)"
338 # Finds an specific field from cddbinfo
343 TRACKNAME="$(grep ^TTITLE$CDDBTRACKNUM= "$CDDBDATA" | head -n 1 | cut -f2- -d= | tr -d \[:cntrl:\] | sed 's/\ \+$//')"
346 TRACKNAME="$(grep ^TTITLE$CDDBTRACKNUM= "$CDDBDATA" | cut -f2- -d= | tr -d \[:cntrl:\] | sed 's/\ \+$//')"
352 # Get the track number we are going to use for different actions
355 if [ -n "$STARTTRACKNUMBER" ] ; then
356 # Get the trackpadding from the current track
357 CURRENTTRACKPADDING=$(echo -n $UTRACKNUM | wc -c)
358 TRACKNUM=$( printf %0.${CURRENTTRACKPADDING}d $(expr ${UTRACKNUM} + ${STARTTRACKNUMBER} - $FIRSTTRACK ))
360 TRACKNUM=${UTRACKNUM}
366 if checkstatus replaygain; then :; else
367 run_command "" echo "Adding replygain information..."
368 for OUTPUT in $( echo $OUTPUTTYPE | tr , \ )
372 OUTPUT=$OGGOUTPUTCONTAINER
375 OUTPUT=$FLACOUTPUTCONTAINER
380 for UTRACKNUM in $TRACKQUEUE
382 CDDBTRACKNUM=$(expr $UTRACKNUM - 1)
383 do_getcddbinfo TRACKNAME
385 TRACKFILE="$(mungefilename "$TRACKNAME")"
386 ARTISTFILE="$(mungefilename "$TRACKARTIST")"
387 ALBUMFILE="$(mungefilename "$DALBUM")"
389 if [ "$VARIOUSARTISTS" = "y" ]; then
390 OUTPUTFILE="$(eval echo $VAOUTPUTFORMAT)"
392 OUTPUTFILE="$(eval echo $OUTPUTFORMAT)"
394 OUTPUTFILES[$REPLAYINDEX]="$OUTPUTDIR/$OUTPUTFILE.$OUTPUT"
395 (( REPLAYINDEX = $REPLAYINDEX + 1 ))
399 run_command replaygain-flac $METAFLAC --add-replay-gain "${OUTPUTFILES[@]}"
402 run_command replaygain-vorbis $VORBISGAIN --album "${OUTPUTFILES[@]}"
405 run_command replaygain-mp3 $MP3GAIN -a "${OUTPUTFILES[@]}"
408 run_command replaygain-mpc $MPPGAIN --auto "${OUTPUTFILES[@]}"
413 if checkerrors "replaygain-.{3,6}"; then :; else
414 run_command replaygain true
419 # This code splits the a Various Artist track name from one of the following
422 # forward: Artist / Track
423 # forward-dash: Artist - Track
424 # reverse: Track / Artist
425 # reverse-dash: Track - Artist
426 # colon: Artist: Track
427 # trailing-paren: Artist (Track)
430 # VARIOUSARTISTS, VARIOUSARTISTSTYLE, TRACKNAME, TRACKARTIST
433 if [ "$VARIOUSARTISTS" = "y" ] && [ ! "$ONETRACK" = "y" ]; then
434 case "$VARIOUSARTISTSTYLE" in
436 DTITLEARTIST="$(echo "$TRACKNAME" | sed 's- / -~-g')"
437 TRACKARTIST="$(echo "$DTITLEARTIST" | cut -f1 -d~)"
438 TRACKNAME="$(echo "$DTITLEARTIST" | cut -f2 -d~)"
441 DTITLEARTIST="$(echo "$TRACKNAME" | sed 's, - ,~,g')"
442 TRACKARTIST="$(echo "$DTITLEARTIST" | cut -f1 -d~)"
443 TRACKNAME="$(echo "$DTITLEARTIST" | cut -f2 -d~)"
446 DTITLEARTIST="$(echo "$TRACKNAME" | sed 's- / -~-g')"
447 TRACKARTIST="$(echo "$DTITLEARTIST" | cut -f2 -d~)"
448 TRACKNAME="$(echo "$DTITLEARTIST" | cut -f1 -d~)"
451 DTITLEARTIST="$(echo "$TRACKNAME" | sed 's, - ,~,g')"
452 TRACKARTIST="$(echo "$DTITLEARTIST" | cut -f2 -d~)"
453 TRACKNAME="$(echo "$DTITLEARTIST" | cut -f1 -d~)"
456 DTITLEARTIST="$(echo "$TRACKNAME" | sed 's-: -~-g')"
457 TRACKARTIST="$(echo "$DTITLEARTIST" | cut -f1 -d~)"
458 TRACKNAME="$(echo "$DTITLEARTIST" | cut -f2 -d~)"
461 DTITLEARTIST="$(echo "$TRACKNAME" | sed 's,^\(.*\) (\(.*\)),\1~\2,')"
462 TRACKARTIST="$(echo "$DTITLEARTIST" | cut -f2 -d~)"
463 TRACKNAME="$(echo "$DTITLEARTIST" | cut -f1 -d~)"
466 elif [ "$VARIOUSARTISTS" = "y" ] && [ "$ONETRACK" = "y" ]; then
467 TRACKARTIST="Various"
469 TRACKARTIST="$DARTIST"
474 local genre=$(echo "${@}" | tr '[A-Z]' '[a-z]')
478 "classic rock") id=1 ;;
496 "industrial") id=19 ;;
497 "alternative") id=20 ;;
499 "death metal") id=22 ;;
501 "soundtrack") id=24 ;;
502 "euro-techno") id=25 ;;
506 "jazz+funk") id=29 ;;
509 "classical") id=32 ;;
510 "instrumental") id=33 ;;
514 "sound clip") id=37 ;;
517 "alt. rock") id=40 ;;
522 "meditative") id=45 ;;
523 "instrum. pop") id=46 ;;
524 "instrum. rock") id=47 ;;
528 "techno-indust.") id=51 ;;
529 "electronic") id=52 ;;
531 "eurodance") id=54 ;;
533 "southern rock") id=56 ;;
538 "christian rap") id=61 ;;
539 "pop/funk"|"pop / funk") id=62 ;;
541 "native american") id=64 ;;
544 "psychadelic") id=67 ;;
546 "showtunes") id=69 ;;
550 "acid punk") id=73 ;;
551 "acid jazz") id=74 ;;
555 "rock & roll") id=78 ;;
556 "hard rock") id=79 ;;
558 "folk/rock") id=81 ;;
559 "national folk") id=82 ;;
566 "bluegrass") id=89 ;;
567 "avantgarde") id=90 ;;
568 "gothic rock") id=91 ;;
569 "progress. rock") id=92 ;;
570 "psychadel. rock") id=93 ;;
571 "symphonic rock") id=94 ;;
572 "slow rock") id=95 ;;
575 "easy listening") id=98 ;;
581 "chamber music") id=104 ;;
583 "symphony") id=106 ;;
584 "booty bass") id=107 ;;
586 "porn groove") id=109 ;;
588 "slow jam") id=111 ;;
592 "folklore") id=115 ;;
594 "power ballad") id=117 ;;
595 "rhythmic soul") id=118 ;;
596 "freestyle") id=119 ;;
598 "punk rock") id=121 ;;
599 "drum solo") id=122 ;;
600 "a capella") id=123 ;;
601 "euro-house") id=124 ;;
602 "dance hall") id=125 ;;
604 "drum & bass") id=127 ;;
605 "club-house") id=128 ;;
606 "hardcore") id=129 ;;
610 "negerpunk") id=133 ;;
611 "polsk punk") id=134 ;;
613 "christian gangsta rap") id=136 ;;
614 "heavy metal") id=137 ;;
615 "black metal") id=138 ;;
616 "crossover") id=139 ;;
617 "contemporary christian")id=140 ;;
618 "christian rock") id=141 ;;
619 "merengue") id=142 ;;
621 "thrash metal") id=144 ;;
624 "synthpop") id=147 ;;
625 "rock/pop"|"rock / pop") id=148 ;;
632 # do_tag [tracknumber]
633 # id3 tags a filename
635 # TRACKS, TRACKNAME, TRACKARTIST, TAGGER, TAGGEROPTS, VORBISCOMMENT, METAFLAC,
636 # COMMENT, DALBUM, DARTIST, CDYEAR, CDGENRE (and temporarily) ID3TAGV
639 COMMENTOUTPUT="$(eval echo ${COMMENT})"
640 CDDBDISCID=$(echo $TRACKINFO | cut -d' ' -f1)
641 run_command '' echo "Tagging track $1 of $TRACKS: $TRACKNAME..."
642 # If we want to start the tracks with a given number, we need to modify the
643 # TRACKNUM value before evaluation
644 if [ -n "$STARTTRACKNUMBERTAG" ] ; then
647 for OUTPUT in $(echo $OUTPUTTYPE | tr , \ )
651 # id3v2 v0.1.9 claims to have solved the -c bug, so we merge both id3 and id3v2
652 GENREID=$(do_getgenreid "${CDGENRE}")
657 # FIXME # track numbers in mp3 come with 1/10, so we cannot happily substitute them with $TRACKNUM
658 run_command tagtrack-$OUTPUT-$1 $TAGGER $TAGGEROPTS --commen=::"$COMMENTOUTPUT" \
659 -A "$DALBUM" -a "$TRACKARTIST" -t "$TRACKNAME" -Y "$CDYEAR" \
660 -G "$GENREID" -n "${TRACKNUM:-$1}" "${TRACKNUM:+-N $TRACKS}" \
661 "${ENCODING:+--set-encoding=$ENCODING}"
662 "$ABCDETEMPDIR/track$1.$OUTPUT"
665 # FIXME # track numbers in mp3 come with 1/10, so we cannot happily substitute them with $TRACKNUM
666 run_command tagtrack-$OUTPUT-$1 $TAGGER $TAGGEROPTS -c "$COMMENTOUTPUT" \
667 -A "$DALBUM" -a "$TRACKARTIST" -t "$TRACKNAME" -y "$CDYEAR" \
668 -g "$GENREID" -T "${TRACKNUM:-$1/$TRACKS}" \
669 "$ABCDETEMPDIR/track$1.$OUTPUT"
674 case "$OGGENCODERSYNTAX" in
676 # vorbiscomment can't do in-place modification, mv the file first
677 if [ -f "$ABCDETEMPDIR/track$1.$OGGOUTPUTCONTAINER" -a ! -f "$ABCDETEMPDIR/track$1.uncommented.$OGGOUTPUTCONTAINER" ]; then
678 mv "$ABCDETEMPDIR/track$1.$OGGOUTPUTCONTAINER" "$ABCDETEMPDIR/track$1.uncommented.$OGGOUTPUTCONTAINER"
681 # These are from http://www.xiph.org/ogg/vorbis/doc/v-comment.html
682 echo ARTIST="$TRACKARTIST"
684 echo TITLE="$TRACKNAME"
685 if [ -n "$CDYEAR" ]; then
688 if [ -n "$CDGENRE" ]; then
689 echo GENRE="$CDGENRE"
691 echo TRACKNUMBER=${TRACKNUM:-$1}
692 echo CDDB=$CDDBDISCID
693 if [ "$(eval echo ${COMMENT})" != "" ]; then
694 case "$COMMENTOUTPUT" in
695 *=*) echo "$COMMENTOUTPUT";;
696 *) echo COMMENT="$COMMENTOUTPUT";;
699 ) | run_command tagtrack-$OUTPUT-$1 $VORBISCOMMENT $VORBISCOMMENTOPTS -w \
700 "$ABCDETEMPDIR/track$1.uncommented.$OGGOUTPUTCONTAINER" "$ABCDETEMPDIR/track$1.$OGGOUTPUTCONTAINER"
701 # Doublecheck that the commented file was created successfully before wiping the original
702 if [ -f "$ABCDETEMPDIR/track$1.$OGGOUTPUTCONTAINER" ]; then
703 rm -f "$ABCDETEMPDIR/track$1.uncommented.$OGGOUTPUTCONTAINER"
705 mv "$ABCDETEMPDIR/track$1.uncommented.$OGGOUTPUTCONTAINER" "$ABCDETEMPDIR/track$1.$OGGOUTPUTCONTAINER"
712 echo ARTIST="$TRACKARTIST"
714 echo TITLE="$TRACKNAME"
715 if [ -n "$CDYEAR" ]; then
718 if [ -n "$CDGENRE" ]; then
719 echo GENRE="$CDGENRE"
721 echo TRACKNUMBER="${TRACKNUM:-$1}"
722 echo CDDB="$CDDBDISCID"
723 if [ "$(eval echo ${COMMENT})" != "" ]; then
724 case "$COMMENTOUTPUT" in
725 *=*) echo "$COMMENTOUTPUT";;
726 *) echo COMMENT="$COMMENTOUTPUT";;
729 ) | run_command tagtrack-$OUTPUT-$1 $METAFLAC $METAFLACOPTS --import-tags-from=- "$ABCDETEMPDIR/track$1.$FLACOUTPUTCONTAINER"
732 run_command tagtrack-$OUTPUT-$1 true
735 run_command tagtrack-$OUTPUT-$1 true
738 run_command tagtrack-$OUTPUT-$1 true
741 run_command tagtrack-$OUTPUT-$1 true
745 if checkerrors "tagtrack-(.{3,6})-$1"; then :; else
746 run_command tagtrack-$1 true
753 # OUTPUTTYPE, {FOO}ENCODERSYNTAX, ENCNICE, ENCODER, ENCODEROPTS
756 # The commands here don't go through run_command because they're never supposed to be silenced
757 echo "Encoding gapless MP3 tracks: $TRACKQUEUE"
758 for OUTPUT in $(echo $OUTPUTTYPE | tr , \ )
762 case "$MP3ENCODERSYNTAX" in
767 for UTRACKNUM in $TRACKQUEUE
769 TRACKFILES="$TRACKFILES track$UTRACKNUM.wav"
771 nice $ENCNICE $MP3ENCODER $MP3ENCODEROPTS --nogap $TRACKFILES
773 if [ "$RETURN" != "0" ]; then
774 echo "nogap-encode: $ENCODER returned code $RETURN" >> errors
776 for UTRACKNUM in $TRACKQUEUE
778 run_command encodetrack-$OUTPUT-$UTRACKNUM true
779 #run_command encodetrack-$UTRACKNUM true
788 if checkerrors "nogap-encode"; then :; else
789 if [ ! "$KEEPWAVS" = "y" ] ; then
790 if [ ! "$KEEPWAVS" = "move" ] ; then
795 # Other encoders fall through to normal encoding as the tracks
796 # have not been entered in the status file.
799 # do_encode [tracknumber] [hostname]
800 # If no hostname is specified, encode locally
802 # TRACKS, TRACKNAME, TRACKARTIST, DISTMP3, DISTMP3OPTS, {FOO}ENCODERSYNTAX, OUTPUTTYPE, ENCODEROPTS, DALBUM, DARTIST, ENCNICE, CDYEAR, CDGENRE, COMMENT
805 if [ "$USEPIPES" = "y" ]; then
808 TEMPARG="PIPE_$MP3ENCODERSYNTAX"
811 TEMPARG="PIPE_$OGGENCODERSYNTAX"
814 TEMPARG="PIPE_$FLACENCODERSYNTAX"
817 TEMPARG="PIPE_$SPEEXENCODER"
820 TEMPARG="PIPE_$MPPENCODER"
823 TEMPARG="PIPE_$MPPENCODER"
826 IN="$( eval echo "\$$TEMPARG" )"
828 IN="$ABCDETEMPDIR/track$1.wav"
831 case "$MP3ENCODERSYNTAX" in
832 # FIXME # check if mp3enc needs -if for pipes
833 # FIXME # I have not been able to find a working mp3enc binary
847 # We need IN to proceed, if we are not using pipes.
848 if [ -s "$IN" -o X"$USEPIPES" = "Xy" ] ; then
849 for OUTPUT in $(echo $OUTPUTTYPE | tr , \ )
853 OUT="$ABCDETEMPDIR/track$1.$OGGOUTPUTCONTAINER"
854 OUTPUT=$OGGOUTPUTCONTAINER
857 OUT="$ABCDETEMPDIR/track$1.$FLACOUTPUTCONTAINER"
858 OUTPUT=$FLACOUTPUTCONTAINER
861 OUT="$ABCDETEMPDIR/track$1.$OUTPUT"
864 if [ "$NOGAP" = "y" ] && checkstatus encodetrack-$OUTPUT-$1 ; then
867 if [ X"$USEPIPES" = "Xy" ]; then
869 # We need a way to store the creation of the files when using PIPES
870 RUN_COMMAND_PIPES="run_command encodetrack-$OUTPUT-$1 true"
872 run_command '' echo "Encoding track $1 of $TRACKS: $TRACKNAME..."
873 RUN_COMMAND="run_command encodetrack-$OUTPUT-$1"
879 case "$MP3ENCODERSYNTAX" in
880 lame|gogo) $RUN_COMMAND nice $ENCNICE $MP3ENCODER $MP3ENCODEROPTS "$IN" "$OUT" ;;
881 bladeenc) $RUN_COMMAND nice $ENCNICE $MP3ENCODER $MP3ENCODEROPTS -quit "$IN" ;;
882 l3enc|xingmp3enc) $RUN_COMMAND nice $ENCNICE $MP3ENCODER "$IN" "$OUT" $MP3ENCODEROPTS ;;
883 # FIXME # Relates to the previous FIXME since it might need the "-if" removed.
884 mp3enc) $RUN_COMMAND nice $ENCNICE $MP3ENCODER -if "$IN" -of "$OUT" $MP3ENCODEROPTS ;;
888 $RUN_COMMAND nice $DISTMP3NICE $DISTMP3 $DISTMP3OPTS "$2" "$IN" "$OUT" >/dev/null 2>&1
895 case "$OGGENCODERSYNTAX" in
896 vorbize) $RUN_COMMAND nice $ENCNICE $OGGENCODER $OGGENCODEROPTS -w "$OUT" "$IN" ;;
897 oggenc) $RUN_COMMAND nice $ENCNICE $OGGENCODER $OGGENCODEROPTS -o "$OUT" "$IN" ;;
901 $RUN_COMMAND nice $DISTMP3NICE $DISTMP3 $DISTMP3OPTS "$2" "$IN" "$OUT" >/dev/null 2>&1
908 case "$FLACENCODERSYNTAX" in
909 flac) $RUN_COMMAND nice $ENCNICE $FLACENCODER -f $FLACENCODEROPTS -o "$OUT" "$IN" ;;
914 vecho "$DISTMP3 $DISTMP3OPTS $2 $IN $OUT >/dev/null 2>&1"
915 $RUN_COMMAND nice $DISTMP3NICE $DISTMP3 $DISTMP3OPTS "$2" "$IN" "$OUT" > /dev/null 2>&1
920 if [ "$(eval echo ${COMMENT})" != "" ]; then
923 *) COMMENT="COMMENT=$COMMENT" ;;
925 COMMENT="--comment \"$COMMENT\""
927 # Quick hack to avoid tagging Ogg/Speex, since there is no other way to tag than inline tagging
928 if [ ! "$DOTAG" = "y" ]; then
929 $RUN_COMMAND nice $ENCNICE $SPEEXENCODER $SPEEXENCODEROPTS --author "$TRACKARTIST" --title "$TRACKNAME" "$COMMENT" "$IN" "$OUT"
931 $RUN_COMMAND nice $ENCNICE $SPEEXENCODER $SPEEXENCODEROPTS "$IN" "$OUT"
935 # MPP/MP+(Musepack) format (.mpc) is done locally, with inline
937 # I tried compiling the mppenc from corecodecs.org and got some
938 # errors, so I have not tried it myself.
939 ## FIXME ## Needs some cleanup to determine if an empty tag sent
940 ## FIXME ## to the encoder ends up empty.
941 $RUN_COMMAND nice $ENCNICE $MPPENCODER $MPPENCODEROPTS --artist "$TRACKARTIST" --album "$DALBUM" --title "$TRACKNAME" --track "$1" --genre "$CDGENRE" --year "$CDYEAR" --comment "$COMMENT" "$IN" "$OUT"
944 # Quick hack to avoid tagging Ogg/Speex, since there is no other way to tag than inline tagging
945 if [ ! "$DOTAG" = "y" ]; then
946 $RUN_COMMAND nice $ENCNICE $AACENCODER $AACENCODEROPTS --artist "$TRACKARTIST" --album "$DALBUM" --title "$TRACKNAME" --track "$1" --genre "$CDGENRE" --year "$CDYEAR" --comment "$COMMENT" -o "$OUT" "$IN"
949 $RUN_COMMAND nice $ENCNICE $AACENCODER $AACENCODEROPTS -o "$OUT" "$IN"
953 # In case of wav output we need nothing. Just keep the wavs.
958 # Only remove .wav if the encoding succeeded
959 if checkerrors "encodetrack-(.{3,6})-$1"; then :; else
960 run_command encodetrack-$1 true
961 if [ ! "$KEEPWAVS" = "y" ] ; then
962 if [ ! "$KEEPWAVS" = "move" ] ; then
968 run_command "" echo "HEH! The file we were about to encode disappeared:"
969 run_command "" echo ">> $IN"
970 run_command encodetrack-$1 false
974 # do_preprocess [tracknumber]
976 # TRACKS, TRACKNAME, TRACKARTIST, DISTMP3, DISTMP3OPTS, {FOO}ENCODERSYNTAX, OUTPUTTYPE, ENCODEROPTS, DALBUM, DARTIST, ENCNICE, CDYEAR, CDGENRE, COMMENT
979 # IN="$ABCDETEMPDIR/track$1.wav"
980 # # We need IN to proceed.
981 # if [ -s "$IN" ] ; then
982 # for OUTPUT in $(echo $OUTPUTTYPE | tr , \ )
984 # #OUT="$ABCDETEMPDIR/track$1.$OUTPUT"
985 # run_command '' echo "Pre-processing track $1 of $TRACKS..."
986 # case "$POSTPROCESSFORMAT" in
988 # run_command preprocess-$OUTPUT-$1 nice $PRENICE $WAV_PRE $IF $OF ;;
990 # run_command preprocess-$OUTPUT-$1 nice $PRENICE $MP3_PRE $IF $OF ;;
992 # run_command preprocess-$OUTPUT-$1 nice $PRENICE $OGG_PRE $IF $OF ;;
994 # run_command preprocess-$OUTPUT-$1 nice $PRENICE $FLAC_PRE $IF $OF ;;
996 # run_command preprocess-$OUTPUT-$1 nice $PRENICE $SPX_PRE $IF $OF ;;
999 # # Only remove .wav if the encoding succeeded
1000 # if checkerrors "preprocess-(.{3,4})-$1"; then
1001 # run_command preprocess-$1 false
1003 # run_command preprocess-$1 true
1006 # if [ "$(checkstatus encode-output)" = "loud" ]; then
1007 # echo "HEH! The file we were about to pre-process disappeared:"
1010 # run_command preprocess-$1 false
1015 # do_postprocess [tracknumber]
1017 # TRACKS, TRACKNAME, TRACKARTIST, DISTMP3, DISTMP3OPTS, {FOO}ENCODERSYNTAX, OUTPUTTYPE, ENCODEROPTS, DALBUM, DARTIST, ENCNICE, CDYEAR, CDGENRE, COMMENT
1020 # for POSTPROCESSFORMAT in $(echo $POSTPROCESSFORMATS | tr , \ )
1022 # IN="$ABCDETEMPDIR/track$1.$POSTPROCESSFORMAT"
1023 # # We need IN to proceed.
1024 # if [ -s "$IN" ] ; then
1025 # #OUT="$ABCDETEMPDIR/track$1.$OUTPUT"
1026 # run_command '' echo "Post-processing track $1 of $TRACKS..."
1027 # case "$POSTPROCESSFORMAT" in
1029 # run_command postprocess-$OUTPUT-$1 nice $POSTNICE $MP3_POST $IF $OF ;;
1031 # run_command postprocess-$OUTPUT-$1 nice $POSTNICE $OGG_POST $IF $OF ;;
1033 # run_command postprocess-$OUTPUT-$1 nice $POSTNICE $FLAC_POST $IF $OF ;;
1035 # run_command postprocess-$OUTPUT-$1 nice $POSTNICE $SPX_POST $IF $OF ;;
1037 # # Only remove .wav if the encoding succeeded
1038 # if checkerrors "postprocess-(.{3,4})-$1"; then
1039 # run_command postprocess-$1 false
1041 # run_command postprocess-$1 true
1044 # if [ "$(checkstatus encode-output)" = "loud" ]; then
1045 # echo "HEH! The file we were about to post-process disappeared:"
1048 # run_command postprocess-$1 false
1063 # MP3GAIN, MP3GAINOPTS, VORBISGAIN, VORBISGAINOPTS, MPPGAIN, MPPGAINOPTS
1067 # The commands here don't go through run_command because they're never supposed to be silenced
1068 echo "Batch analizing gain in tracks: $TRACKQUEUE"
1073 for UTRACKNUM in $TRACKQUEUE
1075 MP3FILES="$TRACKFILES track$UTRACKNUM.mp3"
1077 # FIXME # Hard-coded batch option!
1078 $NORMALIZER -b $NORMALIZEROPTS $TRACKFILES
1080 if [ "$RETURN" != "0" ]; then
1081 echo "batch-normalize: $NORMALIZER returned code $RETURN" >> errors
1083 for UTRACKNUM in $TRACKQUEUE
1085 echo normalizetrack-$UTRACKNUM >> status
1091 # do_batch_normalize
1093 # NORMALIZER, NORMALIZEROPTS
1094 do_batch_normalize ()
1096 # The commands here don't go through run_command because they're never supposed to be silenced
1097 echo "Batch normalizing tracks: $TRACKQUEUE"
1102 for UTRACKNUM in $TRACKQUEUE
1104 TRACKFILES="$TRACKFILES track$UTRACKNUM.wav"
1106 # XXX: Hard-coded batch option!
1107 $NORMALIZER -b $NORMALIZEROPTS $TRACKFILES
1109 if [ "$RETURN" != "0" ]; then
1110 echo "batch-normalize: $NORMALIZER returned code $RETURN" >> errors
1112 for UTRACKNUM in $TRACKQUEUE
1114 echo normalizetrack-$UTRACKNUM >> status
1120 # do_normalize [tracknumber]
1122 # TRACKS, TRACKNAME, NORMALIZER, NORMALIZEROPTS
1125 IN="$ABCDETEMPDIR/track$1.wav"
1126 if [ -e "$IN" ] ; then
1127 run_command '' echo "Normalizing track $1 of $TRACKS: $TRACKNAME..."
1128 run_command normalizetrack-$1 $NORMALIZER $NORMALIZEROPTS "$IN"
1130 if [ "$(checkstatus encode-output)" = "loud" ]; then
1131 echo "HEH! The file we were about to normalize disappeared:"
1134 run_command normalizetrack-$1 false "File $IN was not found"
1138 # do_move [tracknumber]
1139 # Deduces the outfile from environment variables
1140 # Creates directory if necessary
1142 # TRACKNUM, TRACKNAME, TRACKARTIST, DALBUM, OUTPUTFORMAT, CDGENRE, CDYEAR
1145 for OUTPUT in $(echo $OUTPUTTYPE | tr , \ )
1147 # Create ALBUMFILE, ARTISTFILE, TRACKFILE
1148 # Munge filenames as follows:
1153 # Eat control characters
1154 ALBUMFILE="$(mungefilename "$DALBUM")"
1155 ARTISTFILE="$(mungefilename "$TRACKARTIST")"
1156 TRACKFILE="$(mungefilename "$TRACKNAME")"
1157 GENRE="$(mungegenre "$GENRE")"
1158 YEAR="$(echo $CDYEAR)"
1159 # If we want to start the tracks with a given number, we need to modify the
1160 # TRACKNUM value before evaluation
1162 # Supported variables for OUTPUTFORMAT are GENRE, ALBUMFILE, ARTISTFILE,
1163 # TRACKFILE, and TRACKNUM.
1164 if [ "$VARIOUSARTISTS" = "y" ]; then
1165 OUTPUTFILE="$(eval echo "$VAOUTPUTFORMAT")"
1167 OUTPUTFILE="$(eval echo "$OUTPUTFORMAT")"
1169 if checkerrors "tagtrack-$OUTPUT-$1"; then :; else
1170 # Once we know the specific output was successful, we can change the OUTPUT to the value containing the container
1173 OUTPUT=$OGGOUTPUTCONTAINER
1176 OUTPUT=$FLACOUTPUTCONTAINER
1179 # Check that the directory for OUTPUTFILE exists, if it doesn't, create it
1180 OUTPUTFILEDIR="$(dirname "$OUTPUTDIR/$OUTPUTFILE")"
1183 if [ "$DOCLEAN" != "y" ] && [ "$FORCE" != "y" ]; then
1184 # FIXME # introduce warnings?
1187 # mkdir -p shouldn't return an error if the directory already exists
1188 mkdir -p "$OUTPUTFILEDIR"
1189 run_command movetrack-$1 mv "$ABCDETEMPDIR/track$1.$OUTPUT" "$OUTPUTDIR/$OUTPUTFILE.$OUTPUT"
1190 if checkstatus movetrack-output-$OUTPUT; then :; else
1191 run_command movetrack-output-$OUTPUT true
1196 # mkdir -p shouldn't return an error if the directory already exists
1197 mkdir -p "$OUTPUTFILEDIR"
1198 run_command movetrack-$1 mv "$ABCDETEMPDIR/track$1.$OUTPUT" "$OUTPUTDIR/$OUTPUTFILE.$OUTPUT"
1199 if checkstatus movetrack-output-$OUTPUT; then :; else
1200 run_command movetrack-output-$OUTPUT true
1204 # Lets move the cue file
1205 if CUEFILE=$(checkstatus cuefile) >/dev/null ; then
1206 if [ -r "$ABCDETEMPDIR/$CUEFILE" ]; then
1207 if checkstatus movecue-$OUTPUT; then :; else
1208 # Silence the Copying output since it overlaps with encoding processes...
1209 #run_command '' vecho "Copying cue file to its destination directory..."
1210 if checkstatus onetrack >/dev/null ; then
1213 if [ "$DOCLEAN" != "y" ] && [ "$FORCE" != "y" ]; then
1214 # We dont have the dir, since it was not created before.
1217 run_command movecue-$OUTPUT cp "$ABCDETEMPDIR/$CUEFILE" "$OUTPUTDIR/$OUTPUTFILE.cue"
1220 # NOTE: Creating a cue file with the 3-char-extension files is to comply with
1221 # http://brianvictor.tripod.com/mp3cue.htm#details
1222 [a-z0-9][a-z0-9][a-z0-9])
1223 run_command movecue-$OUTPUT cp "$ABCDETEMPDIR/$CUEFILE" "$OUTPUTDIR/$OUTPUTFILE.cue"
1226 run_command movecue-$OUTPUT cp "$ABCDETEMPDIR/$CUEFILE" "$OUTPUTDIR/$OUTPUTFILE.$OUTPUT.cue"
1230 run_command movecue-$OUTPUT cp "$ABCDETEMPDIR/$CUEFILE" "$OUTPUTFILEDIR/$CUEFILE"
1232 echo movecue-$OUTPUT >> "$ABCDETEMPDIR/status"
1241 # Create the playlist if wanted
1243 # PLAYLISTFORMAT, PLAYLISTDATAPREFIX, VAPLAYLISTFORMAT, VAPLAYLISTDATAPREFIX,
1244 # VARIOUSARTISTS, OUTPUTDIR
1247 for OUTPUT in $(echo $OUTPUTTYPE | tr , \ )
1251 OUTPUT=$OGGOUTPUTCONTAINER
1254 OUTPUT=$FLACOUTPUTCONTAINER
1257 # Create a playlist file for the playlist data to go into.
1258 # We used to wipe it out if it existed. Now we request permision if interactive.
1259 for LASTTRACK in $TRACKQUEUE; do :; done
1260 ALBUMFILE="$(mungefilename "$DALBUM")"
1261 ARTISTFILE="$(mungefilename "$DARTIST")"
1262 GENRE=$(mungegenre "$GENRE")
1263 YEAR=${CDYEAR:-$CDYEAR}
1264 if [ "$VARIOUSARTISTS" = "y" ] ; then
1265 PLAYLISTFILE=$(eval echo $VAPLAYLISTFORMAT)
1267 PLAYLISTFILE=$(eval echo $PLAYLISTFORMAT)
1269 FINALPLAYLISTDIR=$(dirname "$OUTPUTDIR/$PLAYLISTFILE")
1270 mkdir -p "$FINALPLAYLISTDIR"
1271 if [ -s "$OUTPUTDIR/$PLAYLISTFILE" ]; then
1272 echo -n "Erase, Append to, or Keep the existing playlist file? [e/a/k] (e): " >&2
1273 if [ "$INTERACTIVE" = "y" ]; then
1274 while [ "$DONE" != "y" ]; do
1276 case $ERASEPLAYLIST in
1277 e|E|a|A|k|K) DONE=y ;;
1285 # Once we erase the playlist, we use append to create the new one.
1286 [ "$ERASEPLAYLIST" = "e" -o "$ERASEPLAYLIST" = "E" ] && rm -f "$OUTPUTDIR/$PLAYLISTFILE" && ERASEPLAYLIST=a
1288 # The playlist does not exist, so we can safelly use append to create the new list
1291 if [ "$ERASEPLAYLIST" = "a" -o "$ERASEPLAYLIST" = "A" ]; then
1292 touch "$OUTPUTDIR/$PLAYLISTFILE"
1293 for UTRACKNUM in $TRACKQUEUE
1295 # Shares some code with do_move since the filenames have to match
1296 CDDBTRACKNUM=$(expr $UTRACKNUM - 1)
1297 do_getcddbinfo TRACKNAME
1299 TRACKFILE="$(mungefilename "$TRACKNAME")"
1300 ARTISTFILE="$(mungefilename "$TRACKARTIST")"
1301 ALBUMFILE="$(mungefilename "$DALBUM")"
1302 # If we want to start the tracks with a given number, we need to modify the
1303 # TRACKNUM value before evaluation
1305 if [ "$VARIOUSARTISTS" = "y" ]; then
1306 OUTPUTFILE=$(eval echo $VAOUTPUTFORMAT)
1308 OUTPUTFILE=$(eval echo $OUTPUTFORMAT)
1310 if [ "$VARIOUSARTISTS" = "y" ]; then
1311 if [ "$VAPLAYLISTDATAPREFIX" ] ; then
1312 echo ${VAPLAYLISTDATAPREFIX}$OUTPUTFILE.$OUTPUT >> "$OUTPUTDIR/$PLAYLISTFILE"
1314 relpath "$PLAYLISTFILE", "$OUTPUTFILE.$OUTPUT" >> "$OUTPUTDIR/$PLAYLISTFILE"
1317 if [ "$PLAYLISTDATAPREFIX" ]; then
1318 echo ${PLAYLISTDATAPREFIX}$OUTPUTFILE.$OUTPUT >> "$OUTPUTDIR/$PLAYLISTFILE"
1320 relpath "$PLAYLISTFILE", "$OUTPUTFILE.$OUTPUT" >> "$OUTPUTDIR/$PLAYLISTFILE"
1325 ## this will convert the playlist to have CRLF line-endings, if specified
1326 ## (some hardware players insist on CRLF endings)
1327 if [ "$DOSPLAYLIST" = "y" ]; then
1328 awk '{substr("\r",""); printf "%s\r\n", $0}' "$OUTPUTDIR/$PLAYLISTFILE" > "$ABCDETEMPDIR/PLAYLISTFILE.tmp"
1329 # mv -f "$ABCDETEMPDIR/PLAYLISTFILE.tmp" "$OUTPUTDIR/$PLAYLISTFILE"
1330 cat "$ABCDETEMPDIR/PLAYLISTFILE.tmp" | sed 's/\//\\/' > "$OUTPUTDIR/$PLAYLISTFILE"
1332 echo "playlistcomplete" >> "$ABCDETEMPDIR/status"
1337 # This essentially the start of things
1340 # Query the CD to get the track info, unless the user specified -C
1341 # or we are using some actions which do not need the CDDB data at all
1342 #if [ ! X"$EXPACTIONS" = "X" ]; then
1344 #elif [ -z "$DISCID" ]; then
1345 if [ -z "$DISCID" ]; then
1346 vecho -n "Getting CD track info... "
1347 # In OSX, unmount the disc before a query
1348 if [ "$OSFLAVOUR" = "OSX" ]; then
1349 disktool -u ${CDROM#/dev/}
1351 if [ "$CDROMREADERSYNTAX" = "flac" ] ; then
1352 TRACKINFO=$($METAFLAC $METAFLACOPTS --export-cuesheet-to=- $CDROM | $CUE2DISCID)
1354 case "$CDDBMETHOD" in
1355 cddb) TRACKINFO=$($CDDISCID $CDROM) ;;
1356 # FIXME # musicbrainz needs a cleanup
1357 musicbrainz) TRACKINFO=$($MUSICBRAINZ -c $CDROM ) ;;
1360 # Make sure there's a CD in there by checking cd-discid's return code
1361 if [ ! "$?" = "0" ]; then
1362 if [ "$CDROMREADERSYNTAX" = "flac" ] ; then
1363 log error "cuesheet information from the flac file could not be read."
1364 log error "Perhaps the flac file does not contain a cuesheet?."
1367 log error "CD could not be read. Perhaps there's no CD in the drive?"
1371 # In OSX, remount the disc again
1372 if [ "$OSFLAVOUR" = "OSX" ]; then
1373 disktool -m ${CDROM#/dev/}
1376 DISCID=$(echo $TRACKINFO | cut -f1 -d' ')
1378 TRACKINFO=$(cat "$WAVOUTPUTDIR/abcde.$DISCID/discid")
1381 # Get a full enumeration of tracks, sort it, and put it in the TRACKQUEUE.
1382 # This needs to be done now because a section of the resuming code will need
1385 # get the number of digits to pad TRACKNUM with - we'll use this later
1386 # a CD can only hold 99 tracks, but since we support a feature for starting
1387 # numbering the tracks from a given number, we might need to set it as a
1388 # variable for the user to define... or obtain it somehow.
1389 if [ "$PADTRACKS" = "y" ] ; then
1393 ABCDETEMPDIR="$WAVOUTPUTDIR/abcde.$(echo $TRACKINFO | cut -f1 -d' ')"
1394 if [ -z "$TRACKQUEUE" ]; then
1395 if [ ! "$STRIPDATATRACKS" = "y" ]; then
1396 case "$CDROMREADERSYNTAX" in
1398 if [ "$WEHAVEACD" = "y" ]; then
1399 vecho "Querying the CD for audio tracks..."
1400 CDPARANOIAOUTPUT="$( $CDROMREADER -$CDPARANOIACDROMBUS $CDROM -Q --verbose 2>&1 )"
1402 if [ ! "$RET" = "0" ];then
1403 log warning "something went wrong while querying the CD... Maybe a DATA CD?"
1405 TRACKS="$(echo "$CDPARANOIAOUTPUT" | egrep '^[[:space:]]+[[:digit:]]' | tail -n 1 | get_first | tr -d "." | tr '\n' ' ')"
1406 CDPARANOIAAUDIOTRACKS="$TRACKS"
1408 # Previous versions of abcde would store the tracks on a file, instead of the status record.
1409 if [ -f "$ABCDETEMPDIR/cdparanoia-audio-tracks" ]; then
1410 echo cdparanoia-audio-tracks=$( cat "$ABCDETEMPDIR/cdparanoia-audio-tracks" ) >> "$ABCDETEMPDIR/status"
1411 rm -f "$ABCDETEMPDIR/cdparanoia-audio-tracks"
1413 if [ -f "$ABCDETEMPDIR/status" ] && TRACKS=$(checkstatus cdparanoia-audio-tracks); then :; else
1414 TRACKS=$(echo $TRACKINFO | cut -f2 -d' ')
1418 *) TRACKS=$(echo $TRACKINFO | cut -f2 -d' ') ;;
1421 TRACKS=$(echo $TRACKINFO | cut -f2 -d' ')
1423 if echo "$TRACKS" | grep "[[:digit:]]" > /dev/null 2>&1 ;then :;else
1424 log info "The disc does not contain any tracks. Giving up..."
1427 echo -n "Grabbing entire CD - tracks: "
1428 if [ ! "$PADTRACKS" = "y" ] ; then
1429 TRACKNUMPADDING=$(echo -n $TRACKS | wc -c | tr -d ' ')
1431 TRACKS=$(printf "%0.${TRACKNUMPADDING}d" $TRACKS)
1433 while [ "$X" -ne "$TRACKS" ]
1435 X=$(printf "%0.${TRACKNUMPADDING}d" $(expr $X + 1))
1436 TRACKQUEUE=$(echo $TRACKQUEUE $X)
1440 TRACKS=$(echo $TRACKINFO | cut -f2 -d' ')
1441 # User-supplied track queue.
1442 # Weed out non-numbers, whitespace, then sort and weed out duplicates
1443 TRACKQUEUE=$(echo $TRACKQUEUE | sed 's-[^0-9 ]--g' | tr ' ' '\n' | grep -v ^$ | sort -n | uniq | tr '\n' ' ' | sed 's- $--g')
1444 # Once cleaned, obtain the highest value in the trackqueue for number padding
1445 for LASTTRACK in $TRACKQUEUE; do :; done
1446 if [ ! "$PADTRACKS" = "y" ] ; then
1447 TRACKNUMPADDING=$(echo -n $LASTTRACK | wc -c | tr -d ' ')
1449 # Now we normalize the trackqueue
1450 for TRACK in $TRACKQUEUE ; do
1451 TRACKNUM=$(printf %0.${TRACKNUMPADDING}d $(expr ${TRACK} + 0 ))
1452 PADTRACKQUEUE=$(echo $PADTRACKQUEUE $TRACKNUM)
1454 TRACKQUEUE=$PADTRACKQUEUE
1455 echo Grabbing tracks: "$TRACKQUEUE"
1458 QUEUEDTRACKS=$(echo $TRACKQUEUE | wc -w | tr -d ' ')
1460 # We have the discid, create a temp directory after it to store all the temp
1463 if [ -e "$ABCDETEMPDIR" ]; then
1464 echo -n "abcde: attempting to resume from $ABCDETEMPDIR"
1465 # It already exists, see if it's a directory
1466 if [ ! -d "$ABCDETEMPDIR" ]; then
1467 # This is a file/socket/fifo/device/etc, not a directory
1470 echo "abcde: file $ABCDETEMPDIR already exists and does not belong to abcde." >&2
1471 echo "Please investigate, remove it, and rerun abcde." >&2
1475 # It's a directory, let's see if it's owned by us
1476 if [ ! -O "$ABCDETEMPDIR" ]; then
1477 # Nope, complain and exit
1479 echo "abcde: directory $ABCDETEMPDIR already exists and is not owned by you." >&2
1480 echo "Please investigate, remove it, and rerun abcde." >&2
1484 # See if it's populated
1485 if [ ! -f "$ABCDETEMPDIR/discid" ]; then
1486 # Wipe and start fresh
1487 echo "abcde: $ABCDETEMPDIR/discid not found. Abcde must remove and recreate" >&2
1488 echo -n "this directory to continue. Continue? [y/n] (n)" >&2
1489 if [ "$INTERACTIVE" = "y" ]; then
1495 if [ "$ANSWER" != "y" ]; then
1498 rm -rf "$ABCDETEMPDIR" || exit 1
1499 mkdir -p "$ABCDETEMPDIR"
1500 if [ "$?" -gt "0" ]; then
1501 # Directory already exists or could not be created
1502 echo "abcde: Temp directory $ABCDETEMPDIR could not be created." >&2
1506 # Everything is fine. Check for ^encodetracklocation-
1507 # and encode-output entries in the status file and
1508 # remove them. These are not relevant across sessions.
1509 if [ -f "$ABCDETEMPDIR/status" ]; then
1510 mv "$ABCDETEMPDIR/status" "$ABCDETEMPDIR/status.old"
1511 grep -v ^encodetracklocation- < "$ABCDETEMPDIR/status.old" \
1512 | grep -v ^encode-output > "$ABCDETEMPDIR/status"
1514 # Remove old error messages
1515 if [ -f "$ABCDETEMPDIR/errors" ]; then
1516 rm -f "$ABCDETEMPDIR/errors"
1520 # We are starting from scratch
1521 mkdir -p "$ABCDETEMPDIR"
1522 if [ "$?" -gt "0" ]; then
1523 # Directory already exists or could not be created
1524 echo "abcde: Temp directory $ABCDETEMPDIR could not be created." >&2
1527 cat /dev/null > "$ABCDETEMPDIR/status"
1528 # Store the abcde version in the status file.
1529 echo "abcde-version=$VERSION" >> "$ABCDETEMPDIR/status"
1531 if [ X"$MAKECUEFILE" = "Xy" -a X"$WEHAVEACD" = "Xy" ]; then
1532 if checkstatus cuefile > /dev/null 2>&1 ; then :; else
1533 CUEFILE=cue-$(echo "$TRACKINFO" | cut -f1 -d' ').txt
1534 vecho "Creating cue file..."
1535 if $CUEREADER $CUEREADEROPTS > "$ABCDETEMPDIR/$CUEFILE"; then
1536 echo cuefile=$CUEFILE >> "$ABCDETEMPDIR/status"
1538 log warning "reading the CUE sheet with mkcue is still considered experimental"
1539 log warning "and there was a problem with the CD reading. abcde will continue,"
1540 log warning "but consider reporting the problem to the abcde author"
1544 # If we got the CDPARANOIA status and it is not recorded, save it now
1545 if [ -n "$CDPARANOIAAUDIOTRACKS" ]; then
1546 if checkstatus cdparanoia-audio-tracks > /dev/null 2>&1; then :; else
1547 echo cdparanoia-audio-tracks=$CDPARANOIAAUDIOTRACKS >> "$ABCDETEMPDIR/status"
1551 # Create the discid file
1552 echo "$TRACKINFO" > "$ABCDETEMPDIR/discid"
1553 if checkstatus cddbmethod > /dev/null 2>&1 ; then :; else
1554 echo "cddbmethod=$CDDBMETHOD" >> "$ABCDETEMPDIR/status"
1559 # Create a proper CUE file based on the CUE file we created before.
1562 if CUEFILE_IN="$ABCDETEMPDIR"/$(checkstatus cuefile); then
1563 CUEFILE_OUT=$CUEFILE_IN.out
1564 ### FIXME ### checkstatus cddb
1565 if [ -e "$CDDBDATA" ]; then
1566 vecho "Adding metadata to the cue file..."
1567 # FIXME It doesn't preserve spaces! Why?
1568 # FIXME parse $track into PERFORMER and TITLE - abcde already has code for this?
1570 echo "PERFORMER \"$DARTIST\"" >> "$CUEFILE_OUT"
1571 echo "TITLE \"$DALBUM\"" >> "$CUEFILE_OUT"
1572 cat "$CUEFILE_IN" | while read line
1574 if echo "$line" | grep -q "INDEX"
1576 eval track="\$TRACK$n"
1578 echo "TITLE \"$track\"" >> "$CUEFILE_OUT"
1580 echo "$line" >> "$CUEFILE_OUT"
1582 mv "$CUEFILE_OUT" "$CUEFILE_IN"
1583 echo "cleancuefile" >> "$ABCDETEMPDIR/status"
1589 # Parses a CDDB file and outputs the title and the track names.
1590 # Variables: CDDBFILE
1594 # List out disc title/author and contents
1595 if [ "$ONETRACK" = "y" ]; then
1596 vecho "ONETRACK mode selected: displaying only the title of the CD..."
1598 echo "---- $(grep DTITLE "${CDDBPARSEFILE}" | cut '-d=' -f2- | tr -d \\r\\n ) ----"
1599 if [ X"$SHOWCDDBYEAR" = "Xy" ]; then
1600 PARSEDYEAR=$(grep DYEAR "${CDDBPARSEFILE}" | cut '-d=' -f2-)
1601 if [ ! X"$PARSEDYEAR" = "X" ]; then
1602 echo "Year: $PARSEDYEAR"
1605 if [ X"$SHOWCDDBGENRE" = "Xy" ]; then
1606 PARSEDGENRE=$(grep DGENRE "${CDDBPARSEFILE}" | cut '-d=' -f2-)
1607 if [ ! X"$PARSEDGENRE" = "X" ]; then
1608 echo "Genre: $PARSEDGENRE"
1611 if [ ! "$ONETRACK" = "y" ]; then
1612 for TRACK in $(f_seq_row 1 $TRACKS)
1614 echo $TRACK: "$(grep ^TTITLE$(expr $TRACK - 1)= "${CDDBPARSEFILE}" | cut -f2- -d= | tr -d \\r\\n)"
1620 # Check for a local CDDB file, and report success
1623 if checkstatus cddb-readcomplete && checkstatus cddb-choice >/dev/null; then :; else
1625 CDDBLOCALSTATUS="notfound"
1626 CDDBDISCID=$(echo $TRACKINFO | cut -d' ' -f1)
1629 if [ "$CDDBLOCALRECURSIVE" = "y" ]; then
1630 CDDBLOCALRESULTS="$(find ${CDDBLOCALDIR} -name "${CDDBDISCID}" -type f 2> /dev/null)"
1631 if (( $(echo "${CDDBLOCALRESULTS}" | wc -l) = 1 )); then
1632 CDDBLOCALFILE="${CDDBLOCALDIR}/${CDDBLOCALRESULTS}"
1633 CDDBLOCALMATCH=single
1634 elif (( $(echo "${CDDBLOCALRESULTS}" | wc -l) > 1 )); then
1635 CDDBLOCALMATCH=multiple
1639 elif [ -r "${CDDBLOCALDIR}/${CDDBDISCID}" ]; then
1640 CDDBLOCALFILE="${CDDBLOCALDIR}/${CDDBDISCID}"
1641 CDDBLOCALMATCH=single
1646 # If the user has selected to check a local CDDB repo, we proceed with it
1647 case $CDDBLOCALMATCH in
1650 cat "$CDDBLOCALRESULTS" | while read RESULT ; do
1652 # List out disc title/author and contents
1653 CDDBLOCALREAD="$ABCDETEMPDIR/cddblocalread.$X"
1654 cat "$RESULT" >> "${CDDBLOCALREAD}"
1657 do_cddbparse "${CDDBLOCALREAD}"
1658 } >> "$ABCDETEMPDIR/cddblocalchoices"
1661 if [ "$INTERACTIVE" = "y" ]; then
1662 while [ $CDDBLOCALCHOICENUM -lt 0 ] || [ $CDDBLOCALCHOICENUM -gt $CDDBLOCALCHOICES ]; do
1663 echo -n "Locally cached CDDB entries found. Which one would you like to use (0 for none)? [0-$CDDBLOCALCHOICES]: " >&2
1665 [ x"$CDDBLOCALRESP" = "x" ] && CDDBLOCALRESP="1"
1672 if [ ! "$CDDBLOCALRESP" = "0" ]; then
1673 #echo "Using local copy of CDDB data"
1674 echo "# DO NOT ERASE THIS LINE! Added by abcde to imitate cddb output" > "$ABCDETEMPDIR/cddbread.1"
1675 cat "$ABCDETEMPDIR/cddblocalread.$CDDBLOCALRESP" >> "$ABCDETEMPDIR/cddbread.1"
1676 echo 999 > "$ABCDETEMPDIR/cddbquery" # Assuming 999 isn't used by CDDB
1677 echo cddb-readcomplete >> "$ABCDETEMPDIR/status"
1678 do_cddbparse "$ABCDETEMPDIR/cddbread.1" > "$ABCDETEMPDIR/cddbchoices"
1679 echo cddb-choice=1 >> "$ABCDETEMPDIR/status"
1680 CDDBLOCALSTATUS="found"
1682 #echo "Not using local copy of CDDB data"
1683 CDDBLOCALSTATUS="notfound"
1687 # List out disc title/author and contents
1688 do_cddbparse "${CDDBLOCALFILE}"
1689 echo -n "Locally cached CDDB entry found, use it? [y/n] (y): " >&2
1690 if [ "$INTERACTIVE" = "y" ]; then
1692 while [ "$USELOCALRESP" != "y" ] && [ "$USELOCALRESP" != "n" ] && [ "$USELOCALRESP" != "" ] ; do
1693 echo -n 'Invalid selection. Please answer "y" or "n": ' >&2
1696 [ x"$USELOCALRESP" = "x" ] && USELOCALRESP="y"
1700 if [ "$USELOCALRESP" = "y" ]; then
1701 #echo "Using local copy of CDDB data"
1702 echo "# DO NOT ERASE THIS LINE! Added by abcde to imitate cddb output" > "$ABCDETEMPDIR/cddbread.1"
1703 cat "${CDDBLOCALFILE}" >> "$ABCDETEMPDIR/cddbread.1"
1704 echo 999 > "$ABCDETEMPDIR/cddbquery" # Assuming 999 isn't used by CDDB
1705 echo cddb-readcomplete >> "$ABCDETEMPDIR/status"
1706 do_cddbparse "${CDDBLOCALFILE}" > "$ABCDETEMPDIR/cddbchoices"
1707 echo cddb-choice=1 >> "$ABCDETEMPDIR/status"
1708 CDDBLOCALSTATUS="single"
1710 #echo "Not using local copy of CDDB data"
1711 CDDBLOCALSTATUS="notfound"
1715 CDDBLOCALSTATUS="notfound"
1721 do_musicbrainzstat ()
1734 # Perform CDDB protocol version check if it hasn't already been done
1735 if checkstatus cddb-statcomplete; then :; else
1736 if [ "$CDDBAVAIL" = "n" ]; then
1738 echo 503 > "$ABCDETEMPDIR/cddbstat"
1741 CDDBUSER=$(echo $HELLOINFO | cut -f1 -d'@')
1742 CDDBHOST=$(echo $HELLOINFO | cut -f2- -d'@')
1743 while test $rc -eq 1 -a $CDDBPROTO -ge 3; do
1744 vecho "Checking CDDB server status..."
1745 $CDDBTOOL stat $CDDBURL $CDDBUSER $CDDBHOST $CDDBPROTO > "$ABCDETEMPDIR/cddbstat"
1746 RESPONSECODE=$(head -n 1 "$ABCDETEMPDIR/cddbstat" | cut -f1 -d' ')
1747 case "$RESPONSECODE" in
1748 210) # 210 OK, status information follows (until terminating `.')
1751 501|*) # 501 Illegal CDDB protocol level: <n>.
1752 CDDBPROTO=`expr $CDDBPROTO - 1`
1756 if test $rc -eq 1; then
1760 echo cddb-statcomplete >> "$ABCDETEMPDIR/status"
1768 CDDBDISCID=$(echo $TRACKINFO | cut -d' ' -f1)
1769 CDDBLOCALFILE="${CDDBLOCALDIR}/${CDDBDISCID}"
1771 # Perform CDDB query if it hasn't already been done
1772 if checkstatus cddb-querycomplete; then :; else
1773 if [ "$CDDBAVAIL" = "n" ]; then
1775 echo 503 > "$ABCDETEMPDIR/cddbquery"
1776 # The default CDDBLOCALSTATUS is "notfound"
1777 # This part will be triggered if the user CDDB repo does not
1778 # contain the entry, or if we are not trying to use the repo.
1780 vecho "Querying the CDDB server..."
1781 CDDBUSER=$(echo $HELLOINFO | cut -f1 -d'@')
1782 CDDBHOST=$(echo $HELLOINFO | cut -f2- -d'@')
1783 $CDDBTOOL query $CDDBURL $CDDBPROTO $CDDBUSER $CDDBHOST $TRACKINFO > "$ABCDETEMPDIR/cddbquery"
1789 # no match found in database,
1790 # wget/fetch error, or user requested not to use CDDB
1791 # Make up an error code (503) that abcde
1792 # will recognize in do_cddbread
1793 # and compensate by making a template
1794 echo 503 > "$ABCDETEMPDIR/cddbquery"
1796 *) # strange and unknown error
1797 echo ERRORCODE=$ERRORCODE
1798 echo "abcde: $CDDBTOOL returned unknown error code"
1802 echo cddb-querycomplete >> "$ABCDETEMPDIR/status"
1809 # If it's not to be used, generate a template.
1810 # Then, display it (or them) and let the user choose/edit it
1811 if checkstatus cddb-readcomplete; then :; else
1812 vecho "Obtaining CDDB results..."
1813 # If CDDB is to be used, interpret the query results and read all
1814 # the available entries.
1815 rm -f "$ABCDETEMPDIR/cddbchoices"
1816 CDDBCHOICES=1 # Overridden by multiple matches
1817 RESPONSECODE=$(head -n 1 "$ABCDETEMPDIR/cddbquery" | cut -f1 -d' ')
1818 case "$RESPONSECODE" in
1820 # One exact match, retrieve it
1821 # 200 [section] [discid] [artist] / [title]
1822 if checkstatus cddb-read-1-complete; then :; else
1823 echo -n "Retrieving 1 CDDB match..." >> "$ABCDETEMPDIR/cddbchoices"
1824 $CDDBTOOL read $CDDBURL $CDDBPROTO $CDDBUSER $CDDBHOST $(cut -f2,3 -d' ' "$ABCDETEMPDIR/cddbquery") > "$ABCDETEMPDIR/cddbread.1"
1825 echo "done." >> "$ABCDETEMPDIR/cddbchoices"
1826 echo cddb-read-1-complete >> "$ABCDETEMPDIR/status"
1827 echo cddb-choice=1 >> "$ABCDETEMPDIR/status"
1829 # List out disc title/author and contents
1830 echo ---- "$(cut '-d ' -f4- "$ABCDETEMPDIR/cddbquery")" ---- >> "$ABCDETEMPDIR/cddbchoices"
1831 for TRACK in $(f_seq_row 1 $TRACKS)
1833 echo $TRACK: "$(grep ^TTITLE$(expr $TRACK - 1)= "$ABCDETEMPDIR/cddbread.1" | cut -f2- -d= | tr -d \\r\\n)" >> "$ABCDETEMPDIR/cddbchoices"
1835 echo >> "$ABCDETEMPDIR/cddbchoices"
1839 case "$RESPONSECODE" in
1840 202) echo "No CDDB match." >> "$ABCDETEMPDIR/cddbchoices" ;;
1841 403|409) echo "CDDB entry is corrupt, or the handshake failed." >> "$ABCDETEMPDIR/cddbchoices" ;;
1842 503) echo "CDDB unavailable." >> "$ABCDETEMPDIR/cddbchoices" ;;
1844 $CDDBTOOL template $(cat "$ABCDETEMPDIR/discid") > "$ABCDETEMPDIR/cddbread.0"
1845 # List out disc title/author and contents of template
1846 echo ---- Unknown Artist / Unknown Album ---- >> "$ABCDETEMPDIR/cddbchoices"
1848 for TRACK in $(f_seq_row 1 $TRACKS)
1850 echo $TRACK: "$(grep ^TTITLE$(expr $TRACK - 1)= "$ABCDETEMPDIR/cddbread.0" | cut -f2- -d= | tr -d \\r\\n)" >> "$ABCDETEMPDIR/cddbchoices"
1852 echo >> "$ABCDETEMPDIR/cddbchoices"
1853 echo cddb-read-0-complete >> "$ABCDETEMPDIR/status"
1854 echo cddb-choice=0 >> "$ABCDETEMPDIR/status"
1857 # Multiple exact, (possibly multiple) inexact matches
1859 if [ "$RESPONSECODE" = "211" ]; then IN=in; fi
1860 if [ "$(wc -l < "$ABCDETEMPDIR/cddbquery" | tr -d ' ')" -eq 3 ]; then
1861 echo "One ${IN}exact match:" >> "$ABCDETEMPDIR/cddbchoices"
1862 tail -n +2 "$ABCDETEMPDIR/cddbquery" | head -n 1 >> "$ABCDETEMPDIR/cddbchoices"
1863 echo cddb-choice=1 >> "$ABCDETEMPDIR/status"
1865 echo "Multiple ${IN}exact matches:" >> "$ABCDETEMPDIR/cddbchoices"
1867 vecho -n "Retrieving multiple matches... "
1868 grep -v ^[.]$ "$ABCDETEMPDIR/cddbquery" | ( X=0
1869 read DISCINFO # eat top line
1873 if checkstatus cddb-read-$X-complete; then :; else
1874 $CDDBTOOL read $CDDBURL $CDDBPROTO $CDDBUSER $CDDBHOST $(echo $DISCINFO | cut -f1,2 -d' ') > "$ABCDETEMPDIR/cddbread.$X"
1875 echo cddb-read-$X-complete >> "$ABCDETEMPDIR/status"
1877 # List out disc title/author and contents
1878 echo \#$X: ---- "$DISCINFO" ---- >> "$ABCDETEMPDIR/cddbchoices"
1879 for TRACK in $(f_seq_row 1 $TRACKS)
1881 echo $TRACK: "$(grep ^TTITLE$(expr $TRACK - 1)= "$ABCDETEMPDIR/cddbread.$X" | cut -f2- -d= | tr -d \\r\\n)" >> "$ABCDETEMPDIR/cddbchoices"
1883 echo >> "$ABCDETEMPDIR/cddbchoices"
1886 CDDBCHOICES=$(expr $(cat "$ABCDETEMPDIR/cddbquery" | wc -l) - 2)
1890 for TRACK in $(f_seq_row 1 $TRACKS)
1892 echo $TRACK: "$(grep ^TTITLE$(expr $TRACK - 1)= "$ABCDETEMPDIR/cddbread.1" | cut -f2- -d= | tr -d \\r\\n)" >> "$ABCDETEMPDIR/cddbchoices"
1894 echo >> "$ABCDETEMPDIR/cddbchoices"
1895 echo cddb-read-1-complete >> "$ABCDETEMPDIR/status"
1896 echo cddb-choice=1 >> "$ABCDETEMPDIR/status"
1899 echo "cddb-readcomplete" >> "$ABCDETEMPDIR/status"
1906 if checkstatus cddb-edit >/dev/null; then
1907 CDDBDATA="$ABCDETEMPDIR/cddbread.$(checkstatus cddb-choice)"
1908 VARIOUSARTISTS="$(checkstatus variousartists)"
1909 VARIOUSARTISTSTYLE="$(checkstatus variousartiststyle)"
1912 if [ "$INTERACTIVE" = "y" ]; then
1913 # We should show the CDDB results both when we are not using the local CDDB repo
1914 # or when we are using it but we could not find a proper match
1915 if [ "$CDDBUSELOCAL" = "y" ] && [ "$CDDBLOCALSTATUS" = "notfound" ] || [ ! "$CDDBUSELOCAL" = "y" ]; then
1916 # Display the $ABCDETEMPDIR/cddbchoices file created above
1917 # Pick a pager so that if the tracks overflow the screen the user can still view everything
1918 if [ -r "$ABCDETEMPDIR/cddbchoices" ]; then
1919 CDDBCHOICES=$(expr $(cat "$ABCDETEMPDIR/cddbquery" | wc -l) - 2)
1920 CHOICE=$(checkstatus cddb-choice)
1921 if [ -n "$CHOICE" ] ; then
1922 case $CDDBCHOICES in
1923 -1) if head -1 "$ABCDETEMPDIR/cddbquery" | grep -q "^$" ; then
1924 log error "CDDB query failed!"
1927 cat "$ABCDETEMPDIR/cddbchoices"
1930 1) cat "$ABCDETEMPDIR/cddbchoices" ;;
1932 echo "Selected: #$CHOICE"
1933 do_cddbparse "$ABCDETEMPDIR/cddbread.$CHOICE"
1937 # The user has a choice to make, display the info in a pager if necessary
1938 if [ $(cat "$ABCDETEMPDIR/cddbchoices" | wc -l) -ge 24 ]; then
1939 page "$ABCDETEMPDIR/cddbchoices"
1941 # It's all going to fit in one page, cat it
1942 cat "$ABCDETEMPDIR/cddbchoices" >&2
1946 # Setting the choice to an impossible integer to avoid errors in the numeric comparisons
1948 # I'll take CDDB read #3 for $400, Alex
1949 while [ $CDCHOICENUM -lt 0 ] || [ $CDCHOICENUM -gt $CDDBCHOICES ]; do
1950 echo -n "Which entry would you like abcde to use (0 for none)? [0-$CDDBCHOICES]: " >&2
1952 [ X"$CDDBCHOICE" = "X" ] && CDDBCHOICE=1
1953 if echo $CDDBCHOICE | egrep -q "[[:space:]]*[[:digit:]]+,[[:digit:]]+[[:space:]]*" ; then
1954 if [ ! X"$DIFF" = "X" ]; then
1955 PARSECHOICE1=$(echo $CDDBCHOICE | cut -d"," -f1 | xargs printf %d 2>/dev/null)
1956 PARSECHOICE2=$(echo $CDDBCHOICE | cut -d"," -f2 | xargs printf %d 2>/dev/null)
1957 if [ $PARSECHOICE1 -lt 1 ] || [ $PARSECHOICE1 -gt $CDDBCHOICES ] || \
1958 [ $PARSECHOICE2 -lt 1 ] || [ $PARSECHOICE2 -gt $CDDBCHOICES ] || \
1959 [ $PARSECHOICE1 -eq $PARSECHOICE2 ]; then
1960 echo "Invalid diff range. Please select two coma-separated numbers between 1 and $CDDBCHOICES" >&2
1962 # We parse the 2 choices to diff, store them in temporary files and diff them.
1963 for PARSECHOICE in $(echo $CDDBCHOICE | tr , \ ); do
1964 do_cddbparse "$ABCDETEMPDIR/cddbread.$PARSECHOICE" > "$ABCDETEMPDIR/cddbread.parsechoice.$PARSECHOICE"
1966 echo "Showing diff between choices $PARSECHOICE1 and $PARSECHOICE2..." > "$ABCDETEMPDIR/cddbread.diff"
1967 $DIFF $DIFFOPTS "$ABCDETEMPDIR/cddbread.parsechoice.$PARSECHOICE1" "$ABCDETEMPDIR/cddbread.parsechoice.$PARSECHOICE2" >> "$ABCDETEMPDIR/cddbread.diff"
1968 if [ $(cat "$ABCDETEMPDIR/cddbread.diff" | wc -l) -ge 24 ]; then
1969 page "$ABCDETEMPDIR/cddbread.diff"
1971 cat "$ABCDETEMPDIR/cddbread.diff" >&2
1975 echo "The diff program was not found in your path. Please choose a number between 0 and $CDDBCHOICES." >&2
1977 elif echo $CDDBCHOICE | egrep -q "[[:space:]]*[[:digit:]]+[[:space:]]*" ; then
1978 # Make sure we get a valid choice
1979 CDCHOICENUM=$(echo $CDDBCHOICE | xargs printf %d 2>/dev/null)
1980 if [ $CDCHOICENUM -lt 0 ] || [ $CDCHOICENUM -gt $CDDBCHOICES ]; then
1981 echo "Invalid selection. Please choose a number between 0 and $CDDBCHOICES." >&2
1985 if [ "$CDCHOICENUM" = "0" ]; then
1986 vecho "Creating empty CDDB template..."
1988 $CDDBTOOL template $(cat "$ABCDETEMPDIR/discid") > "$ABCDETEMPDIR/cddbread.0"
1990 echo "Selected: #$CDCHOICENUM ($(grep ^DTITLE= "$ABCDETEMPDIR/cddbread.$CDCHOICENUM" | cut -f2- -d= | tr -d \\r\\n))" >&2
1991 do_cddbparse "$ABCDETEMPDIR/cddbread.$CDCHOICENUM"
1993 echo "cddb-choice=$CDCHOICENUM" >> "$ABCDETEMPDIR/status"
1997 # We need some code to show the selected option when local repository is selected and we have found a match
1998 vecho "Using cached CDDB match..." >&2
1999 # Display the $ABCDETEMPDIR/cddbchoices file created above
2000 # Pick a pager so that if the tracks overflow the screen the user can still view everything
2001 if [ -r "$ABCDETEMPDIR/cddbchoices" ]; then
2002 CDDBCHOICES=$(expr $(cat "$ABCDETEMPDIR/cddbquery" | wc -l) - 2)
2003 CHOICE=$(checkstatus cddb-choice)
2004 if [ "$USELOCALRESP" = "y" ]; then :; else
2005 if [ -n "$CHOICE" ] ; then
2006 case $CDDBCHOICES in
2009 echo "Selected template."
2011 1) cat "$ABCDETEMPDIR/cddbchoices" ;;
2013 echo "Selected: #$CHOICE"
2014 do_cddbparse "$ABCDETEMPDIR/cddbread.$CHOICE"
2022 # We're noninteractive - pick the first choice.
2023 # But in case we run a previous instance and selected a choice, use it.
2024 if [ -r "$ABCDETEMPDIR/cddbchoices" ]; then
2025 # Show the choice if we are not using the locally stored one
2026 # or when the local search failed to find a match.
2027 PREVIOUSCHOICE=$(checkstatus cddb-choice)
2028 if [ "$CDDBUSELOCAL" = "y" ] && [ "$CDDBLOCALSTATUS" = "notfound" ] || [ ! "$CDDBUSELOCAL" = "y" ]; then
2029 #if [ "$PREVIOUSCHOICE" ]; then
2030 cat "$ABCDETEMPDIR/cddbchoices"
2033 if [ ! -z "$PREVIOUSCHOICE" ] ; then
2034 CDCHOICENUM=$PREVIOUSCHOICE
2037 echo "cddb-choice=$CDCHOICENUM" >> "$ABCDETEMPDIR/status"
2039 echo "Selected: #$CDCHOICENUM ($(grep ^DTITLE= "$ABCDETEMPDIR/cddbread.$CDCHOICENUM" | cut -f2- -d= | tr -d \\r\\n))" >&2
2044 if checkstatus cddb-choice >/dev/null; then :; else
2045 echo "abcde: internal error: cddb-choice not recorded." >&2
2048 CDDBDATA="$ABCDETEMPDIR/cddbread.$(checkstatus cddb-choice)"
2049 echo -n "Edit selected CDDB data? [y/n] (" >&2
2050 if [ "$INTERACTIVE" = "y" ]; then
2051 if [ "$UNKNOWNDISK" = "y" ]; then
2054 [ "$EDITCDDB" != "n" ] && EDITCDDB=y
2063 if [ "$EDITCDDB" = "y" ]; then
2064 CDDBDATAMD5SUM=$($MD5SUM "$CDDBDATA" | cut -d " " -f 1);
2066 # Use the debian sensible-editor wrapper to pick the editor that the
2067 # user has requested via their $EDITOR environment variable
2068 if [ -x "/usr/bin/sensible-editor" ]; then
2069 /usr/bin/sensible-editor "$CDDBDATA"
2070 elif [ -n "$EDITOR" ]; then
2071 if [ -x $(which "${EDITOR%%\ *}") ]; then
2072 # That failed, try to load the preferred editor, starting
2073 # with their EDITOR variable
2074 eval $(echo "$EDITOR") \"$CDDBDATA\"
2076 # If that fails, check for a vi
2077 elif which vi >/dev/null 2>&1; then
2079 elif [ -x /usr/bin/vim ]; then
2080 /usr/bin/vim "$CDDBDATA"
2081 elif [ -x /usr/bin/vi ]; then
2082 /usr/bin/vi "$CDDBDATA"
2083 elif [ -x /bin/vi ]; then
2085 # nano should be on all (modern, i.e., sarge) debian systems
2086 elif which nano >/dev/null 2>&1 ; then
2088 elif [ -x /usr/bin/nano ]; then
2089 /usr/bin/nano "$CDDBDATA"
2090 # mg should be on all OpenBSD systems
2091 elif which mg >/dev/null 2>&1 ; then
2093 elif [ -x /usr/bin/mg ]; then
2094 /usr/bin/mg "$CDDBDATA"
2097 log warning "no editor available. Check your EDITOR environment variable."
2099 # delete editor backup file if it exists
2100 if [ -w "$CDDBDATA~" ]; then
2105 # Some heuristics first. Look at Disc Title, and if it starts with
2106 # "Various", then we'll assume Various Artists
2107 if [ "$(grep ^DTITLE= "$CDDBDATA" | cut -f2- -d= | egrep -ci '^(various|soundtrack|varios|sonora|ost)')" != "0" ]; then
2108 echo "Looks like a Multi-Artist CD" >&2
2111 echo -n "Is the CD multi-artist? [y/n] (n): " >&2
2112 if [ "$INTERACTIVE" = "y" ]; then
2119 if [ "$VARIOUSARTISTS" = "y" ] && [ ! "$ONETRACK" = "y" ]; then
2122 # Need NUMTRACKS before cddb-tool will return it:
2123 NUMTRACKS=$(egrep '^TTITLE[0-9]+=' "$CDDBDATA" | wc -l)
2124 if [ "$(grep -c "^TTITLE.*\/" "$CDDBDATA")" -gt "$(expr $NUMTRACKS / 2 )" ]; then
2125 # More than 1/2 tracks contain a "/", so guess forward
2127 elif [ "$(grep -c "^TTITLE.*\-" "$CDDBDATA")" -gt "$(expr $NUMTRACKS / 2 )" ]; then
2128 # More than 1/2 contain a "-", so guess forward-dash
2130 elif [ "$(grep -c "^TTITLE.*(.*)" "$CDDBDATA")" -gt "$(expr $NUMTRACKS / 2 )" ]; then
2131 # More than 1/2 contain something in parens, so guess trailing-paren
2135 echo "1) Artist / Title" >&2
2136 echo "2) Artist - Title" >&2
2137 echo "3) Title / Artist" >&2
2138 echo "4) Title - Artist" >&2
2139 echo "5) Artist: Title" >&2
2140 echo "6) Title (Artist)" >&2
2141 echo "7) This is a single-artist CD" >&2
2142 echo -n "Which style of multiple artist entries is it? [1-7] ($DEFAULTSTYLE): " >&2
2143 if [ "$INTERACTIVE" = "y" ]; then
2144 read VARIOUSARTISTSTYLE
2146 echo $DEFAULTSTYLE >&2
2147 VARIOUSARTISTSTYLE=$DEFAULTSTYLE
2149 VARIOUSARTISTSTYLE=$(echo 0$VARIOUSARTISTSTYLE | xargs printf %d)
2150 # If they press Enter, then the default style (0) was chosen
2151 while [ $VARIOUSARTISTSTYLE -lt 0 ] || [ $VARIOUSARTISTSTYLE -gt 7 ]; do
2152 echo "Invalid selection. Please choose a number between 1 and 7."
2153 echo -n "Selection [1-7]: "
2154 read VARIOUSARTISTSTYLE
2155 VARIOUSARTISTSTYLE=$(echo 0$VARIOUSARTISTSTYLE | xargs printf %d)
2157 if [ "$VARIOUSARTISTSTYLE" = "0" ]; then
2158 VARIOUSARTISTSTYLE=$DEFAULTSTYLE
2160 vecho "Selected: $VARIOUSARTISTSTYLE"
2161 case "$VARIOUSARTISTSTYLE" in
2163 VARIOUSARTISTSTYLE=forward
2166 VARIOUSARTISTSTYLE=forward-dash
2169 VARIOUSARTISTSTYLE=reverse
2172 VARIOUSARTISTSTYLE=reverse-dash
2175 VARIOUSARTISTSTYLE=colon
2178 VARIOUSARTISTSTYLE=trailing-paren
2186 echo "variousartists=$VARIOUSARTISTS" >> "$ABCDETEMPDIR/status"
2187 echo "variousartiststyle=$VARIOUSARTISTSTYLE" >> "$ABCDETEMPDIR/status"
2189 if [ "$EDITCDDB" = "y" ] && [ "$UNINTENTIONALLY_ANGER_THE_FREEDB_PEOPLE" = "y" ]; then
2190 if [ "$CDDBDATAMD5SUM" != "" ] && [ "$CDDBDATAMD5SUM" != "$($MD5SUM "$CDDBDATA" | cut -d " " -f 1)" ]; then
2191 # This works but does not have the necessary error checking
2192 # yet. If you are familiar with the CDDB spec
2193 # (see http://www.freedb.org/src/latest/DBFORMAT)
2194 # and can create an error-free entry on your own, then put
2195 # UNINTENTIONALLY_ANGER_THE_FREEDB_PEOPLE=y in your
2196 # abcde.conf to enable it. Put CDDBSUBMIT=email@address in
2197 # your abcde.conf to change the email address submissions are
2200 # submit the modified file, if they want
2201 if [ "$NOSUBMIT" != "y" ]; then
2202 echo -n "Do you want to submit this entry to $CDDBSUBMIT? [y/n] (n): "
2204 while [ "$YESNO" != "y" ] && [ "$YESNO" != "n" ] && [ "$YESNO" != "Y" ] && \
2205 [ "$YESNO" != "N" ] && [ "$YESNO" != "" ]
2207 echo -n 'Invalid selection. Please answer "y" or "n": '
2210 if [ "$YESNO" = "y" ] || [ "$YESNO" = "Y" ]; then
2211 echo -n "Sending..."
2212 $CDDBTOOL send "$CDDBDATA" $CDDBSUBMIT
2219 # User CDDBLOCALPOLICY to find out if we store the file or not...
2220 # Cache edited CDDB entry in the user's cddb dir
2221 if [ "$CDDBCOPYLOCAL" = "y" ]; then
2222 # Make sure the cache directory exists
2223 mkdir -p $CDDBLOCALDIR
2224 cat "$CDDBDATA" | tail -n $(expr $(cat "$CDDBDATA" | wc -l ) - 1 ) > ${CDDBLOCALDIR}/$(echo "$TRACKINFO" | cut -d' ' -f1)
2227 echo "cddb-edit" >> "$ABCDETEMPDIR/status"
2230 # do_cdread [tracknumber]
2231 # do_cdread onetrack [firsttrack] [lasttrack]
2235 # The commands here don't go through run_command because they're never supposed to be silenced
2236 # return codes need to be doublechecked anyway, however
2237 if [ "$1" = "onetrack" ]; then
2238 # FIXME # Add the possibility of grabbing ranges of tracks in onetrack
2239 # FIXME # Until then, we grab the whole CD in one track, no matter what
2241 # We need the first and last track for cdda2wav
2244 UTRACKNUM=$FIRSTTRACK
2245 case "$CDROMREADERSYNTAX" in
2246 flac) READTRACKNUMS="$FIRSTTRACK.1-$(($LASTTRACK + 1)).0" ;;
2247 cdparanoia) READTRACKNUMS="$FIRSTTRACK-$LASTTRACK" ;;
2248 cdda2wav) READTRACKNUMS="$FIRSTTRACK+$LASTRACK" ;;
2249 *) echo "abcde error: $CDROMREADERSYNTAX does not support ONETRACK mode"
2255 CDDBTRACKNUM=$(expr $UTRACKNUM - 1)
2256 if [ "$USEPIPES" = "y" ]; then
2257 TEMPARG="PIPERIPPER_$CDROMREADERSYNTAX"
2258 FILEARG="$( eval echo "\$$TEMPARG" )"
2260 PIPE_MESSAGE="and encoding "
2262 WAVDATA="$ABCDETEMPDIR/track$UTRACKNUM.wav"
2263 case "$CDROMREADERSYNTAX" in
2264 ## FIXME ## Find the cases for dagrab and flac, to avoid exceptions
2266 FILEARG="--output-name=$WAVDATA"
2269 FILEARG="-f $WAVDATA"
2277 if [ "$1" = "onetrack" ]; then
2278 echo "Grabbing ${PIPE_MESSAGE}tracks $UTRACKNUM - $LASTTRACK as one track ..." >&2
2280 if [ -r "$CDDBDATA" ]; then
2281 do_getcddbinfo TRACKNAME
2282 echo "Grabbing ${PIPE_MESSAGE}track $UTRACKNUM: $TRACKNAME..." >&2
2284 echo "Grabbing ${PIPE_MESSAGE}track $UTRACKNUM..." >&2
2287 case "$CDROMREADERSYNTAX" in
2288 ### FIXME ### use an exception for flac, since it uses -o
2289 ### FIXME ### Shall we just use -o $FILEARG ??
2291 nice $READNICE $FLAC -d --cue=${READTRACKNUMS:-$UTRACKNUM.1-$(($UTRACKNUM + 1)).0} "$FILEARG" "$CDROM" ;;
2293 echo "nice $READNICE $CDROMREADER -$CDPARANOIACDROMBUS $CDROM ${READTRACKNUMS:-$UTRACKNUM} "$FILEARG" $REDIR ;;" > /tmp/log
2294 nice $READNICE $CDROMREADER -$CDPARANOIACDROMBUS $CDROM ${READTRACKNUMS:-$UTRACKNUM} "$FILEARG" $REDIR ;;
2296 if [ "$OSFLAVOUR" = "OSX" ] ; then
2297 # Hei, we have to unmount the device before running anything like cdda2wav in OSX
2298 disktool -u ${CDROM#/dev/} 0
2299 # Also, in OSX the cdrom device for cdda2wav changes...
2300 CDDA2WAVCDROM="IODVDServices"
2301 elif [ "$OSFLAVOUR" = "FBSD" ] ; then
2302 CDDA2WAVCDROM="$CDROMID"
2304 if [ "$CDROMID" = "" ]; then
2305 CDDA2WAVCDROM="$CDROM"
2307 CDDA2WAVCDROM="$CDROMID"
2310 nice $READNICE $CDROMREADER -D $CDDA2WAVCDROM -t ${READTRACKNUMS:-$UTRACKNUM} "$FILEARG" $REDIR
2312 ## FIXME ## We have an exception for dagrab, since it uses -f
2313 ## FIXME ## Shall we just use -f $FILEARG ??
2314 dagrab) nice $READNICE $CDROMREADER -d $CDROM -v $UTRACKNUM "$FILEARG" $REDIR
2317 # Find the track's mounted path
2318 REALTRACKNUM=$(expr $UTRACKNUM + 0)
2319 FILEPATH=$(mount | grep "$CDROM on" | sed 's/^[^ ]* on \(.*\) (.*/\1/')
2320 FILEPATH=$(find "$FILEPATH" | grep "/$REALTRACKNUM ");
2321 # If the file exists, copy it
2322 if [ -e "$FILEPATH" ] ; then
2323 nice $READNICE $CDROMREADER "$FILEPATH" "$FILEARG" $REDIR
2327 debug) nice $READNICE $CDROMREADER -$CDPARANOIACDROMBUS $CDROM -w $UTRACKNUM-[:1] "$FILEARG" $REDIR
2331 # If we get some error or we get some missing wav
2332 # (as long as we dont use pipes)
2333 if [ "$RETURN" != "0" -o \( ! -s "$WAVDATA" -a X"$USEPIPES" != "Xy" \) ]; then
2334 # Thank goodness errors is only machine-parseable up to the
2335 # first colon, otherwise this woulda sucked
2336 if [ "$RETURN" = "0" -a ! -s "$WAVDATA" ]; then
2337 RETURN=73 # fake a return code as cdparanoia return 0 also on aborted reads
2339 if [ "$USEPIPES" = "y" ]; then
2340 echo "readencodetrack-$UTRACKNUM: $CDROMREADER returned code $RETURN" >> "$ABCDETEMPDIR/errors"
2342 echo "readtrack-$UTRACKNUM: $CDROMREADER returned code $RETURN" >> "$ABCDETEMPDIR/errors"
2346 if [ "$USEPIPES" = "y" ]; then
2347 echo readencodetrack-$UTRACKNUM >> "$ABCDETEMPDIR/status"
2349 echo readtrack-$UTRACKNUM >> "$ABCDETEMPDIR/status"
2350 if [ "$1" = "onetrack" ]; then
2351 echo onetrack >> "$ABCDETEMPDIR/status"
2358 # No values accepted, only uses env variables
2361 if "$CDSPEED" "$CDSPEEDOPTS" "$CDSPEEDVALUE" >/dev/null ; then
2362 vecho "Setting CD speed to ${CDSPEEDVALUE}x"
2364 echo "abcde: unable to set the device speed" >&2
2370 # vecho outputs a message if EXTRAVERBOSE is selected
2373 if [ x"$EXTRAVERBOSE" != "x" ]; then
2375 warning) log warning "$@" ;;
2383 # decho outputs a debug message if DEBUG is selected
2386 if [ x"$DEBUG" != "x" ]; then
2387 if echo $1 | grep -q "^\[" ; then
2388 DEBUGECHO=$(echo "$@" | tr -d '[]')
2389 echo "[DEBUG] $DEBUGECHO: `eval echo \\$${DEBUGECHO}`"
2396 # User-redefinable functions
2397 # Custom filename munging:
2400 #echo "$@" | sed s,:,\ -,g | tr \ /\* __+ | tr -d \'\"\?\[:cntrl:\]
2401 echo "$@" | sed s,:,\ -,g | tr \ / __ | tr -d \'\"\?\[:cntrl:\]
2404 # Custom genre munging:
2407 echo $CDGENRE | tr "[:upper:]" "[:lower:]"
2411 # Empty pre_read function, to be defined in the configuration file.
2418 # Empty post_read function, to be defined in the configuration file.
2424 ###############################################################################
2427 # Start of execution
2428 ###############################################################################
2433 # Defaults to FreeDB, but a python musicbrainz can be used
2435 CDDBURL="http://freedb.freedb.org/~cddb/cddb.cgi"
2436 CDDBSUBMIT=freedb-submit@freedb.org
2438 HELLOINFO="$(whoami)@$(hostname)"
2440 CDDBLOCALPOLICY="always"
2441 CDDBLOCALRECURSIVE="y"
2442 CDDBLOCALDIR="$HOME/.cddb"
2445 # List of fields we parse and show during the CDDB parsing...
2446 SHOWCDDBFIELDS="year,genre"
2449 #CDROMREADERSYNTAX=cdparanoia
2450 ENCODERSYNTAX=default
2452 MP3ENCODERSYNTAX=default
2453 OGGENCODERSYNTAX=default
2454 FLACENCODERSYNTAX=default
2455 SPEEXENCODERSYNTAX=default
2456 MPPENCODERSYNTAX=default
2457 AACENCODERSYNTAX=default
2458 NORMALIZERSYNTAX=default
2459 CUEREADERSYNTAX=default
2461 OUTPUTFORMAT='${ARTISTFILE}-${ALBUMFILE}/${TRACKNUM}.${TRACKFILE}'
2462 # Use the following VAOUTPUTFORMAT to revert to 2.0.x VA format:
2463 #VAOUTPUTFORMAT=${OUTPUTFORMAT}
2464 VAOUTPUTFORMAT='Various-${ALBUMFILE}/${TRACKNUM}.${ARTISTFILE}-${TRACKFILE}'
2465 ONETRACKOUTPUTFORMAT='${ARTISTFILE}-${ALBUMFILE}/${ALBUMFILE}'
2466 VAONETRACKOUTPUTFORMAT='Various-${ALBUMFILE}/${ALBUMFILE}'
2467 PLAYLISTFORMAT='${ARTISTFILE}-${ALBUMFILE}.${OUTPUT}.m3u'
2468 PLAYLISTDATAPREFIX=''
2469 VAPLAYLISTFORMAT='${ARTISTFILE}-${ALBUMFILE}.${OUTPUT}.m3u'
2470 VAPLAYLISTDATAPREFIX=''
2478 VARIOUSARTISTSTYLE=forward
2484 # If using scsi devices, cdda2wav needs a CDROMID, instead of a device node
2485 # i.e. CDROMID="1,0,0"
2487 # If we are using the IDE bus, we need CDPARANOIACDROMBUS defined as "d"
2488 # If we are using the ide-scsi emulation layer, we need to define a "g"
2489 CDPARANOIACDROMBUS="d"
2491 # program paths - defaults to checking your $PATH
2498 XINGMP3ENC=xingmp3enc
2515 CDPARANOIA=cdparanoia
2521 MUSICBRAINZ=musicbrainz-get-tracks
2525 VORBISCOMMENT=vorbiscomment
2527 NORMALIZE=normalize-audio
2529 VORBISGAIN=vorbisgain
2535 CUE2DISCID=cue2discid
2537 # Options for programs called from abcde
2572 VORBISCOMMENTOPTS="-R"
2573 METAFLACOPTS="--no-utf8-convert"
2576 # Default to one process if -j isn't specified
2579 # List of actions to perform - by default, run to completion
2580 ACTIONS=cddb,read,encode,tag,move,clean
2582 # This option is basicaly for Debian package dependencies:
2583 # List of prefered outputs - by default, run with whatever we have in the path
2584 DEFAULT_OUTPUT_BINARIES=vorbis:oggenc,flac:flac,mp3:lame,mp3:bladeenc,spx:speex
2586 # List of prefered cdromreaders - by default, run whichever we have in the path
2587 DEFAULT_CDROMREADERS="cdparanoia cdda2wav"
2589 # Asume fetch if under FreeBSD. curl is used for Mac OS X. wget is used for Linux/OpenBSD/NetBSD.
2590 # Let's use these checkings to determine the OS flavour, which will be used later
2591 if [ X$(uname) = "XFreeBSD" ] ; then
2596 elif [ X$(uname) = "XDarwin" ] ; then
2599 # We should have disktool in OSX, but let's be sure...
2601 CDROMREADERSYNTAX=cddafs
2602 elif [ X$(uname) = "XOpenBSD" ] ; then
2605 elif [ X$(uname) = "XNetBSD" ] ; then
2612 # If CDDBAVAIL is set to n, no CDDB read is done
2613 # If USEID3 is set to n, no ID3 tagging is done
2618 if [ -z "$OUTPUTDIR" ]; then
2622 if [ -z "$WAVOUTPUTDIR" ]; then
2623 WAVOUTPUTDIR="$OUTPUTDIR"
2626 # Load system defaults
2627 if [ -r /etc/abcde.conf ]; then
2630 # Load user preference defaults
2631 if [ -r $HOME/.abcde.conf ]; then
2635 # By this time, we need some HTTPGETOPTS already defined.
2636 # If the user has defined a non-default HTTPGET method, we should not be empty.
2638 if [ "$HTTPGETOPTS" = "" ] ; then
2640 wget) HTTPGETOPTS="-q -O -";;
2641 curl) HTTPGETOPTS="-f -s";;
2642 fetch)HTTPGETOPTS="-q -o -";;
2643 ftp) HTTPGETOPTS="-q -o -";;
2644 *) log warning "HTTPGET in non-standard and HTTPGETOPTS are not defined." ;;
2648 # If the CDROM has not been set yet, find a suitable one.
2649 # If this is a devfs system, default to /dev/cdroms/cdrom0
2650 # instead of /dev/cdrom
2651 if [ "$CDROM" = "" ] ; then
2652 if [ -e /dev/cdroms/cdrom0 ]; then
2653 CDROM=/dev/cdroms/cdrom0
2654 elif [ -e /dev/cdrom ]; then
2656 elif [ -e /dev/cd0c ]; then
2658 elif [ -e /dev/acd0c ]; then
2660 elif [ -e /dev/disk1 ]; then
2665 # Parse command line options
2666 #while getopts 1a:bc:C:d:Dehj:klLmMnNo:pPr:Rs:S:t:T:vVxw:W: opt ; do
2667 while getopts 1a:bBc:C:d:Defghj:klLmMnNo:pPr:s:S:t:T:uvVxw:W:z opt ; do
2670 a) ACTIONS="$OPTARG" ;;
2671 A) EXPACTIONS="$OPTARG" ;;
2673 B) NOBATCHREPLAYGAIN=y ;;
2674 c) if [ -e "$OPTARG" ] ; then . "$OPTARG" ; else log error "config file \"$OPTARG\" cannot be found." ; exit 1 ; fi ;;
2675 C) DISCID="$( echo ${OPTARG#abcde.} | tr -d /)" ;;
2676 d) CDROM="$OPTARG" ;;
2678 e) ERASEENCODEDSTATUS=y ;;
2680 e) ERASEENCODEDSTATUS=y ;;
2681 E) ENCODING="$OPTARG" ;;
2685 j) MAXPROCS="$OPTARG" ;;
2688 L) CDDBUSELOCAL=y ;;
2693 o) OUTPUTTYPE="$OPTARG" ;;
2696 r) REMOTEHOSTS="$OPTARG" ;;
2697 R) DOREPLAYGAIN=y ;;
2698 s) SHOWCDDBFIELDS="$OPTARG" ;;
2699 S) CDSPEEDVALUE="$OPTARG" ;;
2700 t) STARTTRACKNUMBER="$OPTARG" ;;
2701 T) STARTTRACKNUMBER="$OPTARG" ; STARTTRACKNUMBERTAG="y" ;;
2704 echo "This is abcde v$VERSION."
2705 echo "Usage: abcde [options] [tracks]"
2706 echo "abcde -h for extra help"
2709 V) EXTRAVERBOSE="y" ;;
2711 w) COMMENT="$OPTARG" ;;
2712 W) if echo $OPTARG | grep -q "[[:digit:]]" ; then
2713 STARTTRACKNUMBER="${OPTARG}01" ; STARTTRACKNUMBERTAG="y" ; COMMENT="CD${OPTARG}"
2715 log error "argument of -W must be integer"
2719 z) DEBUG=y ; CDROMREADERSYNTAX=debug ; EJECTCD="n" ;;
2724 shift $(($OPTIND - 1))
2726 # If the user specified a flac file, then switch to special flac mode
2727 if echo $CDROM | grep -i -q '.flac$'; then
2728 vecho "abcde: switching to flac CDROMREADERSYNTAX..."
2729 CDROMREADERSYNTAX=flac
2730 if [ "$EJECTCD" = "y" ];then
2731 vecho "abcde: CDROM flac mode, deactivating EJECTCD..."
2736 # If the user provided a DISCID, disable eject
2737 if [ -n "$DISCID" ]; then EJECTCD=n ; fi
2739 # Check the available cd rippers in the system, from the ones we know.
2740 if [ "$CDROMREADERSYNTAX" = "" ]; then
2741 for DEFAULT_CDROMREADER in $DEFAULT_CDROMREADERS; do
2742 if [ -x $( which $DEFAULT_CDROMREADER ) ]; then
2743 CDROMREADERSYNTAX=$DEFAULT_CDROMREADER
2747 if [ "$CDROMREADERSYNTAX" = "" ]; then
2748 log error "no cdreader found in your PATH"
2749 log error "hints: are all dependencies installed? has the \$PATH been modified?"
2754 # Decide if we can continue.
2755 if [ "$ONETRACK" = "y" ]; then
2756 # FIXME # remove check as soon as we find out about the other readers
2757 case "$CDROMREADERSYNTAX" in
2761 *) log error "$CDROMREADERSYNTAX does not support ONETRACK mode"
2764 if [ "$BATCHNORM" = "y" ]; then
2765 log warning "BATCHNORM mode is not compatible with ONETRACK mode. Disabling..."
2768 if [ "$NOGAP" = "y" ]; then
2769 log warning "NOGAP mode is not compatible with ONETRACK mode. Disabling..."
2772 # It does not matter how many tracks we want. In ONETRACK mode we grab them all
2773 # FIXME # allow ranges of tracks to be selected for onetrack ripping
2774 if [ $# -gt 0 ]; then
2775 log warning "ONETRACK mode selected, grabbing all tracks..."
2778 while [ $# -gt 0 ]; do
2779 # Range parsing code courtesy of Vincent Ho
2780 RSTART=$(echo $1 | cut -f1 -d-)
2781 REND=$(echo $1 | cut -f2 -d-)
2782 if [ "$RSTART" = "$REND" ]; then
2785 NEWTRACKS=$(f_seq_line $RSTART $REND)
2787 TRACKQUEUE=$(echo "$TRACKQUEUE" "$NEWTRACKS")
2792 # List of valid actions: cddb,read,normalize,encode,tag,move,playlist,clean
2793 # List of experimental actions: retag,transcode
2795 # Determine what actions are to be done from $ACTIONS and set the
2796 # following environment variables for them:
2809 for ACTION in $(echo $ACTIONS | tr , \ )
2814 normalize) DONORMALIZE=y; DOREAD=y;;
2815 # preprocess) DOPREPROCESS=y; DOREAD=y;;
2816 encode) DOENCODE=y; DOREAD=y;;
2817 # postprocess) DOPREPROCESS=y; DOENCODE=y; DOREAD=y;;
2818 tag) DOTAG=y; DOREAD=y; DOENCODE=y; DOCDDB=y;;
2819 move) DOMOVE=y; DOTAG=y; DOREAD=y; DOENCODE=y; DOCDDB=y;;
2820 replaygain) DOCDDB=y; DOREAD=y; DOENCODE=y; DOTAG=y; DOMOVE=y; DOREPLAYGAIN=y;;
2821 playlist) DOCDDB=y; DOPLAYLIST=y;;
2826 if [ "$DONORMALIZE" = "y" ] && [ "$DOREPLAYGAIN" = "y" ]; then
2827 # FIXME # should we abort on error or just inform the user?
2828 log warning "selected