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"
58 echo " Show dielfs from the CDDB info (year,genre)"
59 echo "-S <#> Set the CD speed"
60 echo "-t <#> Start the track numbering at a given number"
61 echo "-T <#> Same as -t but modifies tag numbering"
62 echo "-u Use UNICODE (UTF8) tags and comments"
63 echo "-U Do NOT use UNICODE (UTF8) 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 "[[:digit:]]" > /dev/null 2>&1 ; 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-)"
339 if [ ! "$@" = "" ]; then
340 # Cut off any command-line option we added in
341 X=$(echo $@ | cut -d' ' -f2)
342 if [ "$(which $X)" = "" ]; then
344 elif [ ! -x $(which $X) ]; then
353 if [ ! "$@" = "" ]; then
354 # Cut off any command-line option we added in
355 X=$(echo $@ | cut -d' ' -f2)
356 if [ "$(which $X)" = "" ]; then
357 log error "$X is not in your path." >&2
358 log info "Define the full path to the executable if it exists on your system." >&2
360 elif [ ! -x "$(which $X)" ]; then
361 log error "$X is not executable." >&2
367 # diffentries <filename> <max_value> <entry1>,<entry2>
368 # max_value: the range of entries goes from 1 to <max_value>
373 local CDDBDIFFCHOICES=$1
375 local CDDBDIFFCHOICE="$@"
376 if [ ! X"$DIFF" = "X" ]; then
377 PARSECHOICE1=$(echo $CDDBDIFFCHOICE | cut -d"," -f1 | xargs printf %d 2>/dev/null)
378 PARSECHOICE2=$(echo $CDDBDIFFCHOICE | cut -d"," -f2 | xargs printf %d 2>/dev/null)
379 if [ $PARSECHOICE1 -lt 1 ] || [ $PARSECHOICE1 -gt $CDDBDIFFCHOICES ] || \
380 [ $PARSECHOICE2 -lt 1 ] || [ $PARSECHOICE2 -gt $CDDBDIFFCHOICES ] || \
381 [ $PARSECHOICE1 -eq $PARSECHOICE2 ]; then
382 echo "Invalid diff range. Please select two coma-separated numbers between 1 and $CDDBDIFFCHOICES" >&2
384 # We parse the 2 choices to diff, store them in temporary files and diff them.
385 for PARSECHOICE in $(echo $CDDBDIFFCHOICE | tr , \ ); do
386 do_cddbparse "$ABCDETEMPDIR/$FILENAME.$PARSECHOICE" > "$ABCDETEMPDIR/$FILENAME.parsechoice.$PARSECHOICE"
388 echo "Showing diff between choices $PARSECHOICE1 and $PARSECHOICE2..." > "$ABCDETEMPDIR/$FILENAME.diff"
389 $DIFF $DIFFOPTS "$ABCDETEMPDIR/$FILENAME.parsechoice.$PARSECHOICE1" "$ABCDETEMPDIR/$FILENAME.parsechoice.$PARSECHOICE2" >> "$ABCDETEMPDIR/$FILENAME.diff"
390 if [ $(cat "$ABCDETEMPDIR/$FILENAME.diff" | wc -l) -ge 24 ]; then
391 page "$ABCDETEMPDIR/$FILENAME.diff"
393 cat "$ABCDETEMPDIR/$FILENAME.diff" >&2
397 echo "The diff program was not found in your path. Please choose a number between 0 and $CDDBDIFFCHOICES." >&2
402 # Finds an specific field from cddbinfo
407 TRACKNAME="$(grep ^TTITLE$CDDBTRACKNUM= "$CDDBDATA" | head -n 1 | cut -f2- -d= | tr -d \[:cntrl:\] | sed 's/\ \+$//')"
410 TRACKNAME="$(grep ^TTITLE$CDDBTRACKNUM= "$CDDBDATA" | cut -f2- -d= | tr -d \[:cntrl:\] | sed 's/\ \+$//')"
416 # Get the track number we are going to use for different actions
419 if [ -n "$STARTTRACKNUMBER" ] ; then
420 # Get the trackpadding from the current track
421 CURRENTTRACKPADDING=$(echo -n $UTRACKNUM | wc -c)
422 TRACKNUM=$( printf %0.${CURRENTTRACKPADDING}d $(expr ${UTRACKNUM} + ${STARTTRACKNUMBER} - $FIRSTTRACK ))
424 TRACKNUM=${UTRACKNUM}
430 if checkstatus replaygain; then :; else
431 run_command "" echo "Adding replygain information..."
432 for TMPOUTPUT in $( echo $OUTPUTTYPE | tr , \ )
436 OUTPUT=$OGGOUTPUTCONTAINER
439 OUTPUT=$FLACOUTPUTCONTAINER
447 for UTRACKNUM in $TRACKQUEUE
449 CDDBTRACKNUM=$(expr $UTRACKNUM - 1)
450 getcddbinfo TRACKNAME
452 TRACKFILE="$(mungefilename "$TRACKNAME")"
453 ARTISTFILE="$(mungefilename "$TRACKARTIST")"
454 ALBUMFILE="$(mungefilename "$DALBUM")"
456 if [ "$VARIOUSARTISTS" = "y" ]; then
457 OUTPUTFILE="$(eval echo \""$VAOUTPUTFORMAT\"")"
459 OUTPUTFILE="$(eval echo \""$OUTPUTFORMAT\"")"
461 OUTPUTFILES[$REPLAYINDEX]="$OUTPUTDIR/$OUTPUTFILE.$OUTPUT"
462 (( REPLAYINDEX = $REPLAYINDEX + 1 ))
466 run_command replaygain-flac $METAFLAC --add-replay-gain "${OUTPUTFILES[@]}"
469 run_command replaygain-vorbis $VORBISGAIN --album "${OUTPUTFILES[@]}"
472 run_command replaygain-mp3 $MP3GAIN -a "${OUTPUTFILES[@]}"
475 run_command replaygain-mpc $MPPGAIN --auto "${OUTPUTFILES[@]}"
480 if checkerrors "replaygain-.{3,6}"; then :; else
481 run_command replaygain true
486 # This code splits the a Various Artist track name from one of the following
489 # forward: Artist / Track
490 # forward-dash: Artist - Track
491 # reverse: Track / Artist
492 # reverse-dash: Track - Artist
493 # colon: Artist: Track
494 # trailing-paren: Artist (Track)
497 # VARIOUSARTISTS, VARIOUSARTISTSTYLE, TRACKNAME, TRACKARTIST
500 if [ "$VARIOUSARTISTS" = "y" ] && [ ! "$ONETRACK" = "y" ]; then
501 case "$VARIOUSARTISTSTYLE" in
503 DTITLEARTIST="$(echo "$TRACKNAME" | sed 's- / -~-g')"
504 TRACKARTIST="$(echo "$DTITLEARTIST" | cut -f1 -d~)"
505 TRACKNAME="$(echo "$DTITLEARTIST" | cut -f2 -d~)"
508 DTITLEARTIST="$(echo "$TRACKNAME" | sed 's, - ,~,g')"
509 TRACKARTIST="$(echo "$DTITLEARTIST" | cut -f1 -d~)"
510 TRACKNAME="$(echo "$DTITLEARTIST" | cut -f2 -d~)"
513 DTITLEARTIST="$(echo "$TRACKNAME" | sed 's- / -~-g')"
514 TRACKARTIST="$(echo "$DTITLEARTIST" | cut -f2 -d~)"
515 TRACKNAME="$(echo "$DTITLEARTIST" | cut -f1 -d~)"
518 DTITLEARTIST="$(echo "$TRACKNAME" | sed 's, - ,~,g')"
519 TRACKARTIST="$(echo "$DTITLEARTIST" | cut -f2 -d~)"
520 TRACKNAME="$(echo "$DTITLEARTIST" | cut -f1 -d~)"
523 DTITLEARTIST="$(echo "$TRACKNAME" | sed 's-: -~-g')"
524 TRACKARTIST="$(echo "$DTITLEARTIST" | cut -f1 -d~)"
525 TRACKNAME="$(echo "$DTITLEARTIST" | cut -f2 -d~)"
528 DTITLEARTIST="$(echo "$TRACKNAME" | sed 's,^\(.*\) (\(.*\)),\1~\2,')"
529 TRACKARTIST="$(echo "$DTITLEARTIST" | cut -f2 -d~)"
530 TRACKNAME="$(echo "$DTITLEARTIST" | cut -f1 -d~)"
533 elif [ "$VARIOUSARTISTS" = "y" ] && [ "$ONETRACK" = "y" ]; then
534 TRACKARTIST="Various"
536 TRACKARTIST="$DARTIST"
541 local genre=$(echo "${@}" | tr '[A-Z]' '[a-z]')
545 "classic rock") id=1 ;;
563 "industrial") id=19 ;;
564 "alternative") id=20 ;;
566 "death metal") id=22 ;;
568 "soundtrack") id=24 ;;
569 "euro-techno") id=25 ;;
573 "jazz+funk") id=29 ;;
576 "classical") id=32 ;;
577 "instrumental") id=33 ;;
581 "sound clip") id=37 ;;
584 "alt. rock") id=40 ;;
589 "meditative") id=45 ;;
590 "instrum. pop") id=46 ;;
591 "instrum. rock") id=47 ;;
595 "techno-indust.") id=51 ;;
596 "electronic") id=52 ;;
598 "eurodance") id=54 ;;
600 "southern rock") id=56 ;;
605 "christian rap") id=61 ;;
606 "pop/funk"|"pop / funk") id=62 ;;
608 "native american") id=64 ;;
611 "psychadelic") id=67 ;;
613 "showtunes") id=69 ;;
617 "acid punk") id=73 ;;
618 "acid jazz") id=74 ;;
622 "rock & roll") id=78 ;;
623 "hard rock") id=79 ;;
625 "folk/rock") id=81 ;;
626 "national folk") id=82 ;;
633 "bluegrass") id=89 ;;
634 "avantgarde") id=90 ;;
635 "gothic rock") id=91 ;;
636 "progress. rock") id=92 ;;
637 "psychadel. rock") id=93 ;;
638 "symphonic rock") id=94 ;;
639 "slow rock") id=95 ;;
642 "easy listening") id=98 ;;
648 "chamber music") id=104 ;;
650 "symphony") id=106 ;;
651 "booty bass") id=107 ;;
653 "porn groove") id=109 ;;
655 "slow jam") id=111 ;;
659 "folklore") id=115 ;;
661 "power ballad") id=117 ;;
662 "rhythmic soul") id=118 ;;
663 "freestyle") id=119 ;;
665 "punk rock") id=121 ;;
666 "drum solo") id=122 ;;
667 "a capella") id=123 ;;
668 "euro-house") id=124 ;;
669 "dance hall") id=125 ;;
671 "drum & bass") id=127 ;;
672 "club-house") id=128 ;;
673 "hardcore") id=129 ;;
677 "negerpunk") id=133 ;;
678 "polsk punk") id=134 ;;
680 "christian gangsta rap") id=136 ;;
681 "heavy metal") id=137 ;;
682 "black metal") id=138 ;;
683 "crossover") id=139 ;;
684 "contemporary christian")id=140 ;;
685 "christian rock") id=141 ;;
686 "merengue") id=142 ;;
688 "thrash metal") id=144 ;;
691 "synthpop") id=147 ;;
692 "rock/pop"|"rock / pop") id=148 ;;
699 # do_tag [tracknumber]
700 # id3 tags a filename
702 # TRACKS, TRACKNAME, TRACKARTIST, TAGGER, TAGGEROPTS, VORBISCOMMENT, METAFLAC,
703 # COMMENT, DALBUM, DARTIST, CDYEAR, CDGENRE (and temporarily) ID3TAGV
706 COMMENTOUTPUT="$(eval echo ${COMMENT})"
707 CDDBDISCID=$(echo $TRACKINFO | cut -d' ' -f1)
708 run_command '' echo "Tagging track $1 of $TRACKS: $TRACKNAME..."
709 # If we want to start the tracks with a given number, we need to modify the
710 # TRACKNUM value before evaluation
711 if [ -n "$STARTTRACKNUMBERTAG" ] ; then
714 for OUTPUT in $(echo $OUTPUTTYPE | tr , \ )
718 # id3v2 v0.1.9 claims to have solved the -c bug, so we merge both id3 and id3v2
719 GENREID=$(do_getgenreid "${CDGENRE}")
724 # FIXME # track numbers in mp3 come with 1/10, so we cannot
725 # happily substitute them with $TRACKNUM
726 run_command tagtrack-$OUTPUT-$1 $TAGGER $TAGGEROPTS \
727 --comment=::"$COMMENTOUTPUT" -A "$DALBUM" \
728 -a "$TRACKARTIST" -t "$TRACKNAME" -Y "$CDYEAR" \
729 -G "$GENREID" -n "${TRACKNUM:-$1}" "${TRACKNUM:+-N $TRACKS}" \
730 "${ENCODING:+--set-encoding=$ENCODING}" \
731 "$ABCDETEMPDIR/track$1.$OUTPUT"
733 # FIXME # Still not activated...
735 run_command tagtrack-$OUTPUT-$1 $TAGGER $TAGGEROPTS -c "$COMMENTOUTPUT" \
736 -a "$DALBUM" -n "$TRACKARTIST" -s "$TRACKNAME" -y "$CDYEAR" \
737 -g "$GENREID" -k "${TRACKNUM:-$1}" \
738 "$ABCDETEMPDIR/track$1.$OUTPUT"
741 # FIXME # track numbers in mp3 come with 1/10, so we cannot
742 # happily substitute them with $TRACKNUM
743 run_command tagtrack-$OUTPUT-$1 $TAGGER $TAGGEROPTS -c "$COMMENTOUTPUT" \
744 -A "$DALBUM" -a "$TRACKARTIST" -t "$TRACKNAME" -y "$CDYEAR" \
745 -g "$GENREID" -T "${TRACKNUM:-$1/$TRACKS}" \
746 "$ABCDETEMPDIR/track$1.$OUTPUT"
751 case "$OGGENCODERSYNTAX" in
753 # vorbiscomment can't do in-place modification, mv the file first
754 if [ -f "$ABCDETEMPDIR/track$1.$OGGOUTPUTCONTAINER" -a ! -f "$ABCDETEMPDIR/track$1.uncommented.$OGGOUTPUTCONTAINER" ]; then
755 mv "$ABCDETEMPDIR/track$1.$OGGOUTPUTCONTAINER" "$ABCDETEMPDIR/track$1.uncommented.$OGGOUTPUTCONTAINER"
758 # These are from http://www.xiph.org/ogg/vorbis/doc/v-comment.html
759 echo ARTIST="$TRACKARTIST"
761 echo TITLE="$TRACKNAME"
762 if [ -n "$CDYEAR" ]; then
765 if [ -n "$CDGENRE" ]; then
766 echo GENRE="$CDGENRE"
768 echo TRACKNUMBER=${TRACKNUM:-$1}
769 echo CDDB=$CDDBDISCID
770 if [ "$(eval echo ${COMMENT})" != "" ]; then
771 case "$COMMENTOUTPUT" in
772 *=*) echo "$COMMENTOUTPUT";;
773 *) echo COMMENT="$COMMENTOUTPUT";;
776 ) | run_command tagtrack-$OUTPUT-$1 $VORBISCOMMENT $VORBISCOMMENTOPTS -w \
777 "$ABCDETEMPDIR/track$1.uncommented.$OGGOUTPUTCONTAINER" "$ABCDETEMPDIR/track$1.$OGGOUTPUTCONTAINER"
778 # Doublecheck that the commented file was created successfully before wiping the original
779 if [ -f "$ABCDETEMPDIR/track$1.$OGGOUTPUTCONTAINER" ]; then
780 rm -f "$ABCDETEMPDIR/track$1.uncommented.$OGGOUTPUTCONTAINER"
782 mv "$ABCDETEMPDIR/track$1.uncommented.$OGGOUTPUTCONTAINER" "$ABCDETEMPDIR/track$1.$OGGOUTPUTCONTAINER"
789 echo ARTIST="$TRACKARTIST"
791 echo TITLE="$TRACKNAME"
792 if [ -n "$CDYEAR" ]; then
795 if [ -n "$CDGENRE" ]; then
796 echo GENRE="$CDGENRE"
798 echo TRACKNUMBER="${TRACKNUM:-$1}"
799 echo CDDB="$CDDBDISCID"
800 if [ "$(eval echo ${COMMENT})" != "" ]; then
801 case "$COMMENTOUTPUT" in
802 *=*) echo "$COMMENTOUTPUT";;
803 *) echo COMMENT="$COMMENTOUTPUT";;
806 ) | run_command tagtrack-$OUTPUT-$1 $METAFLAC $METAFLACOPTS ${IMPORTCUESHEET:+--import-cuesheet-from="$ABCDETEMPDIR/$CUEFILE"} --import-tags-from=- "$ABCDETEMPDIR/track$1.$FLACOUTPUTCONTAINER"
809 run_command tagtrack-$OUTPUT-$1 true
812 run_command tagtrack-$OUTPUT-$1 true
815 run_command tagtrack-$OUTPUT-$1 true
818 run_command tagtrack-$OUTPUT-$1 true
822 if checkerrors "tagtrack-(.{3,6})-$1"; then :; else
823 run_command tagtrack-$1 true
830 # OUTPUTTYPE, {FOO}ENCODERSYNTAX, ENCNICE, ENCODER, ENCODEROPTS
833 # The commands here don't go through run_command because they're never supposed to be silenced
834 echo "Encoding gapless MP3 tracks: $TRACKQUEUE"
835 for OUTPUT in $(echo $OUTPUTTYPE | tr , \ )
839 case "$MP3ENCODERSYNTAX" in
844 for UTRACKNUM in $TRACKQUEUE
846 TRACKFILES="$TRACKFILES track$UTRACKNUM.wav"
848 nice $ENCNICE $MP3ENCODER $MP3ENCODEROPTS --nogap $TRACKFILES
850 if [ "$RETURN" != "0" ]; then
851 echo "nogap-encode: $ENCODER returned code $RETURN" >> errors
853 for UTRACKNUM in $TRACKQUEUE
855 run_command encodetrack-$OUTPUT-$UTRACKNUM true
856 #run_command encodetrack-$UTRACKNUM true
865 if checkerrors "nogap-encode"; then :; else
866 if [ ! "$KEEPWAVS" = "y" ] ; then
867 if [ ! "$KEEPWAVS" = "move" ] ; then
872 # Other encoders fall through to normal encoding as the tracks
873 # have not been entered in the status file.
876 # do_encode [tracknumber] [hostname]
877 # If no hostname is specified, encode locally
879 # TRACKS, TRACKNAME, TRACKARTIST, DISTMP3, DISTMP3OPTS, {FOO}ENCODERSYNTAX, OUTPUTTYPE, ENCODEROPTS, DALBUM, DARTIST, ENCNICE, CDYEAR, CDGENRE, COMMENT
882 if [ "$USEPIPES" = "y" ]; then
885 TEMPARG="PIPE_$MP3ENCODERSYNTAX"
888 TEMPARG="PIPE_$OGGENCODERSYNTAX"
891 TEMPARG="PIPE_$FLACENCODERSYNTAX"
894 TEMPARG="PIPE_$SPEEXENCODER"
897 TEMPARG="PIPE_$MPPENCODER"
900 TEMPARG="PIPE_$MPPENCODER"
903 IN="$( eval echo "\$$TEMPARG" )"
905 IN="$ABCDETEMPDIR/track$1.wav"
908 case "$MP3ENCODERSYNTAX" in
909 # FIXME # check if mp3enc needs -if for pipes
910 # FIXME # I have not been able to find a working mp3enc binary
924 # We need IN to proceed, if we are not using pipes.
925 if [ -s "$IN" -o X"$USEPIPES" = "Xy" ] ; then
926 for TMPOUTPUT in $(echo $OUTPUTTYPE | tr , \ )
930 OUTPUT=$OGGOUTPUTCONTAINER
933 OUTPUT=$FLACOUTPUTCONTAINER
939 OUT="$ABCDETEMPDIR/track$1.$OUTPUT"
940 if [ "$NOGAP" = "y" ] && checkstatus encodetrack-$OUTPUT-$1 ; then
943 if [ X"$USEPIPES" = "Xy" ]; then
945 # We need a way to store the creation of the files when using PIPES
946 RUN_COMMAND_PIPES="run_command encodetrack-$OUTPUT-$1 true"
948 run_command '' echo "Encoding track $1 of $TRACKS: $TRACKNAME..."
949 RUN_COMMAND="run_command encodetrack-$OUTPUT-$1"
955 case "$MP3ENCODERSYNTAX" in
956 lame|gogo) $RUN_COMMAND nice $ENCNICE $MP3ENCODER $MP3ENCODEROPTS "$IN" "$OUT" ;;
957 bladeenc) $RUN_COMMAND nice $ENCNICE $MP3ENCODER $MP3ENCODEROPTS -quit "$IN" ;;
958 l3enc|xingmp3enc) $RUN_COMMAND nice $ENCNICE $MP3ENCODER "$IN" "$OUT" $MP3ENCODEROPTS ;;
959 # FIXME # Relates to the previous FIXME since it might need the "-if" removed.
960 mp3enc) $RUN_COMMAND nice $ENCNICE $MP3ENCODER -if "$IN" -of "$OUT" $MP3ENCODEROPTS ;;
964 $RUN_COMMAND nice $DISTMP3NICE $DISTMP3 $DISTMP3OPTS "$2" "$IN" "$OUT" >/dev/null 2>&1
971 case "$OGGENCODERSYNTAX" in
972 vorbize) $RUN_COMMAND nice $ENCNICE $OGGENCODER $OGGENCODEROPTS -w "$OUT" "$IN" ;;
973 oggenc) $RUN_COMMAND nice $ENCNICE $OGGENCODER $OGGENCODEROPTS -o "$OUT" "$IN" ;;
977 $RUN_COMMAND nice $DISTMP3NICE $DISTMP3 $DISTMP3OPTS "$2" "$IN" "$OUT" >/dev/null 2>&1
984 case "$FLACENCODERSYNTAX" in
985 flac) $RUN_COMMAND nice $ENCNICE $FLACENCODER -f $FLACENCODEROPTS -o "$OUT" "$IN" ;;
990 vecho "$DISTMP3 $DISTMP3OPTS $2 $IN $OUT >/dev/null 2>&1"
991 $RUN_COMMAND nice $DISTMP3NICE $DISTMP3 $DISTMP3OPTS "$2" "$IN" "$OUT" > /dev/null 2>&1
996 if [ "$(eval echo ${COMMENT})" != "" ]; then
999 *) COMMENT="COMMENT=$COMMENT" ;;
1001 COMMENT="--comment \"$COMMENT\""
1003 # Quick hack to avoid tagging Ogg/Speex, since there is no other way to tag than inline tagging
1004 if [ ! "$DOTAG" = "y" ]; then
1005 $RUN_COMMAND nice $ENCNICE $SPEEXENCODER $SPEEXENCODEROPTS --author "$TRACKARTIST" --title "$TRACKNAME" "$COMMENT" "$IN" "$OUT"
1007 $RUN_COMMAND nice $ENCNICE $SPEEXENCODER $SPEEXENCODEROPTS "$IN" "$OUT"
1011 # MPP/MP+(Musepack) format (.mpc) is done locally, with inline
1013 # I tried compiling the mppenc from corecodecs.org and got some
1014 # errors, so I have not tried it myself.
1015 ## FIXME ## Needs some cleanup to determine if an empty tag sent
1016 ## FIXME ## to the encoder ends up empty.
1017 $RUN_COMMAND nice $ENCNICE $MPPENCODER $MPPENCODEROPTS --artist "$TRACKARTIST" --album "$DALBUM" --title "$TRACKNAME" --track "$1" --genre "$CDGENRE" --year "$CDYEAR" --comment "$COMMENT" "$IN" "$OUT"
1020 # Quick hack to avoid tagging Ogg/Speex, since there is no other way to tag than inline tagging
1021 if [ ! "$DOTAG" = "y" ]; then
1022 $RUN_COMMAND nice $ENCNICE $AACENCODER $AACENCODEROPTS --artist "$TRACKARTIST" --album "$DALBUM" --title "$TRACKNAME" --track "$1" --genre "$CDGENRE" --year "$CDYEAR" --comment "$COMMENT" -o "$OUT" "$IN"
1025 $RUN_COMMAND nice $ENCNICE $AACENCODER $AACENCODEROPTS -o "$OUT" "$IN"
1029 # In case of wav output we need nothing. Just keep the wavs.
1034 # Only remove .wav if the encoding succeeded
1035 if checkerrors "encodetrack-(.{3,6})-$1"; then :; else
1036 run_command encodetrack-$1 true
1037 if [ ! "$KEEPWAVS" = "y" ] ; then
1038 if [ ! "$KEEPWAVS" = "move" ] ; then
1044 run_command "" echo "HEH! The file we were about to encode disappeared:"
1045 run_command "" echo ">> $IN"
1046 run_command encodetrack-$1 false
1050 # do_preprocess [tracknumber]
1052 # TRACKS, TRACKNAME, TRACKARTIST, DISTMP3, DISTMP3OPTS, {FOO}ENCODERSYNTAX, OUTPUTTYPE, ENCODEROPTS, DALBUM, DARTIST, ENCNICE, CDYEAR, CDGENRE, COMMENT
1055 # IN="$ABCDETEMPDIR/track$1.wav"
1056 # # We need IN to proceed.
1057 # if [ -s "$IN" ] ; then
1058 # for OUTPUT in $(echo $OUTPUTTYPE | tr , \ )
1060 # #OUT="$ABCDETEMPDIR/track$1.$OUTPUT"
1061 # run_command '' echo "Pre-processing track $1 of $TRACKS..."
1062 # case "$POSTPROCESSFORMAT" in
1064 # run_command preprocess-$OUTPUT-$1 nice $PRENICE $WAV_PRE $IF $OF ;;
1066 # run_command preprocess-$OUTPUT-$1 nice $PRENICE $MP3_PRE $IF $OF ;;
1068 # run_command preprocess-$OUTPUT-$1 nice $PRENICE $OGG_PRE $IF $OF ;;
1070 # run_command preprocess-$OUTPUT-$1 nice $PRENICE $FLAC_PRE $IF $OF ;;
1072 # run_command preprocess-$OUTPUT-$1 nice $PRENICE $SPX_PRE $IF $OF ;;
1075 # # Only remove .wav if the encoding succeeded
1076 # if checkerrors "preprocess-(.{3,4})-$1"; then
1077 # run_command preprocess-$1 false
1079 # run_command preprocess-$1 true
1082 # if [ "$(checkstatus encode-output)" = "loud" ]; then
1083 # echo "HEH! The file we were about to pre-process disappeared:"
1086 # run_command preprocess-$1 false
1091 # do_postprocess [tracknumber]
1093 # TRACKS, TRACKNAME, TRACKARTIST, DISTMP3, DISTMP3OPTS, {FOO}ENCODERSYNTAX, OUTPUTTYPE, ENCODEROPTS, DALBUM, DARTIST, ENCNICE, CDYEAR, CDGENRE, COMMENT
1096 # for POSTPROCESSFORMAT in $(echo $POSTPROCESSFORMATS | tr , \ )
1098 # IN="$ABCDETEMPDIR/track$1.$POSTPROCESSFORMAT"
1099 # # We need IN to proceed.
1100 # if [ -s "$IN" ] ; then
1101 # #OUT="$ABCDETEMPDIR/track$1.$OUTPUT"
1102 # run_command '' echo "Post-processing track $1 of $TRACKS..."
1103 # case "$POSTPROCESSFORMAT" in
1105 # run_command postprocess-$OUTPUT-$1 nice $POSTNICE $MP3_POST $IF $OF ;;
1107 # run_command postprocess-$OUTPUT-$1 nice $POSTNICE $OGG_POST $IF $OF ;;
1109 # run_command postprocess-$OUTPUT-$1 nice $POSTNICE $FLAC_POST $IF $OF ;;
1111 # run_command postprocess-$OUTPUT-$1 nice $POSTNICE $SPX_POST $IF $OF ;;
1113 # # Only remove .wav if the encoding succeeded
1114 # if checkerrors "postprocess-(.{3,4})-$1"; then
1115 # run_command postprocess-$1 false
1117 # run_command postprocess-$1 true
1120 # if [ "$(checkstatus encode-output)" = "loud" ]; then
1121 # echo "HEH! The file we were about to post-process disappeared:"
1124 # run_command postprocess-$1 false
1139 # MP3GAIN, MP3GAINOPTS, VORBISGAIN, VORBISGAINOPTS, MPPGAIN, MPPGAINOPTS
1143 # The commands here don't go through run_command because they're never supposed to be silenced
1144 echo "Batch analizing gain in tracks: $TRACKQUEUE"
1149 for UTRACKNUM in $TRACKQUEUE
1151 MP3FILES="$TRACKFILES track$UTRACKNUM.mp3"
1153 # FIXME # Hard-coded batch option!
1154 $NORMALIZER -b $NORMALIZEROPTS $TRACKFILES
1156 if [ "$RETURN" != "0" ]; then
1157 echo "batch-normalize: $NORMALIZER returned code $RETURN" >> errors
1159 for UTRACKNUM in $TRACKQUEUE
1161 echo normalizetrack-$UTRACKNUM >> status
1167 # do_batch_normalize
1169 # NORMALIZER, NORMALIZEROPTS
1170 do_batch_normalize ()
1172 # The commands here don't go through run_command because they're never supposed to be silenced
1173 echo "Batch normalizing tracks: $TRACKQUEUE"
1178 for UTRACKNUM in $TRACKQUEUE
1180 TRACKFILES="$TRACKFILES track$UTRACKNUM.wav"
1182 # XXX: Hard-coded batch option!
1183 $NORMALIZER -b $NORMALIZEROPTS $TRACKFILES
1185 if [ "$RETURN" != "0" ]; then
1186 echo "batch-normalize: $NORMALIZER returned code $RETURN" >> errors
1188 for UTRACKNUM in $TRACKQUEUE
1190 echo normalizetrack-$UTRACKNUM >> status
1196 # do_normalize [tracknumber]
1198 # TRACKS, TRACKNAME, NORMALIZER, NORMALIZEROPTS
1201 IN="$ABCDETEMPDIR/track$1.wav"
1202 if [ -e "$IN" ] ; then
1203 run_command '' echo "Normalizing track $1 of $TRACKS: $TRACKNAME..."
1204 run_command normalizetrack-$1 $NORMALIZER $NORMALIZEROPTS "$IN"
1206 if [ "$(checkstatus encode-output)" = "loud" ]; then
1207 echo "HEH! The file we were about to normalize disappeared:"
1210 run_command normalizetrack-$1 false "File $IN was not found"
1214 # do_move [tracknumber]
1215 # Deduces the outfile from environment variables
1216 # Creates directory if necessary
1218 # TRACKNUM, TRACKNAME, TRACKARTIST, DALBUM, OUTPUTFORMAT, CDGENRE, CDYEAR
1221 for TMPOUTPUT in $(echo $OUTPUTTYPE | tr , \ )
1223 # For now, set OUTPUT as TMPOUTPUT, and then change it once we have
1224 # defined the OUTPUTFILE:
1227 # Create ALBUMFILE, ARTISTFILE, TRACKFILE
1228 # Munge filenames as follows:
1233 # Eat control characters
1234 ALBUMFILE="$(mungefilename "$DALBUM")"
1235 ARTISTFILE="$(mungefilename "$TRACKARTIST")"
1236 TRACKFILE="$(mungefilename "$TRACKNAME")"
1237 GENRE="$(mungegenre "$GENRE")"
1238 YEAR=${CDYEAR:-$CDYEAR}
1239 # If we want to start the tracks with a given number, we need to modify
1240 # the TRACKNUM value before evaluation
1242 # Supported variables for OUTPUTFORMAT are GENRE, YEAR, ALBUMFILE,
1243 # ARTISTFILE, TRACKFILE, and TRACKNUM.
1244 if [ "$VARIOUSARTISTS" = "y" ]; then
1245 OUTPUTFILE="$(eval echo \""$VAOUTPUTFORMAT\"")"
1247 OUTPUTFILE="$(eval echo \""$OUTPUTFORMAT\"")"
1249 if checkerrors "tagtrack-$OUTPUT-$1"; then :; else
1250 # Once we know the specific output was successful, we can change
1251 # the OUTPUT to the value containing the container
1254 OUTPUT=$OGGOUTPUTCONTAINER
1257 OUTPUT=$FLACOUTPUTCONTAINER
1263 # Check that the directory for OUTPUTFILE exists, if it doesn't, create it
1264 OUTPUTFILEDIR="$(dirname "$OUTPUTDIR/$OUTPUTFILE")"
1267 if [ "$DOCLEAN" != "y" ] && [ "$FORCE" != "y" ]; then
1268 # FIXME # introduce warnings?
1271 # mkdir -p shouldn't return an error if the directory already exists
1272 mkdir -p "$OUTPUTFILEDIR"
1273 run_command movetrack-$1 mv "$ABCDETEMPDIR/track$1.$OUTPUT" "$OUTPUTDIR/$OUTPUTFILE.$OUTPUT"
1274 if checkstatus movetrack-output-$OUTPUT; then :; else
1275 run_command movetrack-output-$OUTPUT true
1280 # mkdir -p shouldn't return an error if the directory already exists
1281 mkdir -p "$OUTPUTFILEDIR"
1282 run_command movetrack-$1 mv "$ABCDETEMPDIR/track$1.$OUTPUT" "$OUTPUTDIR/$OUTPUTFILE.$OUTPUT"
1283 if checkstatus movetrack-output-$OUTPUT; then :; else
1284 run_command movetrack-output-$OUTPUT true
1288 # Lets move the cue file
1289 if CUEFILE=$(checkstatus cuefile) >/dev/null ; then
1290 if [ -r "$ABCDETEMPDIR/$CUEFILE" ]; then
1291 if checkstatus movecue-$OUTPUT; then :; else
1292 # Silence the Copying output since it overlaps with encoding processes...
1293 #run_command '' vecho "Copying cue file to its destination directory..."
1294 if checkstatus onetrack >/dev/null ; then
1297 if [ "$DOCLEAN" != "y" ] && [ "$FORCE" != "y" ]; then
1298 # We dont have the dir, since it was not created before.
1301 run_command movecue-$OUTPUT cp "$ABCDETEMPDIR/$CUEFILE" "$OUTPUTDIR/$OUTPUTFILE.cue"
1304 # NOTE: Creating a cue file with the 3-char-extension files is to comply with
1305 # http://brianvictor.tripod.com/mp3cue.htm#details
1306 [a-z0-9][a-z0-9][a-z0-9])
1307 run_command movecue-$OUTPUT cp "$ABCDETEMPDIR/$CUEFILE" "$OUTPUTDIR/$OUTPUTFILE.cue"
1310 run_command movecue-$OUTPUT cp "$ABCDETEMPDIR/$CUEFILE" "$OUTPUTDIR/$OUTPUTFILE.$OUTPUT.cue"
1314 run_command movecue-$OUTPUT cp "$ABCDETEMPDIR/$CUEFILE" "$OUTPUTFILEDIR/$CUEFILE"
1316 echo movecue-$OUTPUT >> "$ABCDETEMPDIR/status"
1325 # Create the playlist if wanted
1327 # PLAYLISTFORMAT, PLAYLISTDATAPREFIX, VAPLAYLISTFORMAT, VAPLAYLISTDATAPREFIX,
1328 # VARIOUSARTISTS, OUTPUTDIR
1331 for TMPOUTPUT in $(echo $OUTPUTTYPE | tr , \ )
1335 OUTPUT=$OGGOUTPUTCONTAINER
1338 OUTPUT=$FLACOUTPUTCONTAINER
1344 # Create a playlist file for the playlist data to go into.
1345 # We used to wipe it out if it existed. Now we request permision if interactive.
1346 for LASTTRACK in $TRACKQUEUE; do :; done
1347 ALBUMFILE="$(mungefilename "$DALBUM")"
1348 ARTISTFILE="$(mungefilename "$DARTIST")"
1349 GENRE="$(mungegenre "$GENRE")"
1350 YEAR=${CDYEAR:-$CDYEAR}
1351 if [ "$VARIOUSARTISTS" = "y" ] ; then
1352 PLAYLISTFILE="$(eval echo "$VAPLAYLISTFORMAT")"
1354 PLAYLISTFILE="$(eval echo "$PLAYLISTFORMAT")"
1356 FINALPLAYLISTDIR="$(dirname "$OUTPUTDIR/$PLAYLISTFILE")"
1357 mkdir -p "$FINALPLAYLISTDIR"
1358 if [ -s "$OUTPUTDIR/$PLAYLISTFILE" ]; then
1359 echo -n "Erase, Append to, or Keep the existing playlist file? [e/a/k] (e): " >&2
1360 if [ "$INTERACTIVE" = "y" ]; then
1361 while [ "$DONE" != "y" ]; do
1363 case $ERASEPLAYLIST in
1364 e|E|a|A|k|K) DONE=y ;;
1372 # Once we erase the playlist, we use append to create the new one.
1373 [ "$ERASEPLAYLIST" = "e" -o "$ERASEPLAYLIST" = "E" ] && rm -f "$OUTPUTDIR/$PLAYLISTFILE" && ERASEPLAYLIST=a
1375 # The playlist does not exist, so we can safelly use append to create the new list
1378 if [ "$ERASEPLAYLIST" = "a" -o "$ERASEPLAYLIST" = "A" ]; then
1379 touch "$OUTPUTDIR/$PLAYLISTFILE"
1380 for UTRACKNUM in $TRACKQUEUE
1382 # Shares some code with do_move since the filenames have to match
1383 CDDBTRACKNUM=$(expr $UTRACKNUM - 1)
1384 getcddbinfo TRACKNAME
1386 TRACKFILE="$(mungefilename "$TRACKNAME")"
1387 ARTISTFILE="$(mungefilename "$TRACKARTIST")"
1388 ALBUMFILE="$(mungefilename "$DALBUM")"
1389 # If we want to start the tracks with a given number, we need to modify the
1390 # TRACKNUM value before evaluation
1392 if [ "$VARIOUSARTISTS" = "y" ]; then
1393 OUTPUTFILE="$(eval echo \""$VAOUTPUTFORMAT\"")"
1395 OUTPUTFILE="$(eval echo \""$OUTPUTFORMAT\"")"
1397 if [ "$VARIOUSARTISTS" = "y" ]; then
1398 if [ "$VAPLAYLISTDATAPREFIX" ] ; then
1399 echo ${VAPLAYLISTDATAPREFIX}$OUTPUTFILE.$OUTPUT >> "$OUTPUTDIR/$PLAYLISTFILE"
1401 relpath "$PLAYLISTFILE", "$OUTPUTFILE.$OUTPUT" >> "$OUTPUTDIR/$PLAYLISTFILE"
1404 if [ "$PLAYLISTDATAPREFIX" ]; then
1405 echo ${PLAYLISTDATAPREFIX}$OUTPUTFILE.$OUTPUT >> "$OUTPUTDIR/$PLAYLISTFILE"
1407 relpath "$PLAYLISTFILE", "$OUTPUTFILE.$OUTPUT" >> "$OUTPUTDIR/$PLAYLISTFILE"
1412 ## this will convert the playlist to have CRLF line-endings, if specified
1413 ## (some hardware players insist on CRLF endings)
1414 if [ "$DOSPLAYLIST" = "y" ]; then
1415 awk '{substr("\r",""); printf "%s\r\n", $0}' "$OUTPUTDIR/$PLAYLISTFILE" > "$ABCDETEMPDIR/PLAYLISTFILE.tmp"
1416 # mv -f "$ABCDETEMPDIR/PLAYLISTFILE.tmp" "$OUTPUTDIR/$PLAYLISTFILE"
1417 cat "$ABCDETEMPDIR/PLAYLISTFILE.tmp" | sed 's/\//\\/' > "$OUTPUTDIR/$PLAYLISTFILE"
1419 echo "playlistcomplete" >> "$ABCDETEMPDIR/status"
1424 # This essentially the start of things
1427 # Query the CD to get the track info, unless the user specified -C
1428 # or we are using some actions which do not need the CDDB data at all
1429 #if [ ! X"$EXPACTIONS" = "X" ]; then
1431 #elif [ -z "$DISCID" ]; then
1432 if [ -z "$DISCID" ]; then
1433 vecho -n "Getting CD track info... "
1434 # In OSX, unmount the disc before a query
1435 if [ "$OSFLAVOUR" = "OSX" ]; then
1436 disktool -u ${CDROM#/dev/}
1438 if [ "$CDROMREADERSYNTAX" = "flac" ] ; then
1439 if $METAFLAC $METAFLACOPTS --export-cuesheet-to=- "$CDROM" > /dev/null 2>&1 ; then
1440 TRACKINFO=$($METAFLAC $METAFLACOPTS --export-cuesheet-to=- "$CDROM" | $CUE2DISCID)
1442 log error "the input flac file does not contain a cuesheet."
1446 case "$CDDBMETHOD" in
1447 cddb) TRACKINFO=$($CDDISCID $CDROM) ;;
1448 # FIXME # musicbrainz needs a cleanup
1449 musicbrainz) TRACKINFO=$($MUSICBRAINZ -c $CDROM ) ;;
1452 # Make sure there's a CD in there by checking cd-discid's return code
1453 if [ ! "$?" = "0" ]; then
1454 if [ "$CDROMREADERSYNTAX" = "flac" ] ; then
1455 log error "cuesheet information from the flac file could not be read."
1456 log error "Perhaps the flac file does not contain a cuesheet?."
1459 log error "CD could not be read. Perhaps there's no CD in the drive?"
1463 # In OSX, remount the disc again
1464 if [ "$OSFLAVOUR" = "OSX" ]; then
1465 disktool -m ${CDROM#/dev/}
1468 DISCID=$(echo $TRACKINFO | cut -f1 -d' ')
1470 TRACKINFO=$(cat "$WAVOUTPUTDIR/abcde.$DISCID/discid")
1473 # Get a full enumeration of tracks, sort it, and put it in the TRACKQUEUE.
1474 # This needs to be done now because a section of the resuming code will need
1477 # get the number of digits to pad TRACKNUM with - we'll use this later
1478 # a CD can only hold 99 tracks, but since we support a feature for starting
1479 # numbering the tracks from a given number, we might need to set it as a
1480 # variable for the user to define... or obtain it somehow.
1481 if [ "$PADTRACKS" = "y" ] ; then
1485 ABCDETEMPDIR="$WAVOUTPUTDIR/abcde.$(echo $TRACKINFO | cut -f1 -d' ')"
1486 if [ -z "$TRACKQUEUE" ]; then
1487 if [ ! "$STRIPDATATRACKS" = "y" ]; then
1488 case "$CDROMREADERSYNTAX" in
1490 if [ "$WEHAVEACD" = "y" ]; then
1491 vecho "Querying the CD for audio tracks..."
1492 CDPARANOIAOUTPUT="$( $CDROMREADER -$CDPARANOIACDROMBUS $CDROM -Q --verbose 2>&1 )"
1494 if [ ! "$RET" = "0" ];then
1495 log warning "something went wrong while querying the CD... Maybe a DATA CD?"
1497 TRACKS="$(echo "$CDPARANOIAOUTPUT" | egrep '^[[:space:]]+[[:digit:]]' | tail -n 1 | get_first | tr -d "." | tr '\n' ' ')"
1498 CDPARANOIAAUDIOTRACKS="$TRACKS"
1500 # Previous versions of abcde would store the tracks on a file, instead of the status record.
1501 if [ -f "$ABCDETEMPDIR/cdparanoia-audio-tracks" ]; then
1502 echo cdparanoia-audio-tracks=$( cat "$ABCDETEMPDIR/cdparanoia-audio-tracks" ) >> "$ABCDETEMPDIR/status"
1503 rm -f "$ABCDETEMPDIR/cdparanoia-audio-tracks"
1505 if [ -f "$ABCDETEMPDIR/status" ] && TRACKS=$(checkstatus cdparanoia-audio-tracks); then :; else
1506 TRACKS=$(echo $TRACKINFO | cut -f2 -d' ')
1510 *) TRACKS=$(echo $TRACKINFO | cut -f2 -d' ') ;;
1513 TRACKS=$(echo $TRACKINFO | cut -f2 -d' ')
1515 if echo "$TRACKS" | grep "[[:digit:]]" > /dev/null 2>&1 ;then :;else
1516 log info "The disc does not contain any tracks. Giving up..."
1519 echo -n "Grabbing entire CD - tracks: "
1520 if [ ! "$PADTRACKS" = "y" ] ; then
1521 TRACKNUMPADDING=$(echo -n $TRACKS | wc -c | tr -d ' ')
1523 TRACKS=$(printf "%0.${TRACKNUMPADDING}d" $TRACKS)
1525 while [ "$X" -ne "$TRACKS" ]
1527 X=$(printf "%0.${TRACKNUMPADDING}d" $(expr $X + 1))
1528 TRACKQUEUE=$(echo $TRACKQUEUE $X)
1532 TRACKS=$(echo $TRACKINFO | cut -f2 -d' ')
1533 # User-supplied track queue.
1534 # Weed out non-numbers, whitespace, then sort and weed out duplicates
1535 TRACKQUEUE=$(echo $TRACKQUEUE | sed 's-[^0-9 ]--g' | tr ' ' '\n' | grep -v ^$ | sort -n | uniq | tr '\n' ' ' | sed 's- $--g')
1536 # Once cleaned, obtain the highest value in the trackqueue for number padding
1537 for LASTTRACK in $TRACKQUEUE; do :; done
1538 if [ ! "$PADTRACKS" = "y" ] ; then
1539 TRACKNUMPADDING=$(echo -n $LASTTRACK | wc -c | tr -d ' ')
1541 # Now we normalize the trackqueue
1542 for TRACK in $TRACKQUEUE ; do
1543 TRACKNUM=$(printf %0.${TRACKNUMPADDING}d $(expr ${TRACK} + 0 ))
1544 PADTRACKQUEUE=$(echo $PADTRACKQUEUE $TRACKNUM)
1546 TRACKQUEUE=$PADTRACKQUEUE
1547 echo Grabbing tracks: "$TRACKQUEUE"
1550 QUEUEDTRACKS=$(echo $TRACKQUEUE | wc -w | tr -d ' ')
1552 # We have the discid, create a temp directory after it to store all the temp
1555 if [ -e "$ABCDETEMPDIR" ]; then
1556 echo -n "abcde: attempting to resume from $ABCDETEMPDIR"
1557 # It already exists, see if it's a directory
1558 if [ ! -d "$ABCDETEMPDIR" ]; then
1559 # This is a file/socket/fifo/device/etc, not a directory
1562 echo "abcde: file $ABCDETEMPDIR already exists and does not belong to abcde." >&2
1563 echo "Please investigate, remove it, and rerun abcde." >&2
1567 # It's a directory, let's see if it's owned by us
1568 if [ ! -O "$ABCDETEMPDIR" ]; then
1569 # Nope, complain and exit
1571 echo "abcde: directory $ABCDETEMPDIR already exists and is not owned by you." >&2
1572 echo "Please investigate, remove it, and rerun abcde." >&2
1576 # See if it's populated
1577 if [ ! -f "$ABCDETEMPDIR/discid" ]; then
1578 # Wipe and start fresh
1579 echo "abcde: $ABCDETEMPDIR/discid not found. Abcde must remove and recreate" >&2
1580 echo -n "this directory to continue. Continue? [y/n] (n)" >&2
1581 if [ "$INTERACTIVE" = "y" ]; then
1587 if [ "$ANSWER" != "y" ]; then
1590 rm -rf "$ABCDETEMPDIR" || exit 1
1591 mkdir -p "$ABCDETEMPDIR"
1592 if [ "$?" -gt "0" ]; then
1593 # Directory already exists or could not be created
1594 echo "abcde: Temp directory $ABCDETEMPDIR could not be created." >&2
1598 # Everything is fine. Check for ^encodetracklocation-
1599 # and encode-output entries in the status file and
1600 # remove them. These are not relevant across sessions.
1601 if [ -f "$ABCDETEMPDIR/status" ]; then
1602 mv "$ABCDETEMPDIR/status" "$ABCDETEMPDIR/status.old"
1603 grep -v ^encodetracklocation- < "$ABCDETEMPDIR/status.old" \
1604 | grep -v ^encode-output > "$ABCDETEMPDIR/status"
1606 # Remove old error messages
1607 if [ -f "$ABCDETEMPDIR/errors" ]; then
1608 rm -f "$ABCDETEMPDIR/errors"
1612 # We are starting from scratch
1613 mkdir -p "$ABCDETEMPDIR"
1614 if [ "$?" -gt "0" ]; then
1615 # Directory already exists or could not be created
1616 echo "abcde: Temp directory $ABCDETEMPDIR could not be created." >&2
1619 cat /dev/null > "$ABCDETEMPDIR/status"
1620 # Store the abcde version in the status file.
1621 echo "abcde-version=$VERSION" >> "$ABCDETEMPDIR/status"
1623 if [ X"$MAKECUEFILE" = "Xy" -a X"$WEHAVEACD" = "Xy" ]; then
1624 if checkstatus cuefile > /dev/null 2>&1 ; then :; else
1625 CUEFILE=cue-$(echo "$TRACKINFO" | cut -f1 -d' ').txt
1626 vecho "Creating cue file..."
1627 case $CDROMREADERSYNTAX in
1629 if $METAFLAC --export-cuesheet-to=- $CDROM > "$ABCDETEMPDIR/$CUEFILE"; then :; else
1630 log warning "the input flac file does not contain a cuesheet."
1634 if $CUEREADER $CUEREADEROPTS > "$ABCDETEMPDIR/$CUEFILE"; then
1635 echo cuefile=$CUEFILE >> "$ABCDETEMPDIR/status"
1637 log warning "reading the CUE sheet with mkcue is still considered experimental"
1638 log warning "and there was a problem with the CD reading. abcde will continue,"
1639 log warning "but consider reporting the problem to the abcde author"
1645 # If we got the CDPARANOIA status and it is not recorded, save it now
1646 if [ -n "$CDPARANOIAAUDIOTRACKS" ]; then
1647 if checkstatus cdparanoia-audio-tracks > /dev/null 2>&1; then :; else
1648 echo cdparanoia-audio-tracks=$CDPARANOIAAUDIOTRACKS >> "$ABCDETEMPDIR/status"
1652 # Create the discid file
1653 echo "$TRACKINFO" > "$ABCDETEMPDIR/discid"
1654 if checkstatus cddbmethod > /dev/null 2>&1 ; then :; else
1655 echo "cddbmethod=$CDDBMETHOD" >> "$ABCDETEMPDIR/status"
1660 # Create a proper CUE file based on the CUE file we created before.
1663 if CUEFILE_IN="$ABCDETEMPDIR"/$(checkstatus cuefile); then
1664 CUEFILE_OUT=$CUEFILE_IN.out
1665 ### FIXME ### checkstatus cddb
1666 if [ -e "$CDDBDATA" ]; then
1667 vecho "Adding metadata to the cue file..."
1668 # FIXME It doesn't preserve spaces! Why?
1669 # FIXME parse $track into PERFORMER and TITLE - abcde already has code for this?
1671 echo "PERFORMER \"$DARTIST\"" >> "$CUEFILE_OUT"
1672 echo "TITLE \"$DALBUM\"" >> "$CUEFILE_OUT"
1673 cat "$CUEFILE_IN" | while read line
1675 if echo "$line" | grep "INDEX 01" > /dev/null 2>&1 ; then
1676 eval track="\$TRACK$n"
1678 echo "TITLE \"$track\"" >> "$CUEFILE_OUT"
1680 echo "$line" >> "$CUEFILE_OUT"
1682 mv "$CUEFILE_OUT" "$CUEFILE_IN"
1683 echo "cleancuefile" >> "$ABCDETEMPDIR/status"
1689 # Parses a CDDB file and outputs the title and the track names.
1690 # Variables: CDDBFILE
1694 # List out disc title/author and contents
1695 if [ "$ONETRACK" = "y" ]; then
1696 vecho "ONETRACK mode selected: displaying only the title of the CD..."
1698 echo "---- $(grep DTITLE "${CDDBPARSEFILE}" | cut '-d=' -f2- | tr -d \\r\\n ) ----"
1699 if [ X"$SHOWCDDBYEAR" = "Xy" ]; then
1700 PARSEDYEAR=$(grep DYEAR "${CDDBPARSEFILE}" | cut '-d=' -f2-)
1701 if [ ! X"$PARSEDYEAR" = "X" ]; then
1702 echo "Year: $PARSEDYEAR"
1705 if [ X"$SHOWCDDBGENRE" = "Xy" ]; then
1706 PARSEDGENRE=$(grep DGENRE "${CDDBPARSEFILE}" | cut '-d=' -f2-)
1707 if [ ! X"$PARSEDGENRE" = "X" ]; then
1708 echo "Genre: $PARSEDGENRE"
1711 if [ ! "$ONETRACK" = "y" ]; then
1712 for TRACK in $(f_seq_row 1 $TRACKS)
1714 echo $TRACK: "$(grep ^TTITLE$(expr $TRACK - 1)= "${CDDBPARSEFILE}" | cut -f2- -d= | tr -d \\r\\n)"
1720 # Check for a local CDDB file, and report success
1723 if checkstatus cddb-readcomplete && checkstatus cddb-choice >/dev/null; then :; else
1725 CDDBLOCALSTATUS="notfound"
1726 CDDBDISCID=$(echo $TRACKINFO | cut -d' ' -f1)
1729 if [ "$CDDBLOCALRECURSIVE" = "y" ]; then
1730 CDDBLOCALRESULTS="$(find ${CDDBLOCALDIR} -name "${CDDBDISCID}" -type f 2> /dev/null)"
1731 if [ ! "${CDDBLOCALRESULTS}" = "" ]; then
1732 if (( $(echo "${CDDBLOCALRESULTS}" | wc -l) == 1 )); then
1733 CDDBLOCALFILE="${CDDBLOCALRESULTS}"
1734 CDDBLOCALMATCH=single
1735 elif (( $(echo "${CDDBLOCALRESULTS}" | wc -l) > 1 )); then
1736 CDDBLOCALMATCH=multiple
1741 elif [ "$CDDBLOCALMATCH" = "none" ] && [ -r "${CDDBLOCALDIR}/${CDDBDISCID}" ]; then
1742 CDDBLOCALFILE="${CDDBLOCALDIR}/${CDDBDISCID}"
1743 CDDBLOCALMATCH=single
1748 # If the user has selected to check a local CDDB repo, we proceed with it
1749 case $CDDBLOCALMATCH in
1751 echo "Processing multiple matching CDDB entries..." > "$ABCDETEMPDIR/cddblocalchoices"
1753 echo "$CDDBLOCALRESULTS" | while read RESULT ; do
1755 # List out disc title/author and contents
1756 CDDBLOCALREAD="$ABCDETEMPDIR/cddblocalread.$X"
1757 cat "$RESULT" > "${CDDBLOCALREAD}"
1760 do_cddbparse "${CDDBLOCALREAD}"
1762 ##FIXME## QUICK HACK !!!!
1763 if [ ! "$INTERACTIVE" = "y" ]; then break ; fi
1764 } >> "$ABCDETEMPDIR/cddblocalchoices"
1766 if [ $(cat "$ABCDETEMPDIR/cddblocalchoices" | wc -l) -ge 24 ] && [ "$INTERACTIVE" = "y" ]; then
1767 page "$ABCDETEMPDIR/cddblocalchoices"
1769 # It's all going to fit in one page, cat it
1770 cat "$ABCDETEMPDIR/cddblocalchoices" >&2
1772 CDDBLOCALCHOICES=$( echo "$CDDBLOCALRESULTS" | wc -l )
1773 # Setting the choice to an impossible integer to avoid errors in the numeric comparisons
1774 CDDBLOCALCHOICENUM=-1
1775 if [ "$INTERACTIVE" = "y" ]; then
1776 while [ $CDDBLOCALCHOICENUM -lt 0 ] || [ $CDDBLOCALCHOICENUM -gt $CDDBLOCALCHOICES ]; do
1777 echo -n "Locally cached CDDB entries found. Which one would you like to use (0 for none)? [0-$CDDBLOCALCHOICES]: " >&2
1778 read CDDBLOCALCHOICE
1779 [ x"$CDDBLOCALCHOICE" = "x" ] && CDDBLOCALCHOICE="1"
1780 # FIXME # Introduce diff's
1781 if echo $CDDBLOCALCHOICE | egrep "[[:space:]]*[[:digit:]]+,[[:digit:]]+[[:space:]]*" > /dev/null 2>&1 ; then
1782 diffentries cddblocalread "$CDDBLOCALCHOICES" "$CDDBLOCALCHOICE"
1783 elif echo $CDDBLOCALCHOICE | egrep "[[:space:]]*[[:digit:]]+[[:space:]]*" > /dev/null 2>&1 ; then
1784 # Make sure we get a valid choice
1785 CDDBLOCALCHOICENUM=$(echo $CDDBLOCALCHOICE | xargs printf %d 2>/dev/null)
1786 if [ $CDDBLOCALCHOICENUM -lt 0 ] || [ $CDDBLOCALCHOICENUM -gt $CDDBLOCALCHOICES ]; then
1787 echo "Invalid selection. Please choose a number between 0 and $CDDBLOCALCHOICES." >&2
1793 #echo "Selected ..."
1795 CDDBLOCALCHOICENUM=1
1797 if [ ! "$CDDBLOCALCHOICENUM" = "0" ]; then
1798 #echo "Using local copy of CDDB data"
1799 echo "# DO NOT ERASE THIS LINE! Added by abcde to imitate cddb output" > "$ABCDETEMPDIR/cddbread.1"
1800 cat "$ABCDETEMPDIR/cddblocalread.$CDDBLOCALCHOICENUM" >> "$ABCDETEMPDIR/cddbread.1"
1801 echo 999 > "$ABCDETEMPDIR/cddbquery" # Assuming 999 isn't used by CDDB
1802 echo cddb-readcomplete >> "$ABCDETEMPDIR/status"
1803 do_cddbparse "$ABCDETEMPDIR/cddbread.1" > "$ABCDETEMPDIR/cddbchoices"
1804 echo cddb-choice=1 >> "$ABCDETEMPDIR/status"
1805 CDDBLOCALSTATUS="found"
1807 #echo "Not using local copy of CDDB data"
1808 CDDBLOCALSTATUS="notfound"
1812 # List out disc title/author and contents
1813 do_cddbparse "${CDDBLOCALFILE}"
1814 if [ "$CDROMREADERSYNTAX" = "flac" ] ; then
1815 echo -n "Embedded cuesheet entry found, use it? [y/n] (y): " >&2
1817 echo -n "Locally cached CDDB entry found, use it? [y/n] (y): " >&2
1819 if [ "$INTERACTIVE" = "y" ]; then
1821 while [ "$USELOCALRESP" != "y" ] && [ "$USELOCALRESP" != "n" ] && [ "$USELOCALRESP" != "" ] ; do
1822 echo -n 'Invalid selection. Please answer "y" or "n": ' >&2
1825 [ x"$USELOCALRESP" = "x" ] && USELOCALRESP="y"
1829 if [ "$USELOCALRESP" = "y" ]; then
1830 #echo "Using local copy of CDDB data"
1831 echo "# DO NOT ERASE THIS LINE! Added by abcde to imitate cddb output" > "$ABCDETEMPDIR/cddbread.1"
1832 cat "${CDDBLOCALFILE}" >> "$ABCDETEMPDIR/cddbread.1"
1833 echo 999 > "$ABCDETEMPDIR/cddbquery" # Assuming 999 isn't used by CDDB
1834 echo cddb-readcomplete >> "$ABCDETEMPDIR/status"
1835 do_cddbparse "${CDDBLOCALFILE}" > "$ABCDETEMPDIR/cddbchoices"
1836 echo cddb-choice=1 >> "$ABCDETEMPDIR/status"
1837 CDDBLOCALSTATUS="single"
1839 #echo "Not using local copy of CDDB data"
1840 CDDBLOCALSTATUS="notfound"
1844 CDDBLOCALSTATUS="notfound"
1850 do_musicbrainzstat ()
1863 # Perform CDDB protocol version check if it hasn't already been done
1864 if checkstatus cddb-statcomplete; then :; else
1865 if [ "$CDDBAVAIL" = "n" ]; then
1867 echo 503 > "$ABCDETEMPDIR/cddbstat"
1870 CDDBUSER=$(echo $HELLOINFO | cut -f1 -d'@')
1871 CDDBHOST=$(echo $HELLOINFO | cut -f2- -d'@')
1872 while test $rc -eq 1 -a $CDDBPROTO -ge 3; do
1873 vecho "Checking CDDB server status..."
1874 $CDDBTOOL stat $CDDBURL $CDDBUSER $CDDBHOST $CDDBPROTO > "$ABCDETEMPDIR/cddbstat"
1875 RESPONSECODE=$(head -n 1 "$ABCDETEMPDIR/cddbstat" | cut -f1 -d' ')
1876 case "$RESPONSECODE" in
1877 210) # 210 OK, status information follows (until terminating `.')
1880 501|*) # 501 Illegal CDDB protocol level: <n>.
1881 CDDBPROTO=`expr $CDDBPROTO - 1`
1885 if test $rc -eq 1; then
1889 echo cddb-statcomplete >> "$ABCDETEMPDIR/status"
1897 CDDBDISCID=$(echo $TRACKINFO | cut -d' ' -f1)
1898 CDDBLOCALFILE="${CDDBLOCALDIR}/${CDDBDISCID}"
1900 # Perform CDDB query if it hasn't already been done
1901 if checkstatus cddb-querycomplete; then :; else
1902 if [ "$CDDBAVAIL" = "n" ]; then
1904 echo 503 > "$ABCDETEMPDIR/cddbquery"
1905 # The default CDDBLOCALSTATUS is "notfound"
1906 # This part will be triggered if the user CDDB repo does not
1907 # contain the entry, or if we are not trying to use the repo.
1909 vecho "Querying the CDDB server..."
1910 CDDBUSER=$(echo $HELLOINFO | cut -f1 -d'@')
1911 CDDBHOST=$(echo $HELLOINFO | cut -f2- -d'@')
1912 $CDDBTOOL query $CDDBURL $CDDBPROTO $CDDBUSER $CDDBHOST $TRACKINFO > "$ABCDETEMPDIR/cddbquery"
1918 # no match found in database,
1919 # wget/fetch error, or user requested not to use CDDB
1920 # Make up an error code (503) that abcde
1921 # will recognize in do_cddbread
1922 # and compensate by making a template
1923 echo 503 > "$ABCDETEMPDIR/cddbquery"
1925 *) # strange and unknown error
1926 echo ERRORCODE=$ERRORCODE
1927 echo "abcde: $CDDBTOOL returned unknown error code"
1931 echo cddb-querycomplete >> "$ABCDETEMPDIR/status"
1938 # If it's not to be used, generate a template.
1939 # Then, display it (or them) and let the user choose/edit it
1940 if checkstatus cddb-readcomplete; then :; else
1941 vecho "Obtaining CDDB results..."
1942 # If CDDB is to be used, interpret the query results and read all
1943 # the available entries.
1944 rm -f "$ABCDETEMPDIR/cddbchoices"
1945 CDDBCHOICES=1 # Overridden by multiple matches
1946 RESPONSECODE=$(head -n 1 "$ABCDETEMPDIR/cddbquery" | cut -f1 -d' ')
1947 case "$RESPONSECODE" in
1949 # One exact match, retrieve it
1950 # 200 [section] [discid] [artist] / [title]
1951 if checkstatus cddb-read-1-complete; then :; else
1952 echo -n "Retrieving 1 CDDB match..." >> "$ABCDETEMPDIR/cddbchoices"
1953 $CDDBTOOL read $CDDBURL $CDDBPROTO $CDDBUSER $CDDBHOST $(cut -f2,3 -d' ' "$ABCDETEMPDIR/cddbquery") > "$ABCDETEMPDIR/cddbread.1"
1954 echo "done." >> "$ABCDETEMPDIR/cddbchoices"
1955 echo cddb-read-1-complete >> "$ABCDETEMPDIR/status"
1956 echo cddb-choice=1 >> "$ABCDETEMPDIR/status"
1958 # List out disc title/author and contents
1959 echo ---- "$(cut '-d ' -f4- "$ABCDETEMPDIR/cddbquery")" ---- >> "$ABCDETEMPDIR/cddbchoices"
1960 for TRACK in $(f_seq_row 1 $TRACKS)
1962 echo $TRACK: "$(grep ^TTITLE$(expr $TRACK - 1)= "$ABCDETEMPDIR/cddbread.1" | cut -f2- -d= | tr -d \\r\\n)" >> "$ABCDETEMPDIR/cddbchoices"
1964 echo >> "$ABCDETEMPDIR/cddbchoices"
1968 case "$RESPONSECODE" in
1969 202) echo "No CDDB match." >> "$ABCDETEMPDIR/cddbchoices" ;;
1970 403|409) echo "CDDB entry is corrupt, or the handshake failed." >> "$ABCDETEMPDIR/cddbchoices" ;;
1971 503) echo "CDDB unavailable." >> "$ABCDETEMPDIR/cddbchoices" ;;
1973 $CDDBTOOL template $(cat "$ABCDETEMPDIR/discid") > "$ABCDETEMPDIR/cddbread.0"
1974 # List out disc title/author and contents of template
1975 echo ---- Unknown Artist / Unknown Album ---- >> "$ABCDETEMPDIR/cddbchoices"
1977 for TRACK in $(f_seq_row 1 $TRACKS)
1979 echo $TRACK: "$(grep ^TTITLE$(expr $TRACK - 1)= "$ABCDETEMPDIR/cddbread.0" | cut -f2- -d= | tr -d \\r\\n)" >> "$ABCDETEMPDIR/cddbchoices"
1981 echo >> "$ABCDETEMPDIR/cddbchoices"
1982 echo cddb-read-0-complete >> "$ABCDETEMPDIR/status"
1983 echo cddb-choice=0 >> "$ABCDETEMPDIR/status"
1986 # Multiple exact, (possibly multiple) inexact matches
1988 if [ "$RESPONSECODE" = "211" ]; then IN=in; fi
1989 if [ "$(wc -l < "$ABCDETEMPDIR/cddbquery" | tr -d ' ')" -eq 3 ]; then
1990 echo "One ${IN}exact match:" >> "$ABCDETEMPDIR/cddbchoices"
1991 tail -n +2 "$ABCDETEMPDIR/cddbquery" | head -n 1 >> "$ABCDETEMPDIR/cddbchoices"
1992 echo cddb-choice=1 >> "$ABCDETEMPDIR/status"
1994 echo "Multiple ${IN}exact matches:" >> "$ABCDETEMPDIR/cddbchoices"
1996 vecho -n "Retrieving multiple matches... "
1997 grep -v ^[.]$ "$ABCDETEMPDIR/cddbquery" | ( X=0
1998 read DISCINFO # eat top line
2002 if checkstatus cddb-read-$X-complete; then :; else
2003 $CDDBTOOL read $CDDBURL $CDDBPROTO $CDDBUSER $CDDBHOST $(echo $DISCINFO | cut -f1,2 -d' ') > "$ABCDETEMPDIR/cddbread.$X"
2004 echo cddb-read-$X-complete >> "$ABCDETEMPDIR/status"
2006 # List out disc title/author and contents
2007 echo \#$X: ---- "$DISCINFO" ---- >> "$ABCDETEMPDIR/cddbchoices"
2008 for TRACK in $(f_seq_row 1 $TRACKS)
2010 echo $TRACK: "$(grep ^TTITLE$(expr $TRACK - 1)= "$ABCDETEMPDIR/cddbread.$X" | cut -f2- -d= | tr -d \\r\\n)" >> "$ABCDETEMPDIR/cddbchoices"
2012 echo >> "$ABCDETEMPDIR/cddbchoices"
2015 CDDBCHOICES=$(expr $(cat "$ABCDETEMPDIR/cddbquery" | wc -l) - 2)
2019 for TRACK in $(f_seq_row 1 $TRACKS)
2021 echo $TRACK: "$(grep ^TTITLE$(expr $TRACK - 1)= "$ABCDETEMPDIR/cddbread.1" | cut -f2- -d= | tr -d \\r\\n)" >> "$ABCDETEMPDIR/cddbchoices"
2023 echo >> "$ABCDETEMPDIR/cddbchoices"
2024 echo cddb-read-1-complete >> "$ABCDETEMPDIR/status"
2025 echo cddb-choice=1 >> "$ABCDETEMPDIR/status"
2028 echo "cddb-readcomplete" >> "$ABCDETEMPDIR/status"
2035 if checkstatus cddb-edit >/dev/null; then
2036 CDDBDATA="$ABCDETEMPDIR/cddbread.$(checkstatus cddb-choice)"
2037 VARIOUSARTISTS="$(checkstatus variousartists)"
2038 VARIOUSARTISTSTYLE="$(checkstatus variousartiststyle)"
2041 if [ "$INTERACTIVE" = "y" ]; then
2042 # We should show the CDDB results both when we are not using the local CDDB repo
2043 # or when we are using it but we could not find a proper match
2044 if [ "$CDDBUSELOCAL" = "y" ] && [ "$CDDBLOCALSTATUS" = "notfound" ] || [ ! "$CDDBUSELOCAL" = "y" ]; then
2045 # Display the $ABCDETEMPDIR/cddbchoices file created above
2046 # Pick a pager so that if the tracks overflow the screen the user can still view everything
2047 if [ -r "$ABCDETEMPDIR/cddbchoices" ]; then
2048 CDDBCHOICES=$(expr $(cat "$ABCDETEMPDIR/cddbquery" | wc -l) - 2)
2049 CHOICE=$(checkstatus cddb-choice)
2050 if [ -n "$CHOICE" ] ; then
2051 case $CDDBCHOICES in
2052 -1) if head -1 "$ABCDETEMPDIR/cddbquery" | grep "^$" > /dev/null 2>&1 ; then
2053 log error "CDDB query failed!"
2056 cat "$ABCDETEMPDIR/cddbchoices"
2059 1) cat "$ABCDETEMPDIR/cddbchoices" ;;
2061 echo "Selected: #$CHOICE"
2062 do_cddbparse "$ABCDETEMPDIR/cddbread.$CHOICE"
2066 # The user has a choice to make, display the info in a pager if necessary
2067 if [ $(cat "$ABCDETEMPDIR/cddbchoices" | wc -l) -ge 24 ]; then
2068 page "$ABCDETEMPDIR/cddbchoices"
2070 # It's all going to fit in one page, cat it
2071 cat "$ABCDETEMPDIR/cddbchoices" >&2
2075 # Setting the choice to an impossible integer to avoid errors in the numeric comparisons
2077 # I'll take CDDB read #3 for $400, Alex
2078 while [ $CDCHOICENUM -lt 0 ] || [ $CDCHOICENUM -gt $CDDBCHOICES ]; do
2079 echo -n "Which entry would you like abcde to use (0 for none)? [0-$CDDBCHOICES]: " >&2
2081 [ X"$CDDBCHOICE" = "X" ] && CDDBCHOICE=1
2082 if echo $CDDBCHOICE | egrep "[[:space:]]*[[:digit:]]+,[[:digit:]]+[[:space:]]*" > /dev/null 2>&1 ; then
2083 if [ ! X"$DIFF" = "X" ]; then
2084 PARSECHOICE1=$(echo $CDDBCHOICE | cut -d"," -f1 | xargs printf %d 2>/dev/null)
2085 PARSECHOICE2=$(echo $CDDBCHOICE | cut -d"," -f2 | xargs printf %d 2>/dev/null)
2086 if [ $PARSECHOICE1 -lt 1 ] || [ $PARSECHOICE1 -gt $CDDBCHOICES ] || \
2087 [ $PARSECHOICE2 -lt 1 ] || [ $PARSECHOICE2 -gt $CDDBCHOICES ] || \
2088 [ $PARSECHOICE1 -eq $PARSECHOICE2 ]; then
2089 echo "Invalid diff range. Please select two coma-separated numbers between 1 and $CDDBCHOICES" >&2
2091 # We parse the 2 choices to diff, store them in temporary files and diff them.
2092 for PARSECHOICE in $(echo $CDDBCHOICE | tr , \ ); do
2093 do_cddbparse "$ABCDETEMPDIR/cddbread.$PARSECHOICE" > "$ABCDETEMPDIR/cddbread.parsechoice.$PARSECHOICE"
2095 echo "Showing diff between choices $PARSECHOICE1 and $PARSECHOICE2..." > "$ABCDETEMPDIR/cddbread.diff"
2096 $DIFF $DIFFOPTS "$ABCDETEMPDIR/cddbread.parsechoice.$PARSECHOICE1" "$ABCDETEMPDIR/cddbread.parsechoice.$PARSECHOICE2" >> "$ABCDETEMPDIR/cddbread.diff"
2097 if [ $(cat "$ABCDETEMPDIR/cddbread.diff" | wc -l) -ge 24 ]; then
2098 page "$ABCDETEMPDIR/cddbread.diff"
2100 cat "$ABCDETEMPDIR/cddbread.diff" >&2
2104 echo "The diff program was not found in your path. Please choose a number between 0 and $CDDBCHOICES." >&2
2106 elif echo $CDDBCHOICE | egrep "[[:space:]]*[[:digit:]]+[[:space:]]*" > /dev/null 2>&1 ; then
2107 # Make sure we get a valid choice
2108 CDCHOICENUM=$(echo $CDDBCHOICE | xargs printf %d 2>/dev/null)
2109 if [ $CDCHOICENUM -lt 0 ] || [ $CDCHOICENUM -gt $CDDBCHOICES ]; then
2110 echo "Invalid selection. Please choose a number between 0 and $CDDBCHOICES." >&2
2114 if [ "$CDCHOICENUM" = "0" ]; then
2115 vecho "Creating empty CDDB template..."
2117 $CDDBTOOL template $(cat "$ABCDETEMPDIR/discid") > "$ABCDETEMPDIR/cddbread.0"
2119 echo "Selected: #$CDCHOICENUM ($(grep ^DTITLE= "$ABCDETEMPDIR/cddbread.$CDCHOICENUM" | cut -f2- -d= | tr -d \\r\\n))" >&2
2120 do_cddbparse "$ABCDETEMPDIR/cddbread.$CDCHOICENUM"
2122 echo "cddb-choice=$CDCHOICENUM" >> "$ABCDETEMPDIR/status"
2126 # We need some code to show the selected option when local repository is selected and we have found a match
2127 vecho "Using cached CDDB match..." >&2
2128 # Display the $ABCDETEMPDIR/cddbchoices file created above
2129 # Pick a pager so that if the tracks overflow the screen the user can still view everything
2130 if [ -r "$ABCDETEMPDIR/cddbchoices" ]; then
2131 CDDBCHOICES=$(expr $(cat "$ABCDETEMPDIR/cddbquery" | wc -l) - 2)
2132 CHOICE=$(checkstatus cddb-choice)
2133 if [ "$USELOCALRESP" = "y" ]; then :; else
2134 if [ -n "$CHOICE" ] ; then
2135 case $CDDBCHOICES in
2138 echo "Selected template."
2140 1) cat "$ABCDETEMPDIR/cddbchoices" ;;
2142 echo "Selected: #$CHOICE"
2143 do_cddbparse "$ABCDETEMPDIR/cddbread.$CHOICE"
2151 # We're noninteractive - pick the first choice.
2152 # But in case we run a previous instance and selected a choice, use it.
2153 if [ -r "$ABCDETEMPDIR/cddbchoices" ]; then
2154 # Show the choice if we are not using the locally stored one
2155 # or when the local search failed to find a match.
2156 PREVIOUSCHOICE=$(checkstatus cddb-choice)
2157 if [ "$CDDBUSELOCAL" = "y" ] && [ "$CDDBLOCALSTATUS" = "notfound" ] || [ ! "$CDDBUSELOCAL" = "y" ]; then
2158 #if [ "$PREVIOUSCHOICE" ]; then
2159 cat "$ABCDETEMPDIR/cddbchoices"
2162 if [ ! -z "$PREVIOUSCHOICE" ] ; then
2163 CDCHOICENUM=$PREVIOUSCHOICE
2166 echo "cddb-choice=$CDCHOICENUM" >> "$ABCDETEMPDIR/status"
2168 echo "Selected: #$CDCHOICENUM ($(grep ^DTITLE= "$ABCDETEMPDIR/cddbread.$CDCHOICENUM" | cut -f2- -d= | tr -d \\r\\n))" >&2
2173 if checkstatus cddb-choice >/dev/null; then :; else
2174 echo "abcde: internal error: cddb-choice not recorded." >&2
2177 CDDBDATA="$ABCDETEMPDIR/cddbread.$(checkstatus cddb-choice)"
2178 echo -n "Edit selected CDDB data? [y/n] (" >&2
2179 if [ "$INTERACTIVE" = "y" ]; then
2180 if [ "$UNKNOWNDISK" = "y" ]; then
2183 [ "$EDITCDDB" != "n" ] && EDITCDDB=y
2192 if [ "$EDITCDDB" = "y" ]; then
2193 CDDBDATAMD5SUM=$($MD5SUM "$CDDBDATA" | cut -d " " -f 1);
2195 # Use the debian sensible-editor wrapper to pick the editor that the
2196 # user has requested via their $EDITOR environment variable
2197 if [ -x "/usr/bin/sensible-editor" ]; then
2198 /usr/bin/sensible-editor "$CDDBDATA"
2199 elif [ -n "$EDITOR" ]; then
2200 if [ -x $(which "${EDITOR%%\ *}") ]; then
2201 # That failed, try to load the preferred editor, starting
2202 # with their EDITOR variable
2203 eval $(echo "$EDITOR") \"$CDDBDATA\"
2205 # If that fails, check for a vi
2206 elif which vi >/dev/null 2>&1; then
2208 elif [ -x /usr/bin/vim ]; then
2209 /usr/bin/vim "$CDDBDATA"
2210 elif [ -x /usr/bin/vi ]; then
2211 /usr/bin/vi "$CDDBDATA"
2212 elif [ -x /bin/vi ]; then
2214 # nano should be on all (modern, i.e., sarge) debian systems
2215 elif which nano >/dev/null 2>&1 ; then
2217 elif [ -x /usr/bin/nano ]; then
2218 /usr/bin/nano "$CDDBDATA"
2219 # mg should be on all OpenBSD systems
2220 elif which mg >/dev/null 2>&1 ; then
2222 elif [ -x /usr/bin/mg ]; then
2223 /usr/bin/mg "$CDDBDATA"
2226 log warning "no editor available. Check your EDITOR environment variable."
2228 # delete editor backup file if it exists
2229 if [ -w "$CDDBDATA~" ]; then
2234 # Some heuristics first. Look at Disc Title, and if it starts with
2235 # "Various", then we'll assume Various Artists
2236 if [ "$(grep ^DTITLE= "$CDDBDATA" | cut -f2- -d= | egrep -ci '^(various|soundtrack|varios|sonora|ost)')" != "0" ]; then
2237 echo "Looks like a Multi-Artist CD" >&2
2240 echo -n "Is the CD multi-artist? [y/n] (n): " >&2
2241 if [ "$INTERACTIVE" = "y" ]; then
2248 if [ "$VARIOUSARTISTS" = "y" ] && [ ! "$ONETRACK" = "y" ]; then
2251 # Need NUMTRACKS before cddb-tool will return it:
2252 NUMTRACKS=$(egrep '^TTITLE[0-9]+=' "$CDDBDATA" | wc -l)
2253 if [ "$(grep -c "^TTITLE.*\/" "$CDDBDATA")" -gt "$(expr $NUMTRACKS / 2 )" ]; then
2254 # More than 1/2 tracks contain a "/", so guess forward
2256 elif [ "$(grep -c "^TTITLE.*\-" "$CDDBDATA")" -gt "$(expr $NUMTRACKS / 2 )" ]; then
2257 # More than 1/2 contain a "-", so guess forward-dash
2259 elif [ "$(grep -c "^TTITLE.*(.*)" "$CDDBDATA")" -gt "$(expr $NUMTRACKS / 2 )" ]; then
2260 # More than 1/2 contain something in parens, so guess trailing-paren
2264 echo "1) Artist / Title" >&2
2265 echo "2) Artist - Title" >&2
2266 echo "3) Title / Artist" >&2
2267 echo "4) Title - Artist" >&2
2268 echo "5) Artist: Title" >&2
2269 echo "6) Title (Artist)" >&2
2270 echo "7) This is a single-artist CD" >&2
2271 echo -n "Which style of multiple artist entries is it? [1-7] ($DEFAULTSTYLE): " >&2
2272 if [ "$INTERACTIVE" = "y" ]; then
2273 read VARIOUSARTISTSTYLE
2275 echo $DEFAULTSTYLE >&2
2276 VARIOUSARTISTSTYLE=$DEFAULTSTYLE
2278 VARIOUSARTISTSTYLE=$(echo 0$VARIOUSARTISTSTYLE | xargs printf %d)
2279 # If they press Enter, then the default style (0) was chosen
2280 while [ $VARIOUSARTISTSTYLE -lt 0 ] || [ $VARIOUSARTISTSTYLE -gt 7 ]; do
2281 echo "Invalid selection. Please choose a number between 1 and 7."
2282 echo -n "Selection [1-7]: "
2283 read VARIOUSARTISTSTYLE
2284 VARIOUSARTISTSTYLE=$(echo 0$VARIOUSARTISTSTYLE | xargs printf %d)
2286 if [ "$VARIOUSARTISTSTYLE" = "0" ]; then
2287 VARIOUSARTISTSTYLE=$DEFAULTSTYLE
2289 vecho "Selected: $VARIOUSARTISTSTYLE"
2290 case "$VARIOUSARTISTSTYLE" in
2292 VARIOUSARTISTSTYLE=forward
2295 VARIOUSARTISTSTYLE=forward-dash
2298 VARIOUSARTISTSTYLE=reverse
2301 VARIOUSARTISTSTYLE=reverse-dash
2304 VARIOUSARTISTSTYLE=colon
2307 VARIOUSARTISTSTYLE=trailing-paren
2315 echo "variousartists=$VARIOUSARTISTS" >> "$ABCDETEMPDIR/status"
2316 echo "variousartiststyle=$VARIOUSARTISTSTYLE" >> "$ABCDETEMPDIR/status"
2318 if [ "$EDITCDDB" = "y" ] && [ "$UNINTENTIONALLY_ANGER_THE_FREEDB_PEOPLE" = "y" ]; then
2319 if [ "$CDDBDATAMD5SUM" != "" ] && [ "$CDDBDATAMD5SUM" != "$($MD5SUM "$CDDBDATA" | cut -d " " -f 1)" ]; then
2320 # This works but does not have the necessary error checking
2321 # yet. If you are familiar with the CDDB spec
2322 # (see http://www.freedb.org/src/latest/DBFORMAT)
2323 # and can create an error-free entry on your own, then put
2324 # UNINTENTIONALLY_ANGER_THE_FREEDB_PEOPLE=y in your
2325 # abcde.conf to enable it. Put CDDBSUBMIT=email@address in
2326 # your abcde.conf to change the email address submissions are
2329 # submit the modified file, if they want
2330 if [ "$NOSUBMIT" != "y" ]; then
2331 echo -n "Do you want to submit this entry to $CDDBSUBMIT? [y/n] (n): "
2333 while [ "$YESNO" != "y" ] && [ "$YESNO" != "n" ] && [ "$YESNO" != "Y" ] && \
2334 [ "$YESNO" != "N" ] && [ "$YESNO" != "" ]
2336 echo -n 'Invalid selection. Please answer "y" or "n": '
2339 if [ "$YESNO" = "y" ] || [ "$YESNO" = "Y" ]; then
2340 echo -n "Sending..."
2341 $CDDBTOOL send "$CDDBDATA" $CDDBSUBMIT
2348 # User CDDBLOCALPOLICY to find out if we store the file or not...
2349 # Cache edited CDDB entry in the user's cddb dir
2350 if [ "$CDDBCOPYLOCAL" = "y" ]; then
2351 # Make sure the cache directory exists
2352 mkdir -p $CDDBLOCALDIR
2353 cat "$CDDBDATA" | tail -n $(expr $(cat "$CDDBDATA" | wc -l ) - 1 ) > ${CDDBLOCALDIR}/$(echo "$TRACKINFO" | cut -d' ' -f1)
2356 echo "cddb-edit" >> "$ABCDETEMPDIR/status"
2359 # do_cdread [tracknumber]
2360 # do_cdread onetrack [firsttrack] [lasttrack]
2364 # The commands here don't go through run_command because they're never supposed to be silenced
2365 # return codes need to be doublechecked anyway, however
2366 if [ "$1" = "onetrack" ]; then
2367 # FIXME # Add the possibility of grabbing ranges of tracks in onetrack
2368 # FIXME # Until then, we grab the whole CD in one track, no matter what
2370 # We need the first and last track for cdda2wav
2372 LASTTRACK=$(expr $3 + 0)
2373 UTRACKNUM=$FIRSTTRACK
2374 case "$CDROMREADERSYNTAX" in
2375 flac) READTRACKNUMS="$FIRSTTRACK.1-$(($LASTTRACK + 1)).0" ;;
2376 cdparanoia) READTRACKNUMS="$FIRSTTRACK-$LASTTRACK" ;;
2377 cdda2wav) READTRACKNUMS="$FIRSTTRACK+$LASTTRACK" ;;
2378 *) echo "abcde error: $CDROMREADERSYNTAX does not support ONETRACK mode"
2384 CDDBTRACKNUM=$(expr $UTRACKNUM - 1)
2385 if [ "$USEPIPES" = "y" ]; then
2386 TEMPARG="PIPERIPPER_$CDROMREADERSYNTAX"
2387 FILEARG="$( eval echo "\$$TEMPARG" )"
2389 PIPE_MESSAGE="and encoding "
2391 WAVDATA="$ABCDETEMPDIR/track$UTRACKNUM.wav"
2392 case "$CDROMREADERSYNTAX" in
2393 ## FIXME ## Find the cases for dagrab and flac, to avoid exceptions
2395 FILEARG="--output-name=$WAVDATA"
2398 FILEARG="-f $WAVDATA"
2406 if [ "$1" = "onetrack" ]; then
2407 echo "Grabbing ${PIPE_MESSAGE}tracks $UTRACKNUM - $LASTTRACK as one track ..." >&2
2409 if [ -r "$CDDBDATA" ]; then
2410 getcddbinfo TRACKNAME
2411 echo "Grabbing ${PIPE_MESSAGE}track $UTRACKNUM: $TRACKNAME..." >&2
2413 echo "Grabbing ${PIPE_MESSAGE}track $UTRACKNUM..." >&2
2416 case "$CDROMREADERSYNTAX" in
2417 ### FIXME ### use an exception for flac, since it uses -o
2418 ### FIXME ### Shall we just use -o $FILEARG ??
2420 # Avoid problems wit math expressions by unpadding the given UTRACKNUM
2421 STRIPTRACKNUM=$(expr $UTRACKNUM + 0)
2422 nice $READNICE $FLAC -d -f --cue=${READTRACKNUMS:-$STRIPTRACKNUM.1-$(($STRIPTRACKNUM + 1)).0} "$FILEARG" "$CDROM" ;;
2424 nice $READNICE $CDROMREADER -$CDPARANOIACDROMBUS $CDROM ${READTRACKNUMS:-$UTRACKNUM} "$FILEARG" $REDIR ;;
2426 if [ "$OSFLAVOUR" = "OSX" ] ; then
2427 # Hei, we have to unmount the device before running anything like cdda2wav in OSX
2428 disktool -u ${CDROM#/dev/} 0
2429 # Also, in OSX the cdrom device for cdda2wav changes...
2430 CDDA2WAVCDROM="IODVDServices"
2431 elif [ "$OSFLAVOUR" = "FBSD" ] ; then
2432 CDDA2WAVCDROM="$CDROMID"
2434 if [ "$CDROMID" = "" ]; then
2435 CDDA2WAVCDROM="$CDROM"
2437 CDDA2WAVCDROM="$CDROMID"
2440 nice $READNICE $CDROMREADER -D $CDDA2WAVCDROM -t ${READTRACKNUMS:-$UTRACKNUM} "$FILEARG" $REDIR
2442 ## FIXME ## We have an exception for dagrab, since it uses -f
2443 ## FIXME ## Shall we just use -f $FILEARG ??
2444 dagrab) nice $READNICE $CDROMREADER -d $CDROM -v $UTRACKNUM "$FILEARG" $REDIR
2447 # Find the track's mounted path
2448 REALTRACKNUM=$(expr $UTRACKNUM + 0)
2449 FILEPATH=$(mount | grep "$CDROM on" | sed 's/^[^ ]* on \(.*\) (.*/\1/')
2450 FILEPATH=$(find "$FILEPATH" | grep "/$REALTRACKNUM ");
2451 # If the file exists, copy it
2452 if [ -e "$FILEPATH" ] ; then
2453 nice $READNICE $CDROMREADER "$FILEPATH" "$FILEARG" $REDIR
2457 debug) nice $READNICE $CDROMREADER -$CDPARANOIACDROMBUS $CDROM -w $UTRACKNUM-[:1] "$FILEARG" $REDIR
2461 # If we get some error or we get some missing wav
2462 # (as long as we dont use pipes)
2463 if [ "$RETURN" != "0" -o \( ! -s "$WAVDATA" -a X"$USEPIPES" != "Xy" \) ]; then
2464 # Thank goodness errors is only machine-parseable up to the
2465 # first colon, otherwise this woulda sucked
2466 if [ "$RETURN" = "0" -a ! -s "$WAVDATA" ]; then
2467 RETURN=73 # fake a return code as cdparanoia return 0 also on aborted reads
2469 if [ "$USEPIPES" = "y" ]; then
2470 echo "readencodetrack-$UTRACKNUM: $CDROMREADER returned code $RETURN" >> "$ABCDETEMPDIR/errors"
2472 echo "readtrack-$UTRACKNUM: $CDROMREADER returned code $RETURN" >> "$ABCDETEMPDIR/errors"
2476 if [ "$USEPIPES" = "y" ]; then
2477 echo readencodetrack-$UTRACKNUM >> "$ABCDETEMPDIR/status"
2479 echo readtrack-$UTRACKNUM >> "$ABCDETEMPDIR/status"
2481 if [ "$1" = "onetrack" ]; then
2482 echo onetrack >> "$ABCDETEMPDIR/status"
2488 # No values accepted, only uses env variables
2491 if "$CDSPEED" "$CDSPEEDOPTS" "$CDSPEEDVALUE" >/dev/null ; then
2492 vecho "Setting CD speed to ${CDSPEEDVALUE}x"
2494 echo "abcde: unable to set the device speed" >&2
2500 # vecho outputs a message if EXTRAVERBOSE is selected
2503 if [ x"$EXTRAVERBOSE" != "x" ]; then
2505 warning) shift ; log warning "$@" ;;
2513 # decho outputs a debug message if DEBUG is selected
2516 if [ x"$DEBUG" != "x" ]; then
2517 if echo $1 | grep "^\[" > /dev/null 2>&1 ; then
2518 DEBUGECHO=$(echo "$@" | tr -d '[]')
2519 echo "[DEBUG] $DEBUGECHO: `eval echo \\$${DEBUGECHO}`"
2526 # User-redefinable functions
2527 # Custom filename munging:
2530 #echo "$@" | sed s,:,\ -,g | tr \ /\* __+ | tr -d \'\"\?\[:cntrl:\]
2531 echo "$@" | sed s,:,\ -,g | tr \ / __ | tr -d \'\"\?\[:cntrl:\]
2534 # Custom genre munging:
2537 echo $CDGENRE | tr "[:upper:]" "[:lower:]"
2541 # Empty pre_read function, to be defined in the configuration file.
2548 # Empty post_read function, to be defined in the configuration file.
2554 ###############################################################################
2557 # Start of execution
2558 ###############################################################################
2563 # Defaults to FreeDB, but a python musicbrainz can be used
2565 CDDBURL="http://freedb.freedb.org/~cddb/cddb.cgi"
2566 CDDBSUBMIT=freedb-submit@freedb.org
2568 HELLOINFO="$(whoami)@$(hostname)"
2570 CDDBLOCALPOLICY="always"
2571 CDDBLOCALRECURSIVE="y"
2572 CDDBLOCALDIR="$HOME/.cddb"
2575 # List of fields we parse and show during the CDDB parsing...
2576 SHOWCDDBFIELDS="year,genre"
2579 #CDROMREADERSYNTAX=cdparanoia
2580 ENCODERSYNTAX=default
2582 MP3ENCODERSYNTAX=default
2583 OGGENCODERSYNTAX=default
2584 FLACENCODERSYNTAX=default
2585 SPEEXENCODERSYNTAX=default
2586 MPPENCODERSYNTAX=default
2587 AACENCODERSYNTAX=default
2588 NORMALIZERSYNTAX=default
2589 CUEREADERSYNTAX=default
2591 OUTPUTFORMAT='${ARTISTFILE}-${ALBUMFILE}/${TRACKNUM}.${TRACKFILE}'
2592 # Use the following VAOUTPUTFORMAT to revert to 2.0.x VA format:
2593 #VAOUTPUTFORMAT=${OUTPUTFORMAT}
2594 VAOUTPUTFORMAT='Various-${ALBUMFILE}/${TRACKNUM}.${ARTISTFILE}-${TRACKFILE}'
2595 ONETRACKOUTPUTFORMAT='${ARTISTFILE}-${ALBUMFILE}/${ALBUMFILE}'
2596 VAONETRACKOUTPUTFORMAT='Various-${ALBUMFILE}/${ALBUMFILE}'
2597 PLAYLISTFORMAT='${ARTISTFILE}-${ALBUMFILE}.${OUTPUT}.m3u'
2598 PLAYLISTDATAPREFIX=''
2599 VAPLAYLISTFORMAT='${ARTISTFILE}-${ALBUMFILE}.${OUTPUT}.m3u'
2600 VAPLAYLISTDATAPREFIX=''
2608 VARIOUSARTISTSTYLE=forward
2614 # If using scsi devices, cdda2wav needs a CDROMID, instead of a device node
2615 # i.e. CDROMID="1,0,0"
2617 # If we are using the IDE bus, we need CDPARANOIACDROMBUS defined as "d"
2618 # If we are using the ide-scsi emulation layer, we need to define a "g"
2619 CDPARANOIACDROMBUS="d"
2621 # program paths - defaults to checking your $PATH
2628 XINGMP3ENC=xingmp3enc
2645 CDPARANOIA=cdparanoia
2651 MUSICBRAINZ=musicbrainz-get-tracks
2655 VORBISCOMMENT=vorbiscomment
2657 NORMALIZE=normalize-audio
2659 VORBISGAIN=vorbisgain
2665 CUE2DISCID=cue2discid
2667 # Options for programs called from abcde
2702 VORBISCOMMENTOPTS="-R"
2703 METAFLACOPTS="--no-utf8-convert"
2706 # Default to one process if -j isn't specified
2709 # List of actions to perform - by default, run to completion
2710 ACTIONS=cddb,read,encode,tag,move,clean
2712 # This option is basicaly for Debian package dependencies:
2713 # List of prefered outputs - by default, run with whatever we have in the path
2714 DEFAULT_OUTPUT_BINARIES=vorbis:oggenc,flac:flac,mp3:lame,mp3:bladeenc,spx:speex
2716 # List of prefered cdromreaders - by default, run whichever we have in the path
2717 DEFAULT_CDROMREADERS="cdparanoia cdda2wav"
2719 # Asume fetch if under FreeBSD. curl is used for Mac OS X. wget is used for
2720 # Linux/OpenBSD. ftp is user for NetBSD.
2721 # Let's use these checkings to determine the OS flavour, which will be used
2723 if [ X$(uname) = "XFreeBSD" ] ; then
2728 elif [ X$(uname) = "XDarwin" ] ; then
2731 # We should have disktool in OSX, but let's be sure...
2733 CDROMREADERSYNTAX=cddafs
2734 elif [ X$(uname) = "XOpenBSD" ] ; then
2738 elif [ X$(uname) = "XNetBSD" ] ; then
2742 elif [ X$(uname) = "SunOS" ] ; then
2750 # If CDDBAVAIL is set to n, no CDDB read is done
2751 # If USEID3 is set to n, no ID3 tagging is done
2756 if [ -z "$OUTPUTDIR" ]; then
2760 if [ -z "$WAVOUTPUTDIR" ]; then
2761 WAVOUTPUTDIR="$OUTPUTDIR"
2764 # Load system defaults
2765 if [ -r /etc/abcde.conf ]; then
2768 # Load user preference defaults
2769 if [ -r $HOME/.abcde.conf ]; then
2773 # By this time, we need some HTTPGETOPTS already defined.
2774 # If the user has defined a non-default HTTPGET method, we should not be empty.
2776 if [ "$HTTPGETOPTS" = "" ] ; then
2778 wget) HTTPGETOPTS="-q -O -";;
2779 curl) HTTPGETOPTS="-f -s";;
2780 fetch)HTTPGETOPTS="-q -o -";;
2781 ftp) HTTPGETOPTS="-q -o -";;
2782 *) log warning "HTTPGET in non-standard and HTTPGETOPTS are not defined." ;;
2786 # If the CDROM has not been set yet, find a suitable one.
2787 # If this is a devfs system, default to /dev/cdroms/cdrom0
2788 # instead of /dev/cdrom
2789 if [ "$CDROM" = "" ] ; then
2790 if [ -e /dev/cdroms/cdrom0 ]; then
2791 CDROM=/dev/cdroms/cdrom0
2792 elif [ -e /dev/cdrom ]; then
2794 elif [ -e /dev/cd0c ]; then
2796 elif [ -e /dev/acd0c ]; then
2798 elif [ -e /dev/disk1 ]; then
2803 # Parse command line options
2804 #while getopts 1a:bc:C:d:Dehj:klLmMnNo:pPr:Rs:S:t:T:vVxw:W: opt ; do
2805 while getopts 1a:bBc:C:d:Defghj:klLmMnNo:pPr:s:S:t:T:uvVxw:W:z opt ; do
2808 a) ACTIONS="$OPTARG" ;;
2809 A) EXPACTIONS="$OPTARG" ;;
2811 B) NOBATCHREPLAYGAIN=y ;;
2812 c) if [ -e "$OPTARG" ] ; then . "$OPTARG" ; else log error "config file \"$OPTARG\" cannot be found." ; exit 1 ; fi ;;
2813 C) DISCID="$( echo ${OPTARG#abcde.} | tr -d /)" ;;
2814 d) CDROM="$OPTARG" ;;
2816 e) ERASEENCODEDSTATUS=y ;;
2818 e) ERASEENCODEDSTATUS=y ;;
2819 E) ENCODING="$OPTARG" ;;
2823 j) MAXPROCS="$OPTARG" ;;
2826 L) CDDBUSELOCAL=y ;;
2831 o) OUTPUTTYPE="$OPTARG" ;;
2834 r) REMOTEHOSTS="$OPTARG" ;;
2835 R) CDDBLOCALRECURSIVE=y ;;
2836 s) SHOWCDDBFIELDS="$OPTARG" ;;
2837 S) CDSPEEDVALUE="$OPTARG" ;;
2838 t) STARTTRACKNUMBER="$OPTARG" ;;
2839 T) STARTTRACKNUMBER="$OPTARG" ; STARTTRACKNUMBERTAG="y" ;;
2843 echo "This is abcde v$VERSION."
2844 echo "Usage: abcde [options] [tracks]"
2845 echo "abcde -h for extra help"
2848 V) EXTRAVERBOSE="y" ;;
2850 w) COMMENT="$OPTARG" ;;
2851 W) if echo $OPTARG | grep "[[:digit:]]" > /dev/null 2>&1 ; then
2852 STARTTRACKNUMBER="${OPTARG}01" ; STARTTRACKNUMBERTAG="y" ; COMMENT="CD${OPTARG}"
2854 log error "argument of -W must be integer"
2858 z) DEBUG=y ; CDROMREADERSYNTAX=debug ; EJECTCD="n" ;;
2863 shift $(($OPTIND - 1))
2865 # Here it comes the worse part of the whole thing. From here until we start
2866 # ripping, we have a mixture of sanity checks, verifications, default settigs
2867 # and other crazy stuff that interdepends, but hey, someone has to do it.
2869 # If the user specified a flac file, then switch to special flac mode
2870 if echo "$CDROM" | grep -i '.flac$' > /dev/null 2>&1 ; then
2871 if [ ! -f "$CDROM" ]; then
2872 log error "the defined file for FLAC ripping cannot be found" >&2
2875 vecho warning "switching to flac CDROMREADERSYNTAX..."
2876 CDROMREADERSYNTAX=flac
2877 # Added a need on CUE2DISCID until we manage to convert the python script to bash.
2883 # If the user provided a DISCID, disable eject
2884 if [ -n "$DISCID" ] || [ "$CDROMREADERSYNTAX" = "flac" ]; then EJECTCD=n ; fi
2886 # Check the available cd rippers in the system, from the ones we know.
2887 if [ "$CDROMREADERSYNTAX" = "" ]; then
2888 for DEFAULT_CDROMREADER in $DEFAULT_CDROMREADERS; do
2889 if new_checkexec $DEFAULT_CDROMREADER; then
2890 CDROMREADERSYNTAX=$DEFAULT_CDROMREADER
2894 if [ "$CDROMREADERSYNTAX" = "" ]; then
2895 log error "no cdreader found in your PATH"
2896 log error "hints: are all dependencies installed? has the \$PATH been modified?"
2901 # Decide if we can continue.
2902 if [ "$ONETRACK" = "y" ]; then
2903 # FIXME # remove check as soon as we find out about the other readers
2904 case "$CDROMREADERSYNTAX" in
2908 *) log error "$CDROMREADERSYNTAX does not support ONETRACK mode"
2911 if [ "$BATCHNORM" = "y" ]; then
2912 log warning "BATCHNORM mode is not compatible with ONETRACK mode. Disabling..."
2915 if [ "$NOGAP" = "y" ]; then
2916 log warning "NOGAP mode is not compatible with ONETRACK mode. Disabling..."
2919 # It does not matter how many tracks we want. In ONETRACK mode we grab them all
2920 # FIXME # allow ranges of tracks to be selected for onetrack ripping
2921 if [ $# -gt 0 ]; then
2922 log warning "ONETRACK mode selected, grabbing all tracks..."
2925 while [ $# -gt 0 ]; do
2926 # Range parsing code courtesy of Vincent Ho
2927 RSTART=$(echo $1 | cut -f1 -d-)
2928 REND=$(echo $1 | cut -f2 -d-)
2929 if [ "$RSTART" = "$REND" ]; then
2932 NEWTRACKS=$(f_seq_line $RSTART $REND)
2934 TRACKQUEUE=$(echo "$TRACKQUEUE" "$NEWTRACKS")
2939 # List of valid actions: cddb,read,normalize,encode,tag,move,playlist,clean
2940 # List of experimental actions: retag,transcode
2942 # Determine what actions are to be done from $ACTIONS and set the
2943 # following environment variables for them:
2956 for ACTION in $(echo $ACTIONS | tr , \ )
2959 default) DOCDDB=y; DOREAD=y; DOENCODE=y; DOTAG=y; DOMOVE=y; DOCLEAN=y;;
2962 normalize) DONORMALIZE=y; DOREAD=y;;
2963 # preprocess) DOPREPROCESS=y; DOREAD=y;;
2964 encode) DOENCODE=y; DOREAD=y;;
2965 # postprocess) DOPREPROCESS=y; DOENCODE=y; DOREAD=y;;
2966 tag) DOTAG=y; DOREAD=y; DOENCODE=y; DOCDDB=y;;
2967 move) DOMOVE=y; DOTAG=y; DOREAD=y; DOENCODE=y; DOCDDB=y;;
2968 replaygain) DOCDDB=y; DOREAD=y; DOENCODE=y; DOTAG=y; DOMOVE=y; DOREPLAYGAIN=y;;
2969 playlist) DOCDDB=y; DOPLAYLIST=y;;
2974 if [ "$DONORMALIZE" = "y" ] && [ "$DOREPLAYGAIN" = "y" ]; then
2975 # FIXME # should we abort on error or just inform the user?
2976 log warning "selected both normalize and replaygain actions"
2979 for SHOWCDDBFIELD in $(echo $SHOWCDDBFIELDS | tr , \ ); do
2980 case $SHOWCDDBFIELD in
2981 y*|Y*) SHOWCDDBYEAR="y";;
2982 g*|G*) SHOWCDDBGENRE="y";;
2987 # At this point a CDROM has to be defined, so we check it exists.
2988 if [ X"$CDROM" != "X" ] ; then
2989 if [ "$CDROMREADERSYNTAX" = "cdda2wav" ] && [ "$NEEDCDROMID" = "y" ] ; then
2990 if [ "$OSFLAVOUR" = "FBSD" ]; then
2991 if echo "$CDROMID" | grep "^[0-9],[0-9],[0-9]$" >/dev/null 2>&1 ; then :; else
2992 log error "CDROMID not in the right format for $CDROMREADERSYNTAX"
2993 log error "Use \"cdrecord -scanbus\" to obtain a adecuate ID an set CDROMID accordingly"
2997 elif [ ! -e "$CDROM" -a X"$DOREAD" = "Xy" ]; then
2998 log error "CDROM device cannot be found."
3001 # avoid processing if we are not going to hit the CDROM.
3002 elif [ X"$DOREAD" = "Xy" ]; then
3003 log error "CDROM has not been defined or cannot be found"
3007 # USEPIPES pre-tests, before we get into more serious stuff
3008 # Not compatible with:
3009 # - multiple outputs
3011 # - lowdisk algorithm
3013 if [ X"$USEPIPES" = "Xy" ]; then
3014 if [ $(echo "$OUTPUTTYPE" | tr , \ | wc -w ) -gt 1 ]; then
3015 log error "Unix pipes not compatible with multiple outputs"
3018 if [ X"$DONORMALIZE" = "Xy" ]; then
3019 log error "Unix pipes not compatible with normalizer"
3020 # FIXME # Do we need to exit or shall we just disable the mode?
3023 if [ X"$BATCHNORM" = "Xy" ]; then
3024 log error "Unix pipes not compatible with BATCHNORM encoding"
3027 if [ X"$NOGAP" = "Xy" ]; then
3028 log error "Unix pipes not compatible with NOGAP encoding"
3031 if [ X"$DOENCODE" = "Xn" ]; then
3032 vecho warning "Disabling Unix pipes since we are not encoding!"
3035 if [ X"$LOWDISK" = "Xy" ]; then
3036 log error "Unix pipes not compatible with lowdisk algorithm"
3041 # LOWDISK pre-tests, before we get into more problematic stuff
3042 # Not compatible with anything that needs all the files in the hard disc:
3045 if [ X"$LOWDISK" = "Xy" ]; then
3046 if [ X"$BATCHNORM" = "Xy" ]; then
3047 log error "Unix pipes not compatible with BATCHNORM encoding"
3050 if [ X"$NOGAP" = "Xy" ]; then
3051 log error "Unix pipes not compatible with NOGAP encoding"
3056 # BATCHNORM pre-tests, before we get into serious problems
3057 # Not compatible with
3058 if [ "$BATCHNORM" = "y" ] && [ "$DONORMALIZE" = "n" ]; then
3059 vecho warning "Disabling BATCHNORM since we are not normalizing!"
3063 # Check the encoding format from the ones available in the system, if nothing has been configured in the system.
3064 if [ X"$OUTPUTTYPE" = "X" ]; then
3065 for DEFAULT_OUTPUT in $( echo "$DEFAULT_OUTPUT_BINARIES" | tr , \ ); do
3066 DEFAULT_OUTPUT_FORMAT="$(echo $DEFAULT_OUTPUT | cut -d ":" -f 1)"
3067 DEFAULT_OUTPUT_BINARY="$(echo $DEFAULT_OUTPUT | cut -d ":" -f 2)"
3068 if [ -x $(which $DEFAULT_OUTPUT_BINARY) ] ; then
3069 OUTPUTTYPE=$DEFAULT_OUTPUT_FORMAT
3070 vecho "No default output type defined. Autoselecting $OUTPUTTYPE..." >&2
3074 if [ X"$OUTPUTTYPE" = "X" ]; then
3075 log error "no encoder found in the PATH"
3076 log error "hints: are all dependencies installed? has the \$PATH been modified?"
3081 # Decide which CDROM reader we're gonna use
3082 case "$CDROMREADERSYNTAX" in
3084 CDROMREADER="$CDPARANOIA"
3085 CDROMREADEROPTS="$CDPARANOIAOPTS"
3088 CDROMREADER="$CDDA2WAV"
3089 CDROMREADEROPTS="$CDDA2WAVOPTS"
3092 CDROMREADER="$DAGRAB"
3093 CDROMREADEROPTS="$DAGRABOPTS"
3096 CDROMREADER="$CDDAFS"
3097 CDROMREADEROPTS="$CDDAFSOPTS"
3101 CDROMREADEROPTS="$FLACOPTS"
3105 # There's only one normalize...
3106 case "$NORMALIZERSYNTAX" in
3108 NORMALIZER="$NORMALIZE"
3109 NORMALIZEROPTS="$NORMALIZEOPTS"
3113 # Allow -o OUTPUT(1):OPTIONS(1),...,OUTPUT(N):OPTIONS(N) mode of operation
3114 if echo "$OUTPUTTYPE" | grep ":" > /dev/null 2>&1 ; then
3115 for OUTPUT in "$(echo "$OUTPUTTYPE" | tr \ \|| tr , \ | tr \| \ )"; do
3117 vorbis:*|ogg:*) OGGENCODEROPTSCLI="$( echo $OUTPUT | cut -d: -f2- )" ;;
3118 mp3:*) MP3ENCODEROPTSCLI="$( echo $OUTPUT | cut -d: -f2- )" ;;
3119 flac:*) FLACENCODEROPTSCLI="$( echo $OUTPUT | cut -d: -f2- )" ;;
3120 spx:*) SPEEXENCODEROPTSCLI="$( echo $OUTPUT | cut -d: -f2- )" ;;
3121 mpc:*) MPPENCODEROPTSCLI="$( echo $OUTPUT | cut -d: -f2- )" ;;
3122 m4a:*) AACENCODEROPTSCLI="$( echo $OUTPUT | cut -d: -f2- )" ;;
3125 for OUTPUT in "$(echo "$OUTPUTTYPE" | tr , \ )"; do
3126 TEMPOUTPUT=$( echo "$OUTPUT" | cut -d: -f1 )
3127 TEMPOUTPUTTYPE="${TEMPOUTPUTTYPE:+$TEMPOUTPUTTYPE,}$TEMPOUTPUT"
3129 OUTPUTTYPE="$TEMPOUTPUTTYPE"
3132 # If nothing has been specified, use oggenc for oggs and lame for mp3s and flac
3133 # for flacs and speexenc for speex and mppenc for mpps and faac for m4as
3135 # Getting ready for multiple output changes
3136 for OUTPUT in $(echo $OUTPUTTYPE | tr , \ )
3140 [ "$OGGENCODERSYNTAX" = "default" ] && OGGENCODERSYNTAX=oggenc
3141 [ "$DOTAG" = "y" ] && NEEDCOMMENTER=y
3142 [ "$DOREPLAYGAIN" = "y" ] && NEEDVORBISGAIN=y
3143 OGGOUTPUTCONTAINER=ogg
3146 [ "$MP3ENCODERSYNTAX" = "default" ] && MP3ENCODERSYNTAX=lame
3147 [ "$DOTAG" = "y" ] && NEEDTAGGER=y
3148 [ "$DOREPLAYGAIN" = "y" ] && NEEDMP3GAIN=y
3151 [ "$FLACENCODERSYNTAX" = "default" ] && FLACENCODERSYNTAX=flac
3152 [ "$DOTAG" = "y" ] && NEEDMETAFLAC=y
3153 [ "$DOREPLAYGAIN" = "y" ] && NEEDMETAFLAC=y
3154 [ "$ONETRACK" = "y" ] && [ "$MAKECUEFILE" = "y" ] && NEEDMETAFLAC=y
3157 [ "$SPEEXENCODERSYNTAX" = "default" ] && SPEEXENCODERSYNTAX=speexenc
3158 # [ "$DOREPLAYGAIN" = "y" ] &&
3161 [ "$MPPENCODERSYNTAX" = "default" ] && MPPENCODERSYNTAX=mppenc
3162 [ "$DOREPLAYGAIN" = "y" ] && NEEDMPPGAIN=y
3165 [ "$AACENCODERSYNTAX" = "default" ] && AACENCODERSYNTAX=faac
3168 if [ "$KEEPWAVS" = "y" ]; then
3169 vecho "Setting the KEEPWAVS option, since the resulting wav files were requested..."
3173 *) log error "Invalid OUTPUTTYPE defined"
3179 # decide which encoder
3180 case "$MP3ENCODERSYNTAX" in
3182 MP3ENCODEROPTS="${MP3ENCODEROPTSCLI:-$LAMEOPTS}"
3186 MP3ENCODEROPTS="${MP3ENCODEROPTSCLI:-$TOOLAMEOPTS}"
3187 MP3ENCODER="$TOOLAME"
3190 MP3ENCODEROPTS="${MP3ENCODEROPTSCLI:-$GOGOOPTS}"
3194 MP3ENCODEROPTS="${MP3ENCODEROPTSCLI:-$BLADEENCOPTS}"
3195 MP3ENCODER="$BLADEENC"
3198 MP3ENCODEROPTS="${MP3ENCODEROPTSCLI:-$L3ENCOPTS}"
3202 MP3ENCODEROPTS="${MP3ENCODEROPTSCLI:-$XINGMP3ENCOPTS}"
3203 MP3ENCODER="$XINGMP3ENC"
3206 MP3ENCODEROPTS="${MP3ENCODEROPTSCLI:-$MP3ENCOPTS}"
3207 MP3ENCODER="$MP3ENC"