2 # Copyright (c) 1998-2001 Robert Woodcock <rcw@debian.org>
3 # Copyright (c) 2003-2006 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 along
8 # with this program; if not, write to the Free Software Foundation, Inc.,
9 # 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 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 [ "$ONETRACK" = "y" ]; then
457 if [ "$VARIOUSARTISTS" = "y" ]; then
458 OUTPUTFILE="$(eval echo \""$VAONETRACKOUTPUTFORMAT"\")"
460 OUTPUTFILE="$(eval echo \""$ONETRACKOUTPUTFORMAT"\")"
463 if [ "$VARIOUSARTISTS" = "y" ]; then
464 OUTPUTFILE="$(eval echo \""$VAOUTPUTFORMAT"\")"
466 OUTPUTFILE="$(eval echo \""$OUTPUTFORMAT"\")"
469 OUTPUTFILES[$REPLAYINDEX]="$OUTPUTDIR/$OUTPUTFILE.$OUTPUT"
470 (( REPLAYINDEX = $REPLAYINDEX + 1 ))
474 run_command replaygain-flac $METAFLAC --add-replay-gain "${OUTPUTFILES[@]}"
477 run_command replaygain-vorbis $VORBISGAIN --album "${OUTPUTFILES[@]}"
480 run_command replaygain-mp3 $MP3GAIN -a "${OUTPUTFILES[@]}"
483 run_command replaygain-mpc $MPPGAIN --auto "${OUTPUTFILES[@]}"
488 if checkerrors "replaygain-.{3,6}"; then :; else
489 run_command replaygain true
494 # This code splits the a Various Artist track name from one of the following
497 # forward: Artist / Track
498 # forward-dash: Artist - Track
499 # reverse: Track / Artist
500 # reverse-dash: Track - Artist
501 # colon: Artist: Track
502 # trailing-paren: Artist (Track)
505 # VARIOUSARTISTS, VARIOUSARTISTSTYLE, TRACKNAME, TRACKARTIST
508 if [ "$VARIOUSARTISTS" = "y" ] && [ ! "$ONETRACK" = "y" ]; then
509 case "$VARIOUSARTISTSTYLE" in
511 DTITLEARTIST="$(echo "$TRACKNAME" | sed 's- / -~-g')"
512 TRACKARTIST="$(echo "$DTITLEARTIST" | cut -f1 -d~)"
513 TRACKNAME="$(echo "$DTITLEARTIST" | cut -f2 -d~)"
516 DTITLEARTIST="$(echo "$TRACKNAME" | sed 's, - ,~,g')"
517 TRACKARTIST="$(echo "$DTITLEARTIST" | cut -f1 -d~)"
518 TRACKNAME="$(echo "$DTITLEARTIST" | cut -f2 -d~)"
521 DTITLEARTIST="$(echo "$TRACKNAME" | sed 's- / -~-g')"
522 TRACKARTIST="$(echo "$DTITLEARTIST" | cut -f2 -d~)"
523 TRACKNAME="$(echo "$DTITLEARTIST" | cut -f1 -d~)"
526 DTITLEARTIST="$(echo "$TRACKNAME" | sed 's, - ,~,g')"
527 TRACKARTIST="$(echo "$DTITLEARTIST" | cut -f2 -d~)"
528 TRACKNAME="$(echo "$DTITLEARTIST" | cut -f1 -d~)"
531 DTITLEARTIST="$(echo "$TRACKNAME" | sed 's-: -~-g')"
532 TRACKARTIST="$(echo "$DTITLEARTIST" | cut -f1 -d~)"
533 TRACKNAME="$(echo "$DTITLEARTIST" | cut -f2 -d~)"
536 DTITLEARTIST="$(echo "$TRACKNAME" | sed 's,^\(.*\) (\(.*\)),\1~\2,')"
537 TRACKARTIST="$(echo "$DTITLEARTIST" | cut -f2 -d~)"
538 TRACKNAME="$(echo "$DTITLEARTIST" | cut -f1 -d~)"
541 elif [ "$VARIOUSARTISTS" = "y" ] && [ "$ONETRACK" = "y" ]; then
542 TRACKARTIST="Various"
544 TRACKARTIST="$DARTIST"
549 local genre=$(echo "${@}" | tr '[A-Z]' '[a-z]')
553 "classic rock") id=1 ;;
571 "industrial") id=19 ;;
572 "alternative") id=20 ;;
574 "death metal") id=22 ;;
576 "soundtrack") id=24 ;;
577 "euro-techno") id=25 ;;
581 "jazz+funk") id=29 ;;
584 "classical") id=32 ;;
585 "instrumental") id=33 ;;
589 "sound clip") id=37 ;;
592 "alt. rock") id=40 ;;
597 "meditative") id=45 ;;
598 "instrum. pop") id=46 ;;
599 "instrum. rock") id=47 ;;
603 "techno-indust.") id=51 ;;
604 "electronic") id=52 ;;
606 "eurodance") id=54 ;;
608 "southern rock") id=56 ;;
613 "christian rap") id=61 ;;
614 "pop/funk"|"pop / funk") id=62 ;;
616 "native american") id=64 ;;
619 "psychadelic") id=67 ;;
621 "showtunes") id=69 ;;
625 "acid punk") id=73 ;;
626 "acid jazz") id=74 ;;
630 "rock & roll") id=78 ;;
631 "hard rock") id=79 ;;
633 "folk/rock") id=81 ;;
634 "national folk") id=82 ;;
641 "bluegrass") id=89 ;;
642 "avantgarde") id=90 ;;
643 "gothic rock") id=91 ;;
644 "progress. rock") id=92 ;;
645 "psychadel. rock") id=93 ;;
646 "symphonic rock") id=94 ;;
647 "slow rock") id=95 ;;
650 "easy listening") id=98 ;;
656 "chamber music") id=104 ;;
658 "symphony") id=106 ;;
659 "booty bass") id=107 ;;
661 "porn groove") id=109 ;;
663 "slow jam") id=111 ;;
667 "folklore") id=115 ;;
669 "power ballad") id=117 ;;
670 "rhythmic soul") id=118 ;;
671 "freestyle") id=119 ;;
673 "punk rock") id=121 ;;
674 "drum solo") id=122 ;;
675 "a capella") id=123 ;;
676 "euro-house") id=124 ;;
677 "dance hall") id=125 ;;
679 "drum & bass") id=127 ;;
680 "club-house") id=128 ;;
681 "hardcore") id=129 ;;
685 "negerpunk") id=133 ;;
686 "polsk punk") id=134 ;;
688 "christian gangsta rap") id=136 ;;
689 "heavy metal") id=137 ;;
690 "black metal") id=138 ;;
691 "crossover") id=139 ;;
692 "contemporary christian")id=140 ;;
693 "christian rock") id=141 ;;
694 "merengue") id=142 ;;
696 "thrash metal") id=144 ;;
699 "synthpop") id=147 ;;
700 "rock/pop"|"rock / pop") id=148 ;;
707 # do_tag [tracknumber]
708 # id3 tags a filename
710 # TRACKS, TRACKNAME, TRACKARTIST, TAGGER, TAGGEROPTS, VORBISCOMMENT, METAFLAC,
711 # COMMENT, DALBUM, DARTIST, CDYEAR, CDGENRE (and temporarily) ID3TAGV
714 COMMENTOUTPUT="$(eval echo ${COMMENT})"
715 CDDBDISCID=$(echo $TRACKINFO | cut -d' ' -f1)
716 run_command '' echo "Tagging track $1 of $TRACKS: $TRACKNAME..."
717 # If we want to start the tracks with a given number, we need to modify the
718 # TRACKNUM value before evaluation
719 if [ -n "$STARTTRACKNUMBERTAG" ] ; then
722 for OUTPUT in $(echo $OUTPUTTYPE | tr , \ )
726 # id3v2 v0.1.9 claims to have solved the -c bug, so we merge both id3 and id3v2
727 GENREID=$(do_getgenreid "${CDGENRE}")
732 # FIXME # track numbers in mp3 come with 1/10, so we cannot
733 # happily substitute them with $TRACKNUM
734 run_command tagtrack-$OUTPUT-$1 $TAGGER $TAGGEROPTS \
735 --comment=::"$COMMENTOUTPUT" -A "$DALBUM" \
736 -a "$TRACKARTIST" -t "$TRACKNAME" -Y "$CDYEAR" \
737 -G "$GENREID" -n "${TRACKNUM:-$1}" "${TRACKNUM:+-N $TRACKS}" \
738 "${ENCODING:+--set-encoding=$ENCODING}" \
739 "$ABCDETEMPDIR/track$1.$OUTPUT"
741 # FIXME # Still not activated...
743 run_command tagtrack-$OUTPUT-$1 $TAGGER $TAGGEROPTS -c "$COMMENTOUTPUT" \
744 -a "$DALBUM" -n "$TRACKARTIST" -s "$TRACKNAME" -y "$CDYEAR" \
745 -g "$GENREID" -k "${TRACKNUM:-$1}" \
746 "$ABCDETEMPDIR/track$1.$OUTPUT"
749 # FIXME # track numbers in mp3 come with 1/10, so we cannot
750 # happily substitute them with $TRACKNUM
751 run_command tagtrack-$OUTPUT-$1 $TAGGER $TAGGEROPTS -c "$COMMENTOUTPUT" \
752 -A "$DALBUM" -a "$TRACKARTIST" -t "$TRACKNAME" -y "$CDYEAR" \
753 -g "$GENREID" -T "${TRACKNUM:-$1/$TRACKS}" \
754 "$ABCDETEMPDIR/track$1.$OUTPUT"
759 case "$OGGENCODERSYNTAX" in
761 # vorbiscomment can't do in-place modification, mv the file first
762 if [ -f "$ABCDETEMPDIR/track$1.$OGGOUTPUTCONTAINER" -a ! -f "$ABCDETEMPDIR/track$1.uncommented.$OGGOUTPUTCONTAINER" ]; then
763 mv "$ABCDETEMPDIR/track$1.$OGGOUTPUTCONTAINER" "$ABCDETEMPDIR/track$1.uncommented.$OGGOUTPUTCONTAINER"
766 # These are from http://www.xiph.org/ogg/vorbis/doc/v-comment.html
767 echo ARTIST="$TRACKARTIST"
769 echo TITLE="$TRACKNAME"
770 if [ -n "$CDYEAR" ]; then
773 if [ -n "$CDGENRE" ]; then
774 echo GENRE="$CDGENRE"
776 echo TRACKNUMBER=${TRACKNUM:-$1}
777 echo CDDB=$CDDBDISCID
778 if [ "$(eval echo ${COMMENT})" != "" ]; then
779 case "$COMMENTOUTPUT" in
780 *=*) echo "$COMMENTOUTPUT";;
781 *) echo COMMENT="$COMMENTOUTPUT";;
784 ) | run_command tagtrack-$OUTPUT-$1 $VORBISCOMMENT $VORBISCOMMENTOPTS -w \
785 "$ABCDETEMPDIR/track$1.uncommented.$OGGOUTPUTCONTAINER" "$ABCDETEMPDIR/track$1.$OGGOUTPUTCONTAINER"
786 # Doublecheck that the commented file was created successfully before wiping the original
787 if [ -f "$ABCDETEMPDIR/track$1.$OGGOUTPUTCONTAINER" ]; then
788 rm -f "$ABCDETEMPDIR/track$1.uncommented.$OGGOUTPUTCONTAINER"
790 mv "$ABCDETEMPDIR/track$1.uncommented.$OGGOUTPUTCONTAINER" "$ABCDETEMPDIR/track$1.$OGGOUTPUTCONTAINER"
797 echo ARTIST="$TRACKARTIST"
799 echo TITLE="$TRACKNAME"
800 if [ -n "$CDYEAR" ]; then
803 if [ -n "$CDGENRE" ]; then
804 echo GENRE="$CDGENRE"
806 echo TRACKNUMBER="${TRACKNUM:-$1}"
807 echo CDDB="$CDDBDISCID"
808 if [ "$(eval echo ${COMMENT})" != "" ]; then
809 case "$COMMENTOUTPUT" in
810 *=*) echo "$COMMENTOUTPUT";;
811 *) echo COMMENT="$COMMENTOUTPUT";;
814 ) | run_command tagtrack-$OUTPUT-$1 $METAFLAC $METAFLACOPTS ${IMPORTCUESHEET:+--import-cuesheet-from="$ABCDETEMPDIR/$CUEFILE"} --import-tags-from=- "$ABCDETEMPDIR/track$1.$FLACOUTPUTCONTAINER"
817 run_command tagtrack-$OUTPUT-$1 true
820 run_command tagtrack-$OUTPUT-$1 true
823 run_command tagtrack-$OUTPUT-$1 true
826 run_command tagtrack-$OUTPUT-$1 true
830 if checkerrors "tagtrack-(.{3,6})-$1"; then :; else
831 run_command tagtrack-$1 true
838 # OUTPUTTYPE, {FOO}ENCODERSYNTAX, ENCNICE, ENCODER, ENCODEROPTS
841 # The commands here don't go through run_command because they're never supposed to be silenced
842 echo "Encoding gapless MP3 tracks: $TRACKQUEUE"
843 for OUTPUT in $(echo $OUTPUTTYPE | tr , \ )
847 case "$MP3ENCODERSYNTAX" in
852 for UTRACKNUM in $TRACKQUEUE
854 TRACKFILES="$TRACKFILES track$UTRACKNUM.wav"
856 nice $ENCNICE $MP3ENCODER $MP3ENCODEROPTS --nogap $TRACKFILES
858 if [ "$RETURN" != "0" ]; then
859 echo "nogap-encode: $ENCODER returned code $RETURN" >> errors
861 for UTRACKNUM in $TRACKQUEUE
863 run_command encodetrack-$OUTPUT-$UTRACKNUM true
864 #run_command encodetrack-$UTRACKNUM true
873 if checkerrors "nogap-encode"; then :; else
874 if [ ! "$KEEPWAVS" = "y" ] ; then
875 if [ ! "$KEEPWAVS" = "move" ] ; then
880 # Other encoders fall through to normal encoding as the tracks
881 # have not been entered in the status file.
884 # do_encode [tracknumber] [hostname]
885 # If no hostname is specified, encode locally
887 # TRACKS, TRACKNAME, TRACKARTIST, DISTMP3, DISTMP3OPTS, {FOO}ENCODERSYNTAX, OUTPUTTYPE, ENCODEROPTS, DALBUM, DARTIST, ENCNICE, CDYEAR, CDGENRE, COMMENT
890 if [ "$USEPIPES" = "y" ]; then
893 TEMPARG="PIPE_$MP3ENCODERSYNTAX"
896 TEMPARG="PIPE_$OGGENCODERSYNTAX"
899 TEMPARG="PIPE_$FLACENCODERSYNTAX"
902 TEMPARG="PIPE_$SPEEXENCODER"
905 TEMPARG="PIPE_$MPPENCODER"
908 TEMPARG="PIPE_$MPPENCODER"
911 IN="$( eval echo "\$$TEMPARG" )"
913 IN="$ABCDETEMPDIR/track$1.wav"
916 case "$MP3ENCODERSYNTAX" in
917 # FIXME # check if mp3enc needs -if for pipes
918 # FIXME # I have not been able to find a working mp3enc binary
932 # We need IN to proceed, if we are not using pipes.
933 if [ -s "$IN" -o X"$USEPIPES" = "Xy" ] ; then
934 for TMPOUTPUT in $(echo $OUTPUTTYPE | tr , \ )
938 OUTPUT=$OGGOUTPUTCONTAINER
941 OUTPUT=$FLACOUTPUTCONTAINER
947 OUT="$ABCDETEMPDIR/track$1.$OUTPUT"
948 if [ "$NOGAP" = "y" ] && checkstatus encodetrack-$OUTPUT-$1 ; then
951 if [ X"$USEPIPES" = "Xy" ]; then
953 # We need a way to store the creation of the files when using PIPES
954 RUN_COMMAND_PIPES="run_command encodetrack-$OUTPUT-$1 true"
956 run_command '' echo "Encoding track $1 of $TRACKS: $TRACKNAME..."
957 RUN_COMMAND="run_command encodetrack-$OUTPUT-$1"
963 case "$MP3ENCODERSYNTAX" in
964 lame|gogo) $RUN_COMMAND nice $ENCNICE $MP3ENCODER $MP3ENCODEROPTS "$IN" "$OUT" ;;
965 bladeenc) $RUN_COMMAND nice $ENCNICE $MP3ENCODER $MP3ENCODEROPTS -quit "$IN" ;;
966 l3enc|xingmp3enc) $RUN_COMMAND nice $ENCNICE $MP3ENCODER "$IN" "$OUT" $MP3ENCODEROPTS ;;
967 # FIXME # Relates to the previous FIXME since it might need the "-if" removed.
968 mp3enc) $RUN_COMMAND nice $ENCNICE $MP3ENCODER -if "$IN" -of "$OUT" $MP3ENCODEROPTS ;;
972 $RUN_COMMAND nice $DISTMP3NICE $DISTMP3 $DISTMP3OPTS "$2" "$IN" "$OUT" >/dev/null 2>&1
979 case "$OGGENCODERSYNTAX" in
980 vorbize) $RUN_COMMAND nice $ENCNICE $OGGENCODER $OGGENCODEROPTS -w "$OUT" "$IN" ;;
981 oggenc) $RUN_COMMAND nice $ENCNICE $OGGENCODER $OGGENCODEROPTS -o "$OUT" "$IN" ;;
985 $RUN_COMMAND nice $DISTMP3NICE $DISTMP3 $DISTMP3OPTS "$2" "$IN" "$OUT" >/dev/null 2>&1
992 case "$FLACENCODERSYNTAX" in
993 flac) $RUN_COMMAND nice $ENCNICE $FLACENCODER -f $FLACENCODEROPTS -o "$OUT" "$IN" ;;
998 vecho "$DISTMP3 $DISTMP3OPTS $2 $IN $OUT >/dev/null 2>&1"
999 $RUN_COMMAND nice $DISTMP3NICE $DISTMP3 $DISTMP3OPTS "$2" "$IN" "$OUT" > /dev/null 2>&1
1004 if [ "$(eval echo ${COMMENT})" != "" ]; then
1007 *) COMMENT="COMMENT=$COMMENT" ;;
1009 COMMENT="--comment \"$COMMENT\""
1011 # Quick hack to avoid tagging Ogg/Speex, since there is no other way to tag than inline tagging
1012 if [ ! "$DOTAG" = "y" ]; then
1013 $RUN_COMMAND nice $ENCNICE $SPEEXENCODER $SPEEXENCODEROPTS --author "$TRACKARTIST" --title "$TRACKNAME" "$COMMENT" "$IN" "$OUT"
1015 $RUN_COMMAND nice $ENCNICE $SPEEXENCODER $SPEEXENCODEROPTS "$IN" "$OUT"
1019 # MPP/MP+(Musepack) format (.mpc) is done locally, with inline
1021 # I tried compiling the mppenc from corecodecs.org and got some
1022 # errors, so I have not tried it myself.
1023 ## FIXME ## Needs some cleanup to determine if an empty tag sent
1024 ## FIXME ## to the encoder ends up empty.
1025 $RUN_COMMAND nice $ENCNICE $MPPENCODER $MPPENCODEROPTS --artist "$TRACKARTIST" --album "$DALBUM" --title "$TRACKNAME" --track "$1" --genre "$CDGENRE" --year "$CDYEAR" --comment "$COMMENT" "$IN" "$OUT"
1028 # Quick hack to avoid tagging Ogg/Speex, since there is no other way to tag than inline tagging
1029 if [ ! "$DOTAG" = "y" ]; then
1030 $RUN_COMMAND nice $ENCNICE $AACENCODER $AACENCODEROPTS --artist "$TRACKARTIST" --album "$DALBUM" --title "$TRACKNAME" --track "$1" --genre "$CDGENRE" --year "$CDYEAR" --comment "$COMMENT" -o "$OUT" "$IN"
1033 $RUN_COMMAND nice $ENCNICE $AACENCODER $AACENCODEROPTS -o "$OUT" "$IN"
1037 # In case of wav output we need nothing. Just keep the wavs.
1042 # Only remove .wav if the encoding succeeded
1043 if checkerrors "encodetrack-(.{3,6})-$1"; then :; else
1044 run_command encodetrack-$1 true
1045 if [ ! "$KEEPWAVS" = "y" ] ; then
1046 if [ ! "$KEEPWAVS" = "move" ] ; then
1052 run_command "" echo "HEH! The file we were about to encode disappeared:"
1053 run_command "" echo ">> $IN"
1054 run_command encodetrack-$1 false
1058 # do_preprocess [tracknumber]
1060 # TRACKS, TRACKNAME, TRACKARTIST, DISTMP3, DISTMP3OPTS, {FOO}ENCODERSYNTAX, OUTPUTTYPE, ENCODEROPTS, DALBUM, DARTIST, ENCNICE, CDYEAR, CDGENRE, COMMENT
1063 # IN="$ABCDETEMPDIR/track$1.wav"
1064 # # We need IN to proceed.
1065 # if [ -s "$IN" ] ; then
1066 # for OUTPUT in $(echo $OUTPUTTYPE | tr , \ )
1068 # #OUT="$ABCDETEMPDIR/track$1.$OUTPUT"
1069 # run_command '' echo "Pre-processing track $1 of $TRACKS..."
1070 # case "$POSTPROCESSFORMAT" in
1072 # run_command preprocess-$OUTPUT-$1 nice $PRENICE $WAV_PRE $IF $OF ;;
1074 # run_command preprocess-$OUTPUT-$1 nice $PRENICE $MP3_PRE $IF $OF ;;
1076 # run_command preprocess-$OUTPUT-$1 nice $PRENICE $OGG_PRE $IF $OF ;;
1078 # run_command preprocess-$OUTPUT-$1 nice $PRENICE $FLAC_PRE $IF $OF ;;
1080 # run_command preprocess-$OUTPUT-$1 nice $PRENICE $SPX_PRE $IF $OF ;;
1083 # # Only remove .wav if the encoding succeeded
1084 # if checkerrors "preprocess-(.{3,4})-$1"; then
1085 # run_command preprocess-$1 false
1087 # run_command preprocess-$1 true
1090 # if [ "$(checkstatus encode-output)" = "loud" ]; then
1091 # echo "HEH! The file we were about to pre-process disappeared:"
1094 # run_command preprocess-$1 false
1099 # do_postprocess [tracknumber]
1101 # TRACKS, TRACKNAME, TRACKARTIST, DISTMP3, DISTMP3OPTS, {FOO}ENCODERSYNTAX, OUTPUTTYPE, ENCODEROPTS, DALBUM, DARTIST, ENCNICE, CDYEAR, CDGENRE, COMMENT
1104 # for POSTPROCESSFORMAT in $(echo $POSTPROCESSFORMATS | tr , \ )
1106 # IN="$ABCDETEMPDIR/track$1.$POSTPROCESSFORMAT"
1107 # # We need IN to proceed.
1108 # if [ -s "$IN" ] ; then
1109 # #OUT="$ABCDETEMPDIR/track$1.$OUTPUT"
1110 # run_command '' echo "Post-processing track $1 of $TRACKS..."
1111 # case "$POSTPROCESSFORMAT" in
1113 # run_command postprocess-$OUTPUT-$1 nice $POSTNICE $MP3_POST $IF $OF ;;
1115 # run_command postprocess-$OUTPUT-$1 nice $POSTNICE $OGG_POST $IF $OF ;;
1117 # run_command postprocess-$OUTPUT-$1 nice $POSTNICE $FLAC_POST $IF $OF ;;
1119 # run_command postprocess-$OUTPUT-$1 nice $POSTNICE $SPX_POST $IF $OF ;;
1121 # # Only remove .wav if the encoding succeeded
1122 # if checkerrors "postprocess-(.{3,4})-$1"; then
1123 # run_command postprocess-$1 false
1125 # run_command postprocess-$1 true
1128 # if [ "$(checkstatus encode-output)" = "loud" ]; then
1129 # echo "HEH! The file we were about to post-process disappeared:"
1132 # run_command postprocess-$1 false
1147 # MP3GAIN, MP3GAINOPTS, VORBISGAIN, VORBISGAINOPTS, MPPGAIN, MPPGAINOPTS
1151 # The commands here don't go through run_command because they're never supposed to be silenced
1152 echo "Batch analizing gain in tracks: $TRACKQUEUE"
1157 for UTRACKNUM in $TRACKQUEUE
1159 MP3FILES="$TRACKFILES track$UTRACKNUM.mp3"
1161 # FIXME # Hard-coded batch option!
1162 $NORMALIZER -b $NORMALIZEROPTS $TRACKFILES
1164 if [ "$RETURN" != "0" ]; then
1165 echo "batch-normalize: $NORMALIZER returned code $RETURN" >> errors
1167 for UTRACKNUM in $TRACKQUEUE
1169 echo normalizetrack-$UTRACKNUM >> status
1175 # do_batch_normalize
1177 # NORMALIZER, NORMALIZEROPTS
1178 do_batch_normalize ()
1180 # The commands here don't go through run_command because they're never supposed to be silenced
1181 echo "Batch normalizing tracks: $TRACKQUEUE"
1186 for UTRACKNUM in $TRACKQUEUE
1188 TRACKFILES="$TRACKFILES track$UTRACKNUM.wav"
1190 # XXX: Hard-coded batch option!
1191 $NORMALIZER -b $NORMALIZEROPTS $TRACKFILES
1193 if [ "$RETURN" != "0" ]; then
1194 echo "batch-normalize: $NORMALIZER returned code $RETURN" >> errors
1196 for UTRACKNUM in $TRACKQUEUE
1198 echo normalizetrack-$UTRACKNUM >> status
1204 # do_normalize [tracknumber]
1206 # TRACKS, TRACKNAME, NORMALIZER, NORMALIZEROPTS
1209 IN="$ABCDETEMPDIR/track$1.wav"
1210 if [ -e "$IN" ] ; then
1211 run_command '' echo "Normalizing track $1 of $TRACKS: $TRACKNAME..."
1212 run_command normalizetrack-$1 $NORMALIZER $NORMALIZEROPTS "$IN"
1214 if [ "$(checkstatus encode-output)" = "loud" ]; then
1215 echo "HEH! The file we were about to normalize disappeared:"
1218 run_command normalizetrack-$1 false "File $IN was not found"
1222 # do_move [tracknumber]
1223 # Deduces the outfile from environment variables
1224 # Creates directory if necessary
1226 # TRACKNUM, TRACKNAME, TRACKARTIST, DALBUM, OUTPUTFORMAT, CDGENRE, CDYEAR
1229 for TMPOUTPUT in $(echo $OUTPUTTYPE | tr , \ )
1231 # For now, set OUTPUT as TMPOUTPUT, and then change it once we have
1232 # defined the OUTPUTFILE:
1235 # Create ALBUMFILE, ARTISTFILE, TRACKFILE
1236 # Munge filenames as follows:
1241 # Eat control characters
1242 ALBUMFILE="$(mungefilename "$DALBUM")"
1243 ARTISTFILE="$(mungefilename "$TRACKARTIST")"
1244 TRACKFILE="$(mungefilename "$TRACKNAME")"
1245 GENRE="$(mungegenre "$GENRE")"
1246 YEAR=${CDYEAR:-$CDYEAR}
1247 # If we want to start the tracks with a given number, we need to modify
1248 # the TRACKNUM value before evaluation
1250 # Supported variables for OUTPUTFORMAT are GENRE, YEAR, ALBUMFILE,
1251 # ARTISTFILE, TRACKFILE, and TRACKNUM.
1252 if [ "$ONETRACK" = "y" ]; then
1253 if [ "$VARIOUSARTISTS" = "y" ]; then
1254 OUTPUTFILE="$(eval echo \""$VAONETRACKOUTPUTFORMAT"\")"
1256 OUTPUTFILE="$(eval echo \""$ONETRACKOUTPUTFORMAT"\")"
1259 if [ "$VARIOUSARTISTS" = "y" ]; then
1260 OUTPUTFILE="$(eval echo \""$VAOUTPUTFORMAT"\")"
1262 OUTPUTFILE="$(eval echo \""$OUTPUTFORMAT"\")"
1265 if checkerrors "tagtrack-$OUTPUT-$1"; then :; else
1266 # Once we know the specific output was successful, we can change
1267 # the OUTPUT to the value containing the container
1270 OUTPUT=$OGGOUTPUTCONTAINER
1273 OUTPUT=$FLACOUTPUTCONTAINER
1279 # Check that the directory for OUTPUTFILE exists, if it doesn't, create it
1280 OUTPUTFILEDIR="$(dirname "$OUTPUTDIR/$OUTPUTFILE")"
1283 if [ "$DOCLEAN" != "y" ] && [ "$FORCE" != "y" ]; then
1284 # FIXME # introduce warnings?
1287 # mkdir -p shouldn't return an error if the directory already exists
1288 mkdir -p "$OUTPUTFILEDIR"
1289 run_command movetrack-$1 mv "$ABCDETEMPDIR/track$1.$OUTPUT" "$OUTPUTDIR/$OUTPUTFILE.$OUTPUT"
1290 if checkstatus movetrack-output-$OUTPUT; then :; else
1291 run_command movetrack-output-$OUTPUT true
1296 # mkdir -p shouldn't return an error if the directory already exists
1297 mkdir -p "$OUTPUTFILEDIR"
1298 run_command movetrack-$1 mv "$ABCDETEMPDIR/track$1.$OUTPUT" "$OUTPUTDIR/$OUTPUTFILE.$OUTPUT"
1299 if checkstatus movetrack-output-$OUTPUT; then :; else
1300 run_command movetrack-output-$OUTPUT true
1304 # Lets move the cue file
1305 if CUEFILE=$(checkstatus cuefile) >/dev/null ; then
1306 if [ -r "$ABCDETEMPDIR/$CUEFILE" ]; then
1307 if checkstatus movecue-$OUTPUT; then :; else
1308 # Silence the Copying output since it overlaps with encoding processes...
1309 #run_command '' vecho "Copying cue file to its destination directory..."
1310 if checkstatus onetrack >/dev/null ; then
1313 if [ "$DOCLEAN" != "y" ] && [ "$FORCE" != "y" ]; then
1314 # We dont have the dir, since it was not created before.
1317 run_command movecue-$OUTPUT cp "$ABCDETEMPDIR/$CUEFILE" "$OUTPUTDIR/$OUTPUTFILE.cue"
1320 # NOTE: Creating a cue file with the 3-char-extension files is to comply with
1321 # http://brianvictor.tripod.com/mp3cue.htm#details
1322 [a-z0-9][a-z0-9][a-z0-9])
1323 run_command movecue-$OUTPUT cp "$ABCDETEMPDIR/$CUEFILE" "$OUTPUTDIR/$OUTPUTFILE.cue"
1326 run_command movecue-$OUTPUT cp "$ABCDETEMPDIR/$CUEFILE" "$OUTPUTDIR/$OUTPUTFILE.$OUTPUT.cue"
1330 run_command movecue-$OUTPUT cp "$ABCDETEMPDIR/$CUEFILE" "$OUTPUTFILEDIR/$CUEFILE"
1332 echo movecue-$OUTPUT >> "$ABCDETEMPDIR/status"
1341 # Create the playlist if wanted
1343 # PLAYLISTFORMAT, PLAYLISTDATAPREFIX, VAPLAYLISTFORMAT, VAPLAYLISTDATAPREFIX,
1344 # VARIOUSARTISTS, OUTPUTDIR
1347 for TMPOUTPUT in $(echo $OUTPUTTYPE | tr , \ )
1351 OUTPUT=$OGGOUTPUTCONTAINER
1354 OUTPUT=$FLACOUTPUTCONTAINER
1360 # Create a playlist file for the playlist data to go into.
1361 # We used to wipe it out if it existed. Now we request permision if interactive.
1362 for LASTTRACK in $TRACKQUEUE; do :; done
1363 ALBUMFILE="$(mungefilename "$DALBUM")"
1364 ARTISTFILE="$(mungefilename "$DARTIST")"
1365 GENRE="$(mungegenre "$GENRE")"
1366 YEAR=${CDYEAR:-$CDYEAR}
1367 if [ "$VARIOUSARTISTS" = "y" ] ; then
1368 PLAYLISTFILE="$(eval echo "$VAPLAYLISTFORMAT")"
1370 PLAYLISTFILE="$(eval echo "$PLAYLISTFORMAT")"
1372 FINALPLAYLISTDIR="$(dirname "$OUTPUTDIR/$PLAYLISTFILE")"
1373 mkdir -p "$FINALPLAYLISTDIR"
1374 if [ -s "$OUTPUTDIR/$PLAYLISTFILE" ]; then
1375 echo -n "Erase, Append to, or Keep the existing playlist file? [e/a/k] (e): " >&2
1376 if [ "$INTERACTIVE" = "y" ]; then
1377 while [ "$DONE" != "y" ]; do
1379 case $ERASEPLAYLIST in
1380 e|E|a|A|k|K) DONE=y ;;
1388 # Once we erase the playlist, we use append to create the new one.
1389 [ "$ERASEPLAYLIST" = "e" -o "$ERASEPLAYLIST" = "E" ] && rm -f "$OUTPUTDIR/$PLAYLISTFILE" && ERASEPLAYLIST=a
1391 # The playlist does not exist, so we can safelly use append to create the new list
1394 if [ "$ERASEPLAYLIST" = "a" -o "$ERASEPLAYLIST" = "A" ]; then
1395 touch "$OUTPUTDIR/$PLAYLISTFILE"
1396 for UTRACKNUM in $TRACKQUEUE
1398 # Shares some code with do_move since the filenames have to match
1399 CDDBTRACKNUM=$(expr $UTRACKNUM - 1)
1400 getcddbinfo TRACKNAME
1402 TRACKFILE="$(mungefilename "$TRACKNAME")"
1403 ARTISTFILE="$(mungefilename "$TRACKARTIST")"
1404 ALBUMFILE="$(mungefilename "$DALBUM")"
1405 # If we want to start the tracks with a given number, we need to modify the
1406 # TRACKNUM value before evaluation
1408 if [ "$VARIOUSARTISTS" = "y" ]; then
1409 OUTPUTFILE="$(eval echo \""$VAOUTPUTFORMAT\"")"
1411 OUTPUTFILE="$(eval echo \""$OUTPUTFORMAT\"")"
1413 if [ "$VARIOUSARTISTS" = "y" ]; then
1414 if [ "$VAPLAYLISTDATAPREFIX" ] ; then
1415 echo ${VAPLAYLISTDATAPREFIX}$OUTPUTFILE.$OUTPUT >> "$OUTPUTDIR/$PLAYLISTFILE"
1417 relpath "$PLAYLISTFILE", "$OUTPUTFILE.$OUTPUT" >> "$OUTPUTDIR/$PLAYLISTFILE"
1420 if [ "$PLAYLISTDATAPREFIX" ]; then
1421 echo ${PLAYLISTDATAPREFIX}$OUTPUTFILE.$OUTPUT >> "$OUTPUTDIR/$PLAYLISTFILE"
1423 relpath "$PLAYLISTFILE", "$OUTPUTFILE.$OUTPUT" >> "$OUTPUTDIR/$PLAYLISTFILE"
1428 ## this will convert the playlist to have CRLF line-endings, if specified
1429 ## (some hardware players insist on CRLF endings)
1430 if [ "$DOSPLAYLIST" = "y" ]; then
1431 awk '{substr("\r",""); printf "%s\r\n", $0}' "$OUTPUTDIR/$PLAYLISTFILE" > "$ABCDETEMPDIR/PLAYLISTFILE.tmp"
1432 # mv -f "$ABCDETEMPDIR/PLAYLISTFILE.tmp" "$OUTPUTDIR/$PLAYLISTFILE"
1433 cat "$ABCDETEMPDIR/PLAYLISTFILE.tmp" | sed 's/\//\\/' > "$OUTPUTDIR/$PLAYLISTFILE"
1435 echo "playlistcomplete" >> "$ABCDETEMPDIR/status"
1440 # This essentially the start of things
1443 # Query the CD to get the track info, unless the user specified -C
1444 # or we are using some actions which do not need the CDDB data at all
1445 #if [ ! X"$EXPACTIONS" = "X" ]; then
1447 #elif [ -z "$DISCID" ]; then
1448 if [ -z "$DISCID" ]; then
1449 vecho -n "Getting CD track info... "
1450 # In OSX, unmount the disc before a query
1451 if [ "$OSFLAVOUR" = "OSX" ]; then
1452 disktool -u ${CDROM#/dev/}
1454 if [ "$CDROMREADERSYNTAX" = "flac" ] ; then
1455 if $METAFLAC $METAFLACOPTS --export-cuesheet-to=- "$CDROM" > /dev/null 2>&1 ; then
1456 TRACKINFO=$($METAFLAC $METAFLACOPTS --export-cuesheet-to=- "$CDROM" | $CUE2DISCID)
1458 log error "the input flac file does not contain a cuesheet."
1462 case "$CDDBMETHOD" in
1463 cddb) TRACKINFO=$($CDDISCID $CDROM) ;;
1464 # FIXME # musicbrainz needs a cleanup
1465 musicbrainz) TRACKINFO=$($MUSICBRAINZ -c $CDROM ) ;;
1468 # Make sure there's a CD in there by checking cd-discid's return code
1469 if [ ! "$?" = "0" ]; then
1470 if [ "$CDROMREADERSYNTAX" = "flac" ] ; then
1471 log error "cuesheet information from the flac file could not be read."
1472 log error "Perhaps the flac file does not contain a cuesheet?."
1475 log error "CD could not be read. Perhaps there's no CD in the drive?"
1479 # In OSX, remount the disc again
1480 if [ "$OSFLAVOUR" = "OSX" ]; then
1481 disktool -m ${CDROM#/dev/}
1484 DISCID=$(echo $TRACKINFO | cut -f1 -d' ')
1486 TRACKINFO=$(cat "$WAVOUTPUTDIR/abcde.$DISCID/discid")
1489 # Get a full enumeration of tracks, sort it, and put it in the TRACKQUEUE.
1490 # This needs to be done now because a section of the resuming code will need
1493 # get the number of digits to pad TRACKNUM with - we'll use this later
1494 # a CD can only hold 99 tracks, but since we support a feature for starting
1495 # numbering the tracks from a given number, we might need to set it as a
1496 # variable for the user to define... or obtain it somehow.
1497 if [ "$PADTRACKS" = "y" ] ; then
1501 ABCDETEMPDIR="$WAVOUTPUTDIR/abcde.$(echo $TRACKINFO | cut -f1 -d' ')"
1502 if [ -z "$TRACKQUEUE" ]; then
1503 if [ ! "$STRIPDATATRACKS" = "y" ]; then
1504 case "$CDROMREADERSYNTAX" in
1506 if [ "$WEHAVEACD" = "y" ]; then
1507 vecho "Querying the CD for audio tracks..."
1508 CDPARANOIAOUTPUT="$( $CDROMREADER -$CDPARANOIACDROMBUS $CDROM -Q --verbose 2>&1 )"
1510 if [ ! "$RET" = "0" ];then
1511 log warning "something went wrong while querying the CD... Maybe a DATA CD?"
1513 TRACKS="$(echo "$CDPARANOIAOUTPUT" | egrep '^[[:space:]]+[[:digit:]]' | tail -n 1 | get_first | tr -d "." | tr '\n' ' ')"
1514 CDPARANOIAAUDIOTRACKS="$TRACKS"
1516 # Previous versions of abcde would store the tracks on a file, instead of the status record.
1517 if [ -f "$ABCDETEMPDIR/cdparanoia-audio-tracks" ]; then
1518 echo cdparanoia-audio-tracks=$( cat "$ABCDETEMPDIR/cdparanoia-audio-tracks" ) >> "$ABCDETEMPDIR/status"
1519 rm -f "$ABCDETEMPDIR/cdparanoia-audio-tracks"
1521 if [ -f "$ABCDETEMPDIR/status" ] && TRACKS=$(checkstatus cdparanoia-audio-tracks); then :; else
1522 TRACKS=$(echo $TRACKINFO | cut -f2 -d' ')
1526 *) TRACKS=$(echo $TRACKINFO | cut -f2 -d' ') ;;
1529 TRACKS=$(echo $TRACKINFO | cut -f2 -d' ')
1531 if echo "$TRACKS" | grep "[[:digit:]]" > /dev/null 2>&1 ;then :;else
1532 log info "The disc does not contain any tracks. Giving up..."
1535 echo -n "Grabbing entire CD - tracks: "
1536 if [ ! "$PADTRACKS" = "y" ] ; then
1537 TRACKNUMPADDING=$(echo -n $TRACKS | wc -c | tr -d ' ')
1539 TRACKS=$(printf "%0.${TRACKNUMPADDING}d" $TRACKS)
1541 while [ "$X" -ne "$TRACKS" ]
1543 X=$(printf "%0.${TRACKNUMPADDING}d" $(expr $X + 1))
1544 TRACKQUEUE=$(echo $TRACKQUEUE $X)
1548 TRACKS=$(echo $TRACKINFO | cut -f2 -d' ')
1549 # User-supplied track queue.
1550 # Weed out non-numbers, whitespace, then sort and weed out duplicates
1551 TRACKQUEUE=$(echo $TRACKQUEUE | sed 's-[^0-9 ]--g' | tr ' ' '\n' | grep -v ^$ | sort -n | uniq | tr '\n' ' ' | sed 's- $--g')
1552 # Once cleaned, obtain the highest value in the trackqueue for number padding
1553 for LASTTRACK in $TRACKQUEUE; do :; done
1554 if [ ! "$PADTRACKS" = "y" ] ; then
1555 TRACKNUMPADDING=$(echo -n $LASTTRACK | wc -c | tr -d ' ')
1557 # Now we normalize the trackqueue
1558 for TRACK in $TRACKQUEUE ; do
1559 TRACKNUM=$(printf %0.${TRACKNUMPADDING}d $(expr ${TRACK} + 0 ))
1560 PADTRACKQUEUE=$(echo $PADTRACKQUEUE $TRACKNUM)
1562 TRACKQUEUE=$PADTRACKQUEUE
1563 echo Grabbing tracks: "$TRACKQUEUE"
1566 QUEUEDTRACKS=$(echo $TRACKQUEUE | wc -w | tr -d ' ')
1568 # We have the discid, create a temp directory after it to store all the temp
1571 if [ -e "$ABCDETEMPDIR" ]; then
1572 echo -n "abcde: attempting to resume from $ABCDETEMPDIR"
1573 # It already exists, see if it's a directory
1574 if [ ! -d "$ABCDETEMPDIR" ]; then
1575 # This is a file/socket/fifo/device/etc, not a directory
1578 echo "abcde: file $ABCDETEMPDIR already exists and does not belong to abcde." >&2
1579 echo "Please investigate, remove it, and rerun abcde." >&2
1583 # It's a directory, let's see if it's owned by us
1584 if [ ! -O "$ABCDETEMPDIR" ]; then
1585 # Nope, complain and exit
1587 echo "abcde: directory $ABCDETEMPDIR already exists and is not owned by you." >&2
1588 echo "Please investigate, remove it, and rerun abcde." >&2
1592 # See if it's populated
1593 if [ ! -f "$ABCDETEMPDIR/discid" ]; then
1594 # Wipe and start fresh
1595 echo "abcde: $ABCDETEMPDIR/discid not found. Abcde must remove and recreate" >&2
1596 echo -n "this directory to continue. Continue? [y/n] (n)" >&2
1597 if [ "$INTERACTIVE" = "y" ]; then
1603 if [ "$ANSWER" != "y" ]; then
1606 rm -rf "$ABCDETEMPDIR" || exit 1
1607 mkdir -p "$ABCDETEMPDIR"
1608 if [ "$?" -gt "0" ]; then
1609 # Directory already exists or could not be created
1610 echo "abcde: Temp directory $ABCDETEMPDIR could not be created." >&2
1614 # Everything is fine. Check for ^encodetracklocation-
1615 # and encode-output entries in the status file and
1616 # remove them. These are not relevant across sessions.
1617 if [ -f "$ABCDETEMPDIR/status" ]; then
1618 mv "$ABCDETEMPDIR/status" "$ABCDETEMPDIR/status.old"
1619 grep -v ^encodetracklocation- < "$ABCDETEMPDIR/status.old" \
1620 | grep -v ^encode-output > "$ABCDETEMPDIR/status"
1622 # Remove old error messages
1623 if [ -f "$ABCDETEMPDIR/errors" ]; then
1624 rm -f "$ABCDETEMPDIR/errors"
1628 # We are starting from scratch
1629 mkdir -p "$ABCDETEMPDIR"
1630 if [ "$?" -gt "0" ]; then
1631 # Directory already exists or could not be created
1632 echo "abcde: Temp directory $ABCDETEMPDIR could not be created." >&2
1635 cat /dev/null > "$ABCDETEMPDIR/status"
1636 # Store the abcde version in the status file.
1637 echo "abcde-version=$VERSION" >> "$ABCDETEMPDIR/status"
1639 if [ X"$MAKECUEFILE" = "Xy" -a X"$WEHAVEACD" = "Xy" ]; then
1640 if checkstatus cuefile > /dev/null 2>&1 ; then :; else
1641 CUEFILE=cue-$(echo "$TRACKINFO" | cut -f1 -d' ').txt
1642 vecho "Creating cue file..."
1643 case $CDROMREADERSYNTAX in
1645 if $METAFLAC --export-cuesheet-to=- $CDROM > "$ABCDETEMPDIR/$CUEFILE"; then :; else
1646 log warning "the input flac file does not contain a cuesheet."
1650 if $CUEREADER $CUEREADEROPTS > "$ABCDETEMPDIR/$CUEFILE"; then
1651 echo cuefile=$CUEFILE >> "$ABCDETEMPDIR/status"
1653 log warning "reading the CUE sheet with mkcue is still considered experimental"
1654 log warning "and there was a problem with the CD reading. abcde will continue,"
1655 log warning "but consider reporting the problem to the abcde author"
1661 # If we got the CDPARANOIA status and it is not recorded, save it now
1662 if [ -n "$CDPARANOIAAUDIOTRACKS" ]; then
1663 if checkstatus cdparanoia-audio-tracks > /dev/null 2>&1; then :; else
1664 echo cdparanoia-audio-tracks=$CDPARANOIAAUDIOTRACKS >> "$ABCDETEMPDIR/status"
1668 # Create the discid file
1669 echo "$TRACKINFO" > "$ABCDETEMPDIR/discid"
1670 if checkstatus cddbmethod > /dev/null 2>&1 ; then :; else
1671 echo "cddbmethod=$CDDBMETHOD" >> "$ABCDETEMPDIR/status"
1676 # Create a proper CUE file based on the CUE file we created before.
1679 if CUEFILE_IN="$ABCDETEMPDIR"/$(checkstatus cuefile); then
1680 CUEFILE_OUT=$CUEFILE_IN.out
1681 ### FIXME ### checkstatus cddb
1682 if [ -e "$CDDBDATA" ]; then
1683 vecho "Adding metadata to the cue file..."
1684 # FIXME It doesn't preserve spaces! Why?
1685 # FIXME parse $track into PERFORMER and TITLE - abcde already has code for this?
1687 echo "PERFORMER \"$DARTIST\"" >> "$CUEFILE_OUT"
1688 echo "TITLE \"$DALBUM\"" >> "$CUEFILE_OUT"
1689 cat "$CUEFILE_IN" | while read line
1691 if echo "$line" | grep "INDEX 01" > /dev/null 2>&1 ; then
1692 eval track="\$TRACK$n"
1694 echo "TITLE \"$track\"" >> "$CUEFILE_OUT"
1696 echo "$line" >> "$CUEFILE_OUT"
1698 mv "$CUEFILE_OUT" "$CUEFILE_IN"
1699 echo "cleancuefile" >> "$ABCDETEMPDIR/status"
1705 # Parses a CDDB file and outputs the title and the track names.
1706 # Variables: CDDBFILE
1710 # List out disc title/author and contents
1711 if [ "$ONETRACK" = "y" ]; then
1712 vecho "ONETRACK mode selected: displaying only the title of the CD..."
1714 echo "---- $(grep DTITLE "${CDDBPARSEFILE}" | cut '-d=' -f2- | tr -d \\r\\n ) ----"
1715 if [ X"$SHOWCDDBYEAR" = "Xy" ]; then
1716 PARSEDYEAR=$(grep DYEAR "${CDDBPARSEFILE}" | cut '-d=' -f2-)
1717 if [ ! X"$PARSEDYEAR" = "X" ]; then
1718 echo "Year: $PARSEDYEAR"
1721 if [ X"$SHOWCDDBGENRE" = "Xy" ]; then
1722 PARSEDGENRE=$(grep DGENRE "${CDDBPARSEFILE}" | cut '-d=' -f2-)
1723 if [ ! X"$PARSEDGENRE" = "X" ]; then
1724 echo "Genre: $PARSEDGENRE"
1727 if [ ! "$ONETRACK" = "y" ]; then
1728 for TRACK in $(f_seq_row 1 $TRACKS)
1730 echo $TRACK: "$(grep ^TTITLE$(expr $TRACK - 1)= "${CDDBPARSEFILE}" | cut -f2- -d= | tr -d \\r\\n)"
1736 # Check for a local CDDB file, and report success
1739 if checkstatus cddb-readcomplete && checkstatus cddb-choice >/dev/null; then :; else
1741 CDDBLOCALSTATUS="notfound"
1742 CDDBDISCID=$(echo $TRACKINFO | cut -d' ' -f1)
1745 if [ "$CDDBLOCALRECURSIVE" = "y" ]; then
1746 CDDBLOCALRESULTS="$(find ${CDDBLOCALDIR} -name "${CDDBDISCID}" -type f 2> /dev/null)"
1747 if [ ! "${CDDBLOCALRESULTS}" = "" ]; then
1748 if (( $(echo "${CDDBLOCALRESULTS}" | wc -l) == 1 )); then
1749 CDDBLOCALFILE="${CDDBLOCALRESULTS}"
1750 CDDBLOCALMATCH=single
1751 elif (( $(echo "${CDDBLOCALRESULTS}" | wc -l) > 1 )); then
1752 CDDBLOCALMATCH=multiple
1757 elif [ "$CDDBLOCALMATCH" = "none" ] && [ -r "${CDDBLOCALDIR}/${CDDBDISCID}" ]; then
1758 CDDBLOCALFILE="${CDDBLOCALDIR}/${CDDBDISCID}"
1759 CDDBLOCALMATCH=single
1764 # If the user has selected to check a local CDDB repo, we proceed with it
1765 case $CDDBLOCALMATCH in
1767 echo "Processing multiple matching CDDB entries..." > "$ABCDETEMPDIR/cddblocalchoices"
1769 echo "$CDDBLOCALRESULTS" | while read RESULT ; do
1771 # List out disc title/author and contents
1772 CDDBLOCALREAD="$ABCDETEMPDIR/cddblocalread.$X"
1773 cat "$RESULT" > "${CDDBLOCALREAD}"
1776 do_cddbparse "${CDDBLOCALREAD}"
1778 ##FIXME## QUICK HACK !!!!
1779 if [ ! "$INTERACTIVE" = "y" ]; then break ; fi
1780 } >> "$ABCDETEMPDIR/cddblocalchoices"
1782 if [ $(cat "$ABCDETEMPDIR/cddblocalchoices" | wc -l) -ge 24 ] && [ "$INTERACTIVE" = "y" ]; then
1783 page "$ABCDETEMPDIR/cddblocalchoices"
1785 # It's all going to fit in one page, cat it
1786 cat "$ABCDETEMPDIR/cddblocalchoices" >&2
1788 CDDBLOCALCHOICES=$( echo "$CDDBLOCALRESULTS" | wc -l )
1789 # Setting the choice to an impossible integer to avoid errors in the numeric comparisons
1790 CDDBLOCALCHOICENUM=-1
1791 if [ "$INTERACTIVE" = "y" ]; then
1792 while [ $CDDBLOCALCHOICENUM -lt 0 ] || [ $CDDBLOCALCHOICENUM -gt $CDDBLOCALCHOICES ]; do
1793 echo -n "Locally cached CDDB entries found. Which one would you like to use (0 for none)? [0-$CDDBLOCALCHOICES]: " >&2
1794 read CDDBLOCALCHOICE
1795 [ x"$CDDBLOCALCHOICE" = "x" ] && CDDBLOCALCHOICE="1"
1796 # FIXME # Introduce diff's
1797 if echo $CDDBLOCALCHOICE | egrep "[[:space:]]*[[:digit:]]+,[[:digit:]]+[[:space:]]*" > /dev/null 2>&1 ; then
1798 diffentries cddblocalread "$CDDBLOCALCHOICES" "$CDDBLOCALCHOICE"
1799 elif echo $CDDBLOCALCHOICE | egrep "[[:space:]]*[[:digit:]]+[[:space:]]*" > /dev/null 2>&1 ; then
1800 # Make sure we get a valid choice
1801 CDDBLOCALCHOICENUM=$(echo $CDDBLOCALCHOICE | xargs printf %d 2>/dev/null)
1802 if [ $CDDBLOCALCHOICENUM -lt 0 ] || [ $CDDBLOCALCHOICENUM -gt $CDDBLOCALCHOICES ]; then
1803 echo "Invalid selection. Please choose a number between 0 and $CDDBLOCALCHOICES." >&2
1809 #echo "Selected ..."
1811 CDDBLOCALCHOICENUM=1
1813 if [ ! "$CDDBLOCALCHOICENUM" = "0" ]; then
1814 #echo "Using local copy of CDDB data"
1815 echo "# DO NOT ERASE THIS LINE! Added by abcde to imitate cddb output" > "$ABCDETEMPDIR/cddbread.1"
1816 cat "$ABCDETEMPDIR/cddblocalread.$CDDBLOCALCHOICENUM" >> "$ABCDETEMPDIR/cddbread.1"
1817 echo 999 > "$ABCDETEMPDIR/cddbquery" # Assuming 999 isn't used by CDDB
1818 echo cddb-readcomplete >> "$ABCDETEMPDIR/status"
1819 do_cddbparse "$ABCDETEMPDIR/cddbread.1" > "$ABCDETEMPDIR/cddbchoices"
1820 echo cddb-choice=1 >> "$ABCDETEMPDIR/status"
1821 CDDBLOCALSTATUS="found"
1823 #echo "Not using local copy of CDDB data"
1824 CDDBLOCALSTATUS="notfound"
1828 # List out disc title/author and contents
1829 do_cddbparse "${CDDBLOCALFILE}"
1830 #if [ "$CDROMREADERSYNTAX" = "flac" ] ; then
1831 # echo -n "Embedded cuesheet entry found, use it? [y/n] (y): " >&2
1833 echo -n "Locally cached CDDB entry found, use it? [y/n] (y): " >&2
1835 if [ "$INTERACTIVE" = "y" ]; then
1837 while [ "$USELOCALRESP" != "y" ] && [ "$USELOCALRESP" != "n" ] && [ "$USELOCALRESP" != "" ] ; do
1838 echo -n 'Invalid selection. Please answer "y" or "n": ' >&2
1841 [ x"$USELOCALRESP" = "x" ] && USELOCALRESP="y"
1845 if [ "$USELOCALRESP" = "y" ]; then
1846 #echo "Using local copy of CDDB data"
1847 echo "# DO NOT ERASE THIS LINE! Added by abcde to imitate cddb output" > "$ABCDETEMPDIR/cddbread.1"
1848 cat "${CDDBLOCALFILE}" >> "$ABCDETEMPDIR/cddbread.1"
1849 echo 999 > "$ABCDETEMPDIR/cddbquery" # Assuming 999 isn't used by CDDB
1850 echo cddb-readcomplete >> "$ABCDETEMPDIR/status"
1851 do_cddbparse "${CDDBLOCALFILE}" > "$ABCDETEMPDIR/cddbchoices"
1852 echo cddb-choice=1 >> "$ABCDETEMPDIR/status"
1853 CDDBLOCALSTATUS="single"
1855 #echo "Not using local copy of CDDB data"
1856 CDDBLOCALSTATUS="notfound"
1860 CDDBLOCALSTATUS="notfound"
1866 do_musicbrainzstat ()
1879 # Perform CDDB protocol version check if it hasn't already been done
1880 if checkstatus cddb-statcomplete; then :; else
1881 if [ "$CDDBAVAIL" = "n" ]; then
1883 echo 503 > "$ABCDETEMPDIR/cddbstat"
1886 CDDBUSER=$(echo $HELLOINFO | cut -f1 -d'@')
1887 CDDBHOST=$(echo $HELLOINFO | cut -f2- -d'@')
1888 while test $rc -eq 1 -a $CDDBPROTO -ge 3; do
1889 vecho "Checking CDDB server status..."
1890 $CDDBTOOL stat $CDDBURL $CDDBUSER $CDDBHOST $CDDBPROTO > "$ABCDETEMPDIR/cddbstat"
1891 RESPONSECODE=$(head -n 1 "$ABCDETEMPDIR/cddbstat" | cut -f1 -d' ')
1892 case "$RESPONSECODE" in
1893 210) # 210 OK, status information follows (until terminating `.')
1896 501|*) # 501 Illegal CDDB protocol level: <n>.
1897 CDDBPROTO=`expr $CDDBPROTO - 1`
1901 if test $rc -eq 1; then
1905 echo cddb-statcomplete >> "$ABCDETEMPDIR/status"
1913 CDDBDISCID=$(echo $TRACKINFO | cut -d' ' -f1)
1914 CDDBLOCALFILE="${CDDBLOCALDIR}/${CDDBDISCID}"
1916 # Perform CDDB query if it hasn't already been done
1917 if checkstatus cddb-querycomplete; then :; else
1918 if [ "$CDDBAVAIL" = "n" ]; then
1920 echo 503 > "$ABCDETEMPDIR/cddbquery"
1921 # The default CDDBLOCALSTATUS is "notfound"
1922 # This part will be triggered if the user CDDB repo does not
1923 # contain the entry, or if we are not trying to use the repo.
1925 vecho "Querying the CDDB server..."
1926 CDDBUSER=$(echo $HELLOINFO | cut -f1 -d'@')
1927 CDDBHOST=$(echo $HELLOINFO | cut -f2- -d'@')
1928 $CDDBTOOL query $CDDBURL $CDDBPROTO $CDDBUSER $CDDBHOST $TRACKINFO > "$ABCDETEMPDIR/cddbquery"
1934 # no match found in database,
1935 # wget/fetch error, or user requested not to use CDDB
1936 # Make up an error code (503) that abcde
1937 # will recognize in do_cddbread
1938 # and compensate by making a template
1939 echo 503 > "$ABCDETEMPDIR/cddbquery"
1941 *) # strange and unknown error
1942 echo ERRORCODE=$ERRORCODE
1943 echo "abcde: $CDDBTOOL returned unknown error code"
1947 echo cddb-querycomplete >> "$ABCDETEMPDIR/status"
1954 # If it's not to be used, generate a template.
1955 # Then, display it (or them) and let the user choose/edit it
1956 if checkstatus cddb-readcomplete; then :; else
1957 vecho "Obtaining CDDB results..."
1958 # If CDDB is to be used, interpret the query results and read all
1959 # the available entries.
1960 rm -f "$ABCDETEMPDIR/cddbchoices"
1961 CDDBCHOICES=1 # Overridden by multiple matches
1962 RESPONSECODE=$(head -n 1 "$ABCDETEMPDIR/cddbquery" | cut -f1 -d' ')
1963 case "$RESPONSECODE" in
1965 # One exact match, retrieve it
1966 # 200 [section] [discid] [artist] / [title]
1967 if checkstatus cddb-read-1-complete; then :; else
1968 echo -n "Retrieving 1 CDDB match..." >> "$ABCDETEMPDIR/cddbchoices"
1969 $CDDBTOOL read $CDDBURL $CDDBPROTO $CDDBUSER $CDDBHOST $(cut -f2,3 -d' ' "$ABCDETEMPDIR/cddbquery") > "$ABCDETEMPDIR/cddbread.1"
1970 echo "done." >> "$ABCDETEMPDIR/cddbchoices"
1971 echo cddb-read-1-complete >> "$ABCDETEMPDIR/status"
1972 echo cddb-choice=1 >> "$ABCDETEMPDIR/status"
1974 # List out disc title/author and contents
1975 echo ---- "$(cut '-d ' -f4- "$ABCDETEMPDIR/cddbquery")" ---- >> "$ABCDETEMPDIR/cddbchoices"
1976 for TRACK in $(f_seq_row 1 $TRACKS)
1978 echo $TRACK: "$(grep ^TTITLE$(expr $TRACK - 1)= "$ABCDETEMPDIR/cddbread.1" | cut -f2- -d= | tr -d \\r\\n)" >> "$ABCDETEMPDIR/cddbchoices"
1980 echo >> "$ABCDETEMPDIR/cddbchoices"
1984 case "$RESPONSECODE" in
1985 202) echo "No CDDB match." >> "$ABCDETEMPDIR/cddbchoices" ;;
1986 403|409) echo "CDDB entry is corrupt, or the handshake failed." >> "$ABCDETEMPDIR/cddbchoices" ;;
1987 503) echo "CDDB unavailable." >> "$ABCDETEMPDIR/cddbchoices" ;;
1989 $CDDBTOOL template $(cat "$ABCDETEMPDIR/discid") > "$ABCDETEMPDIR/cddbread.0"
1990 # List out disc title/author and contents of template
1991 echo ---- Unknown Artist / Unknown Album ---- >> "$ABCDETEMPDIR/cddbchoices"
1993 for TRACK in $(f_seq_row 1 $TRACKS)
1995 echo $TRACK: "$(grep ^TTITLE$(expr $TRACK - 1)= "$ABCDETEMPDIR/cddbread.0" | cut -f2- -d= | tr -d \\r\\n)" >> "$ABCDETEMPDIR/cddbchoices"
1997 echo >> "$ABCDETEMPDIR/cddbchoices"
1998 echo cddb-read-0-complete >> "$ABCDETEMPDIR/status"
1999 echo cddb-choice=0 >> "$ABCDETEMPDIR/status"
2002 # Multiple exact, (possibly multiple) inexact matches
2004 if [ "$RESPONSECODE" = "211" ]; then IN=in; fi
2005 if [ "$(wc -l < "$ABCDETEMPDIR/cddbquery" | tr -d ' ')" -eq 3 ]; then
2006 echo "One ${IN}exact match:" >> "$ABCDETEMPDIR/cddbchoices"
2007 tail -n +2 "$ABCDETEMPDIR/cddbquery" | head -n 1 >> "$ABCDETEMPDIR/cddbchoices"
2008 echo cddb-choice=1 >> "$ABCDETEMPDIR/status"
2010 echo "Multiple ${IN}exact matches:" >> "$ABCDETEMPDIR/cddbchoices"
2012 vecho -n "Retrieving multiple matches... "
2013 grep -v ^[.]$ "$ABCDETEMPDIR/cddbquery" | ( X=0
2014 read DISCINFO # eat top line
2018 if checkstatus cddb-read-$X-complete; then :; else
2019 $CDDBTOOL read $CDDBURL $CDDBPROTO $CDDBUSER $CDDBHOST $(echo $DISCINFO | cut -f1,2 -d' ') > "$ABCDETEMPDIR/cddbread.$X"
2020 echo cddb-read-$X-complete >> "$ABCDETEMPDIR/status"
2022 # List out disc title/author and contents
2023 echo \#$X: ---- "$DISCINFO" ---- >> "$ABCDETEMPDIR/cddbchoices"
2024 for TRACK in $(f_seq_row 1 $TRACKS)
2026 echo $TRACK: "$(grep ^TTITLE$(expr $TRACK - 1)= "$ABCDETEMPDIR/cddbread.$X" | cut -f2- -d= | tr -d \\r\\n)" >> "$ABCDETEMPDIR/cddbchoices"
2028 echo >> "$ABCDETEMPDIR/cddbchoices"
2031 CDDBCHOICES=$(expr $(cat "$ABCDETEMPDIR/cddbquery" | wc -l) - 2)
2035 for TRACK in $(f_seq_row 1 $TRACKS)
2037 echo $TRACK: "$(grep ^TTITLE$(expr $TRACK - 1)= "$ABCDETEMPDIR/cddbread.1" | cut -f2- -d= | tr -d \\r\\n)" >> "$ABCDETEMPDIR/cddbchoices"
2039 echo >> "$ABCDETEMPDIR/cddbchoices"
2040 echo cddb-read-1-complete >> "$ABCDETEMPDIR/status"
2041 echo cddb-choice=1 >> "$ABCDETEMPDIR/status"
2044 echo "cddb-readcomplete" >> "$ABCDETEMPDIR/status"
2051 if checkstatus cddb-edit >/dev/null; then
2052 CDDBDATA="$ABCDETEMPDIR/cddbread.$(checkstatus cddb-choice)"
2053 VARIOUSARTISTS="$(checkstatus variousartists)"
2054 VARIOUSARTISTSTYLE="$(checkstatus variousartiststyle)"
2057 if [ "$INTERACTIVE" = "y" ]; then
2058 # We should show the CDDB results both when we are not using the local CDDB repo
2059 # or when we are using it but we could not find a proper match
2060 if [ "$CDDBUSELOCAL" = "y" ] && [ "$CDDBLOCALSTATUS" = "notfound" ] || [ ! "$CDDBUSELOCAL" = "y" ]; then
2061 # Display the $ABCDETEMPDIR/cddbchoices file created above
2062 # Pick a pager so that if the tracks overflow the screen the user can still view everything
2063 if [ -r "$ABCDETEMPDIR/cddbchoices" ]; then
2064 CDDBCHOICES=$(expr $(cat "$ABCDETEMPDIR/cddbquery" | wc -l) - 2)
2065 CHOICE=$(checkstatus cddb-choice)
2066 if [ -n "$CHOICE" ] ; then
2067 case $CDDBCHOICES in
2068 -1) if head -1 "$ABCDETEMPDIR/cddbquery" | grep "^$" > /dev/null 2>&1 ; then
2069 log error "CDDB query failed!"
2072 cat "$ABCDETEMPDIR/cddbchoices"
2075 1) cat "$ABCDETEMPDIR/cddbchoices" ;;
2077 echo "Selected: #$CHOICE"
2078 do_cddbparse "$ABCDETEMPDIR/cddbread.$CHOICE"
2082 # The user has a choice to make, display the info in a pager if necessary
2083 if [ $(cat "$ABCDETEMPDIR/cddbchoices" | wc -l) -ge 24 ]; then
2084 page "$ABCDETEMPDIR/cddbchoices"
2086 # It's all going to fit in one page, cat it
2087 cat "$ABCDETEMPDIR/cddbchoices" >&2
2091 # Setting the choice to an impossible integer to avoid errors in the numeric comparisons
2093 # I'll take CDDB read #3 for $400, Alex
2094 while [ $CDCHOICENUM -lt 0 ] || [ $CDCHOICENUM -gt $CDDBCHOICES ]; do
2095 echo -n "Which entry would you like abcde to use (0 for none)? [0-$CDDBCHOICES]: " >&2
2097 [ X"$CDDBCHOICE" = "X" ] && CDDBCHOICE=1
2098 if echo $CDDBCHOICE | egrep "[[:space:]]*[[:digit:]]+,[[:digit:]]+[[:space:]]*" > /dev/null 2>&1 ; then
2099 if [ ! X"$DIFF" = "X" ]; then
2100 PARSECHOICE1=$(echo $CDDBCHOICE | cut -d"," -f1 | xargs printf %d 2>/dev/null)
2101 PARSECHOICE2=$(echo $CDDBCHOICE | cut -d"," -f2 | xargs printf %d 2>/dev/null)
2102 if [ $PARSECHOICE1 -lt 1 ] || [ $PARSECHOICE1 -gt $CDDBCHOICES ] || \
2103 [ $PARSECHOICE2 -lt 1 ] || [ $PARSECHOICE2 -gt $CDDBCHOICES ] || \
2104 [ $PARSECHOICE1 -eq $PARSECHOICE2 ]; then
2105 echo "Invalid diff range. Please select two coma-separated numbers between 1 and $CDDBCHOICES" >&2
2107 # We parse the 2 choices to diff, store them in temporary files and diff them.
2108 for PARSECHOICE in $(echo $CDDBCHOICE | tr , \ ); do
2109 do_cddbparse "$ABCDETEMPDIR/cddbread.$PARSECHOICE" > "$ABCDETEMPDIR/cddbread.parsechoice.$PARSECHOICE"
2111 echo "Showing diff between choices $PARSECHOICE1 and $PARSECHOICE2..." > "$ABCDETEMPDIR/cddbread.diff"
2112 $DIFF $DIFFOPTS "$ABCDETEMPDIR/cddbread.parsechoice.$PARSECHOICE1" "$ABCDETEMPDIR/cddbread.parsechoice.$PARSECHOICE2" >> "$ABCDETEMPDIR/cddbread.diff"
2113 if [ $(cat "$ABCDETEMPDIR/cddbread.diff" | wc -l) -ge 24 ]; then
2114 page "$ABCDETEMPDIR/cddbread.diff"
2116 cat "$ABCDETEMPDIR/cddbread.diff" >&2
2120 echo "The diff program was not found in your path. Please choose a number between 0 and $CDDBCHOICES." >&2
2122 elif echo $CDDBCHOICE | egrep "[[:space:]]*[[:digit:]]+[[:space:]]*" > /dev/null 2>&1 ; then
2123 # Make sure we get a valid choice
2124 CDCHOICENUM=$(echo $CDDBCHOICE | xargs printf %d 2>/dev/null)
2125 if [ $CDCHOICENUM -lt 0 ] || [ $CDCHOICENUM -gt $CDDBCHOICES ]; then
2126 echo "Invalid selection. Please choose a number between 0 and $CDDBCHOICES." >&2
2130 if [ "$CDCHOICENUM" = "0" ]; then
2131 vecho "Creating empty CDDB template..."
2133 $CDDBTOOL template $(cat "$ABCDETEMPDIR/discid") > "$ABCDETEMPDIR/cddbread.0"
2135 echo "Selected: #$CDCHOICENUM ($(grep ^DTITLE= "$ABCDETEMPDIR/cddbread.$CDCHOICENUM" | cut -f2- -d= | tr -d \\r\\n))" >&2
2136 do_cddbparse "$ABCDETEMPDIR/cddbread.$CDCHOICENUM"
2138 echo "cddb-choice=$CDCHOICENUM" >> "$ABCDETEMPDIR/status"
2142 # We need some code to show the selected option when local repository is selected and we have found a match
2143 vecho "Using cached CDDB match..." >&2
2144 # Display the $ABCDETEMPDIR/cddbchoices file created above
2145 # Pick a pager so that if the tracks overflow the screen the user can still view everything
2146 if [ -r "$ABCDETEMPDIR/cddbchoices" ]; then
2147 CDDBCHOICES=$(expr $(cat "$ABCDETEMPDIR/cddbquery" | wc -l) - 2)
2148 CHOICE=$(checkstatus cddb-choice)
2149 if [ "$USELOCALRESP" = "y" ]; then :; else
2150 if [ -n "$CHOICE" ] ; then
2151 case $CDDBCHOICES in
2154 echo "Selected template."
2156 1) cat "$ABCDETEMPDIR/cddbchoices" ;;
2158 echo "Selected: #$CHOICE"
2159 do_cddbparse "$ABCDETEMPDIR/cddbread.$CHOICE"
2167 # We're noninteractive - pick the first choice.
2168 # But in case we run a previous instance and selected a choice, use it.
2169 if [ -r "$ABCDETEMPDIR/cddbchoices" ]; then
2170 # Show the choice if we are not using the locally stored one
2171 # or when the local search failed to find a match.
2172 PREVIOUSCHOICE=$(checkstatus cddb-choice)
2173 if [ "$CDDBUSELOCAL" = "y" ] && [ "$CDDBLOCALSTATUS" = "notfound" ] || [ ! "$CDDBUSELOCAL" = "y" ]; then
2174 #if [ "$PREVIOUSCHOICE" ]; then
2175 cat "$ABCDETEMPDIR/cddbchoices"
2178 if [ ! -z "$PREVIOUSCHOICE" ] ; then
2179 CDCHOICENUM=$PREVIOUSCHOICE
2182 echo "cddb-choice=$CDCHOICENUM" >> "$ABCDETEMPDIR/status"
2184 echo "Selected: #$CDCHOICENUM ($(grep ^DTITLE= "$ABCDETEMPDIR/cddbread.$CDCHOICENUM" | cut -f2- -d= | tr -d \\r\\n))" >&2
2189 if checkstatus cddb-choice >/dev/null; then :; else
2190 echo "abcde: internal error: cddb-choice not recorded." >&2
2193 CDDBDATA="$ABCDETEMPDIR/cddbread.$(checkstatus cddb-choice)"
2194 echo -n "Edit selected CDDB data? [y/n] (" >&2
2195 if [ "$INTERACTIVE" = "y" ]; then
2196 if [ "$UNKNOWNDISK" = "y" ]; then
2199 [ "$EDITCDDB" != "n" ] && EDITCDDB=y
2208 if [ "$EDITCDDB" = "y" ]; then
2209 CDDBDATAMD5SUM=$($MD5SUM "$CDDBDATA" | cut -d " " -f 1);
2211 # Use the debian sensible-editor wrapper to pick the editor that the
2212 # user has requested via their $EDITOR environment variable
2213 if [ -x "/usr/bin/sensible-editor" ]; then
2214 /usr/bin/sensible-editor "$CDDBDATA"
2215 elif [ -n "$EDITOR" ]; then
2216 if [ -x $(which "${EDITOR%%\ *}") ]; then
2217 # That failed, try to load the preferred editor, starting
2218 # with their EDITOR variable
2219 eval $(echo "$EDITOR") \"$CDDBDATA\"
2221 # If that fails, check for a vi
2222 elif which vi >/dev/null 2>&1; then
2224 elif [ -x /usr/bin/vim ]; then
2225 /usr/bin/vim "$CDDBDATA"
2226 elif [ -x /usr/bin/vi ]; then
2227 /usr/bin/vi "$CDDBDATA"
2228 elif [ -x /bin/vi ]; then
2230 # nano should be on all (modern, i.e., sarge) debian systems
2231 elif which nano >/dev/null 2>&1 ; then
2233 elif [ -x /usr/bin/nano ]; then
2234 /usr/bin/nano "$CDDBDATA"
2235 # mg should be on all OpenBSD systems
2236 elif which mg >/dev/null 2>&1 ; then
2238 elif [ -x /usr/bin/mg ]; then
2239 /usr/bin/mg "$CDDBDATA"
2242 log warning "no editor available. Check your EDITOR environment variable."
2244 # delete editor backup file if it exists
2245 if [ -w "$CDDBDATA~" ]; then
2250 # Some heuristics first. Look at Disc Title, and if it starts with
2251 # "Various", then we'll assume Various Artists
2252 if [ "$(grep ^DTITLE= "$CDDBDATA" | cut -f2- -d= | egrep -ci '^(various|soundtrack|varios|sonora|ost)')" != "0" ]; then
2253 echo "Looks like a Multi-Artist CD" >&2
2256 echo -n "Is the CD multi-artist? [y/n] (n): " >&2
2257 if [ "$INTERACTIVE" = "y" ]; then
2264 if [ "$VARIOUSARTISTS" = "y" ] && [ ! "$ONETRACK" = "y" ]; then
2267 # Need NUMTRACKS before cddb-tool will return it:
2268 NUMTRACKS=$(egrep '^TTITLE[0-9]+=' "$CDDBDATA" | wc -l)
2269 if [ "$(grep -c "^TTITLE.*\/" "$CDDBDATA")" -gt "$(expr $NUMTRACKS / 2 )" ]; then
2270 # More than 1/2 tracks contain a "/", so guess forward
2272 elif [ "$(grep -c "^TTITLE.*\-" "$CDDBDATA")" -gt "$(expr $NUMTRACKS / 2 )" ]; then
2273 # More than 1/2 contain a "-", so guess forward-dash
2275 elif [ "$(grep -c "^TTITLE.*(.*)" "$CDDBDATA")" -gt "$(expr $NUMTRACKS / 2 )" ]; then
2276 # More than 1/2 contain something in parens, so guess trailing-paren
2280 echo "1) Artist / Title" >&2
2281 echo "2) Artist - Title" >&2
2282 echo "3) Title / Artist" >&2
2283 echo "4) Title - Artist" >&2
2284 echo "5) Artist: Title" >&2
2285 echo "6) Title (Artist)" >&2
2286 echo "7) This is a single-artist CD" >&2
2287 echo -n "Which style of multiple artist entries is it? [1-7] ($DEFAULTSTYLE): " >&2
2288 if [ "$INTERACTIVE" = "y" ]; then
2289 read VARIOUSARTISTSTYLE
2291 echo $DEFAULTSTYLE >&2
2292 VARIOUSARTISTSTYLE=$DEFAULTSTYLE
2294 VARIOUSARTISTSTYLE=$(echo 0$VARIOUSARTISTSTYLE | xargs printf %d)
2295 # If they press Enter, then the default style (0) was chosen
2296 while [ $VARIOUSARTISTSTYLE -lt 0 ] || [ $VARIOUSARTISTSTYLE -gt 7 ]; do
2297 echo "Invalid selection. Please choose a number between 1 and 7."
2298 echo -n "Selection [1-7]: "
2299 read VARIOUSARTISTSTYLE
2300 VARIOUSARTISTSTYLE=$(echo 0$VARIOUSARTISTSTYLE | xargs printf %d)
2302 if [ "$VARIOUSARTISTSTYLE" = "0" ]; then
2303 VARIOUSARTISTSTYLE=$DEFAULTSTYLE
2305 vecho "Selected: $VARIOUSARTISTSTYLE"
2306 case "$VARIOUSARTISTSTYLE" in
2308 VARIOUSARTISTSTYLE=forward
2311 VARIOUSARTISTSTYLE=forward-dash
2314 VARIOUSARTISTSTYLE=reverse
2317 VARIOUSARTISTSTYLE=reverse-dash
2320 VARIOUSARTISTSTYLE=colon
2323 VARIOUSARTISTSTYLE=trailing-paren
2331 echo "variousartists=$VARIOUSARTISTS" >> "$ABCDETEMPDIR/status"
2332 echo "variousartiststyle=$VARIOUSARTISTSTYLE" >> "$ABCDETEMPDIR/status"
2334 if [ "$EDITCDDB" = "y" ] && [ "$UNINTENTIONALLY_ANGER_THE_FREEDB_PEOPLE" = "y" ]; then
2335 if [ "$CDDBDATAMD5SUM" != "" ] && [ "$CDDBDATAMD5SUM" != "$($MD5SUM "$CDDBDATA" | cut -d " " -f 1)" ]; then
2336 # This works but does not have the necessary error checking
2337 # yet. If you are familiar with the CDDB spec
2338 # (see http://www.freedb.org/src/latest/DBFORMAT)
2339 # and can create an error-free entry on your own, then put
2340 # UNINTENTIONALLY_ANGER_THE_FREEDB_PEOPLE=y in your
2341 # abcde.conf to enable it. Put CDDBSUBMIT=email@address in
2342 # your abcde.conf to change the email address submissions are
2345 # submit the modified file, if they want
2346 if [ "$NOSUBMIT" != "y" ]; then
2347 echo -n "Do you want to submit this entry to $CDDBSUBMIT? [y/n] (n): "
2349 while [ "$YESNO" != "y" ] && [ "$YESNO" != "n" ] && [ "$YESNO" != "Y" ] && \
2350 [ "$YESNO" != "N" ] && [ "$YESNO" != "" ]
2352 echo -n 'Invalid selection. Please answer "y" or "n": '
2355 if [ "$YESNO" = "y" ] || [ "$YESNO" = "Y" ]; then
2356 echo -n "Sending..."
2357 $CDDBTOOL send "$CDDBDATA" $CDDBSUBMIT
2364 # User CDDBLOCALPOLICY to find out if we store the file or not...
2365 # Cache edited CDDB entry in the user's cddb dir
2366 if [ "$CDDBCOPYLOCAL" = "y" ]; then
2367 # Make sure the cache directory exists
2368 mkdir -p $CDDBLOCALDIR
2369 cat "$CDDBDATA" | tail -n $(expr $(cat "$CDDBDATA" | wc -l ) - 1 ) > ${CDDBLOCALDIR}/$(echo "$TRACKINFO" | cut -d' ' -f1)
2372 echo "cddb-edit" >> "$ABCDETEMPDIR/status"
2375 # do_cdread [tracknumber]
2376 # do_cdread onetrack [firsttrack] [lasttrack]
2380 # The commands here don't go through run_command because they're never supposed to be silenced
2381 # return codes need to be doublechecked anyway, however
2382 if [ "$1" = "onetrack" ]; then
2383 # FIXME # Add the possibility of grabbing ranges of tracks in onetrack
2384 # FIXME # Until then, we grab the whole CD in one track, no matter what
2386 # We need the first and last track for cdda2wav
2388 LASTTRACK=$(expr $3 + 0)
2389 UTRACKNUM=$FIRSTTRACK
2390 case "$CDROMREADERSYNTAX" in
2391 flac) READTRACKNUMS="$FIRSTTRACK.1-$(($LASTTRACK + 1)).0" ;;
2392 cdparanoia) READTRACKNUMS="$FIRSTTRACK-$LASTTRACK" ;;
2393 cdda2wav) READTRACKNUMS="$FIRSTTRACK+$LASTTRACK" ;;
2394 *) echo "abcde error: $CDROMREADERSYNTAX does not support ONETRACK mode"
2400 CDDBTRACKNUM=$(expr $UTRACKNUM - 1)
2401 if [ "$USEPIPES" = "y" ]; then
2402 TEMPARG="PIPERIPPER_$CDROMREADERSYNTAX"
2403 FILEARG="$( eval echo "\$$TEMPARG" )"
2405 PIPE_MESSAGE="and encoding "
2407 WAVDATA="$ABCDETEMPDIR/track$UTRACKNUM.wav"
2408 case "$CDROMREADERSYNTAX" in
2409 ## FIXME ## Find the cases for dagrab and flac, to avoid exceptions
2411 FILEARG="--output-name=$WAVDATA"
2414 FILEARG="-f $WAVDATA"
2422 if [ "$1" = "onetrack" ]; then
2423 echo "Grabbing ${PIPE_MESSAGE}tracks $UTRACKNUM - $LASTTRACK as one track ..." >&2
2425 if [ -r "$CDDBDATA" ]; then
2426 getcddbinfo TRACKNAME
2427 echo "Grabbing ${PIPE_MESSAGE}track $UTRACKNUM: $TRACKNAME..." >&2
2429 echo "Grabbing ${PIPE_MESSAGE}track $UTRACKNUM..." >&2
2432 case "$CDROMREADERSYNTAX" in
2433 ### FIXME ### use an exception for flac, since it uses -o
2434 ### FIXME ### Shall we just use -o $FILEARG ??
2436 # Avoid problems wit math expressions by unpadding the given UTRACKNUM
2437 STRIPTRACKNUM=$(expr $UTRACKNUM + 0)
2438 nice $READNICE $FLAC -d -f --cue=${READTRACKNUMS:-$STRIPTRACKNUM.1-$(($STRIPTRACKNUM + 1)).0} "$FILEARG" "$CDROM" ;;
2440 nice $READNICE $CDROMREADER -$CDPARANOIACDROMBUS $CDROM ${READTRACKNUMS:-$UTRACKNUM} "$FILEARG" $REDIR ;;
2442 if [ "$OSFLAVOUR" = "OSX" ] ; then
2443 # Hei, we have to unmount the device before running anything like cdda2wav in OSX
2444 disktool -u ${CDROM#/dev/} 0
2445 # Also, in OSX the cdrom device for cdda2wav changes...
2446 CDDA2WAVCDROM="IODVDServices"
2447 elif [ "$OSFLAVOUR" = "FBSD" ] ; then
2448 CDDA2WAVCDROM="$CDROMID"
2450 if [ "$CDROMID" = "" ]; then
2451 CDDA2WAVCDROM="$CDROM"
2453 CDDA2WAVCDROM="$CDROMID"
2456 nice $READNICE $CDROMREADER -D $CDDA2WAVCDROM -t ${READTRACKNUMS:-$UTRACKNUM} "$FILEARG" $REDIR
2458 ## FIXME ## We have an exception for dagrab, since it uses -f
2459 ## FIXME ## Shall we just use -f $FILEARG ??
2460 dagrab) nice $READNICE $CDROMREADER -d $CDROM -v $UTRACKNUM "$FILEARG" $REDIR
2463 # Find the track's mounted path
2464 REALTRACKNUM=$(expr $UTRACKNUM + 0)
2465 FILEPATH=$(mount | grep "$CDROM on" | sed 's/^[^ ]* on \(.*\) (.*/\1/')
2466 FILEPATH=$(find "$FILEPATH" | grep "/$REALTRACKNUM ");
2467 # If the file exists, copy it
2468 if [ -e "$FILEPATH" ] ; then
2469 nice $READNICE $CDROMREADER "$FILEPATH" "$FILEARG" $REDIR
2473 debug) nice $READNICE $CDROMREADER -$CDPARANOIACDROMBUS $CDROM -w $UTRACKNUM-[:1] "$FILEARG" $REDIR
2477 # If we get some error or we get some missing wav
2478 # (as long as we dont use pipes)
2479 if [ "$RETURN" != "0" -o \( ! -s "$WAVDATA" -a X"$USEPIPES" != "Xy" \) ]; then
2480 # Thank goodness errors is only machine-parseable up to the
2481 # first colon, otherwise this woulda sucked
2482 if [ "$RETURN" = "0" -a ! -s "$WAVDATA" ]; then
2483 RETURN=73 # fake a return code as cdparanoia return 0 also on aborted reads
2485 if [ "$USEPIPES" = "y" ]; then
2486 echo "readencodetrack-$UTRACKNUM: $CDROMREADER returned code $RETURN" >> "$ABCDETEMPDIR/errors"
2488 echo "readtrack-$UTRACKNUM: $CDROMREADER returned code $RETURN" >> "$ABCDETEMPDIR/errors"
2492 if [ "$USEPIPES" = "y" ]; then
2493 echo readencodetrack-$UTRACKNUM >> "$ABCDETEMPDIR/status"
2495 echo readtrack-$UTRACKNUM >> "$ABCDETEMPDIR/status"
2497 if [ "$1" = "onetrack" ]; then
2498 echo onetrack >> "$ABCDETEMPDIR/status"
2504 # No values accepted, only uses env variables
2507 if "$CDSPEED" "$CDSPEEDOPTS" "$CDSPEEDVALUE" >/dev/null ; then
2508 vecho "Setting CD speed to ${CDSPEEDVALUE}x"
2510 echo "abcde: unable to set the device speed" >&2
2516 # vecho outputs a message if EXTRAVERBOSE is selected
2519 if [ x"$EXTRAVERBOSE" != "x" ]; then
2521 warning) shift ; log warning "$@" ;;
2529 # decho outputs a debug message if DEBUG is selected
2532 if [ x"$DEBUG" != "x" ]; then
2533 if echo $1 | grep "^\[" > /dev/null 2>&1 ; then
2534 DEBUGECHO=$(echo "$@" | tr -d '[]')
2535 echo "[DEBUG] $DEBUGECHO: `eval echo \\$${DEBUGECHO}`"
2542 # User-redefinable functions
2543 # Custom filename munging:
2546 #echo "$@" | sed s,:,\ -,g | tr \ /\* __+ | tr -d \'\"\?\[:cntrl:\]
2547 echo "$@" | sed s,:,\ -,g | tr \ / __ | tr -d \'\"\?\[:cntrl:\]
2550 # Custom genre munging:
2553 echo $CDGENRE | tr "[:upper:]" "[:lower:]"
2557 # Empty pre_read function, to be defined in the configuration file.
2564 # Empty post_read function, to be defined in the configuration file.
2570 ###############################################################################
2573 # Start of execution
2574 ###############################################################################
2579 # Defaults to FreeDB, but a python musicbrainz can be used
2581 CDDBURL="http://freedb.freedb.org/~cddb/cddb.cgi"
2582 CDDBSUBMIT=freedb-submit@freedb.org
2584 HELLOINFO="$(whoami)@$(hostname)"
2586 CDDBLOCALPOLICY="always"
2587 CDDBLOCALRECURSIVE="y"
2588 CDDBLOCALDIR="$HOME/.cddb"
2591 # List of fields we parse and show during the CDDB parsing...
2592 SHOWCDDBFIELDS="year,genre"
2595 #CDROMREADERSYNTAX=cdparanoia
2596 ENCODERSYNTAX=default
2598 MP3ENCODERSYNTAX=default
2599 OGGENCODERSYNTAX=default
2600 FLACENCODERSYNTAX=default
2601 SPEEXENCODERSYNTAX=default
2602 MPPENCODERSYNTAX=default
2603 AACENCODERSYNTAX=default
2604 NORMALIZERSYNTAX=default
2605 CUEREADERSYNTAX=default
2607 OUTPUTFORMAT='${ARTISTFILE}-${ALBUMFILE}/${TRACKNUM}.${TRACKFILE}'
2608 # Use the following VAOUTPUTFORMAT to revert to 2.0.x VA format:
2609 #VAOUTPUTFORMAT=${OUTPUTFORMAT}
2610 VAOUTPUTFORMAT='Various-${ALBUMFILE}/${TRACKNUM}.${ARTISTFILE}-${TRACKFILE}'
2611 ONETRACKOUTPUTFORMAT='${ARTISTFILE}-${ALBUMFILE}/${ALBUMFILE}'
2612 VAONETRACKOUTPUTFORMAT='Various-${ALBUMFILE}/${ALBUMFILE}'
2613 PLAYLISTFORMAT='${ARTISTFILE}-${ALBUMFILE}.${OUTPUT}.m3u'
2614 PLAYLISTDATAPREFIX=''
2615 VAPLAYLISTFORMAT='${ARTISTFILE}-${ALBUMFILE}.${OUTPUT}.m3u'
2616 VAPLAYLISTDATAPREFIX=''
2624 VARIOUSARTISTSTYLE=forward
2630 # If using scsi devices, cdda2wav needs a CDROMID, instead of a device node
2631 # i.e. CDROMID="1,0,0"
2633 # If we are using the IDE bus, we need CDPARANOIACDROMBUS defined as "d"
2634 # If we are using the ide-scsi emulation layer, we need to define a "g"
2635 CDPARANOIACDROMBUS="d"
2637 # program paths - defaults to checking your $PATH
2644 XINGMP3ENC=xingmp3enc
2661 CDPARANOIA=cdparanoia
2667 MUSICBRAINZ=musicbrainz-get-tracks
2671 VORBISCOMMENT=vorbiscomment
2673 NORMALIZE=normalize-audio
2675 VORBISGAIN=vorbisgain
2681 CUE2DISCID=cue2discid
2683 # Options for programs called from abcde
2718 VORBISCOMMENTOPTS="-R"
2719 METAFLACOPTS="--no-utf8-convert"
2722 # Default to one process if -j isn't specified
2725 # List of actions to perform - by default, run to completion
2726 ACTIONS=cddb,read,encode,tag,move,clean
2728 # This option is basicaly for Debian package dependencies:
2729 # List of prefered outputs - by default, run with whatever we have in the path
2730 DEFAULT_OUTPUT_BINARIES=vorbis:oggenc,flac:flac,mp3:lame,mp3:bladeenc,spx:speex,m4a:faac
2732 # List of prefered cdromreaders - by default, run whichever we have in the path
2733 DEFAULT_CDROMREADERS="cdparanoia cdda2wav"
2735 # Asume fetch if under FreeBSD. curl is used for Mac OS X. wget is used for
2736 # Linux/OpenBSD. ftp is user for NetBSD.
2737 # Let's use these checkings to determine the OS flavour, which will be used
2739 if [ X$(uname) = "XFreeBSD" ] ; then
2744 elif [ X$(uname) = "XDarwin" ] ; then
2747 # We should have disktool in OSX, but let's be sure...
2749 CDROMREADERSYNTAX=cddafs
2750 elif [ X$(uname) = "XOpenBSD" ] ; then
2754 elif [ X$(uname) = "XNetBSD" ] ; then
2758 elif [ X$(uname) = "SunOS" ] ; then
2766 # If CDDBAVAIL is set to n, no CDDB read is done
2767 # If USEID3 is set to n, no ID3 tagging is done
2772 if [ -z "$OUTPUTDIR" ]; then
2776 if [ -z "$WAVOUTPUTDIR" ]; then
2777 WAVOUTPUTDIR="$OUTPUTDIR"
2780 # Load system defaults
2781 if [ -r /etc/abcde.conf ]; then
2784 # Load user preference defaults
2785 if [ -r $HOME/.abcde.conf ]; then
2789 # By this time, we need some HTTPGETOPTS already defined.
2790 # If the user has defined a non-default HTTPGET method, we should not be empty.
2792 if [ "$HTTPGETOPTS" = "" ] ; then
2794 wget) HTTPGETOPTS="-q -O -";;
2795 curl) HTTPGETOPTS="-f -s";;
2796 fetch)HTTPGETOPTS="-q -o -";;
2797 ftp) HTTPGETOPTS="-a -V -o - ";;
2798 *) log warning "HTTPGET in non-standard and HTTPGETOPTS are not defined." ;;
2802 # If the CDROM has not been set yet, find a suitable one.
2803 # If this is a devfs system, default to /dev/cdroms/cdrom0
2804 # instead of /dev/cdrom
2805 if [ "$CDROM" = "" ] ; then
2806 if [ -e /dev/cdroms/cdrom0 ]; then
2807 CDROM=/dev/cdroms/cdrom0
2808 elif [ -e /dev/cdrom ]; then
2810 elif [ -e /dev/cd0c ]; then
2812 elif [ -e /dev/acd0c ]; then
2814 elif [ -e /dev/disk1 ]; then
2819 # Parse command line options
2820 #while getopts 1a:bc:C:d:Dehj:klLmMnNo:pPr:Rs:S:t:T:vVxw:W: opt ; do
2821 while getopts 1a:bBc:C:d:Defghj:klLmMnNo:pPr:s:S:t:T:uvVxw:W:z opt ; do
2824 a) ACTIONS="$OPTARG" ;;
2825 A) EXPACTIONS="$OPTARG" ;;
2827 B) NOBATCHREPLAYGAIN=y ;;
2828 c) if [ -e "$OPTARG" ] ; then . "$OPTARG" ; else log error "config file \"$OPTARG\" cannot be found." ; exit 1 ; fi ;;
2829 C) DISCID="$( echo ${OPTARG#abcde.} | tr -d /)" ;;
2830 d) CDROM="$OPTARG" ;;
2832 e) ERASEENCODEDSTATUS=y ;;
2834 e) ERASEENCODEDSTATUS=y ;;
2835 E) ENCODING="$OPTARG" ;;
2839 j) MAXPROCS="$OPTARG" ;;
2842 L) CDDBUSELOCAL=y ;;
2847 o) OUTPUTTYPE="$OPTARG" ;;
2850 r) REMOTEHOSTS="$OPTARG" ;;
2851 R) CDDBLOCALRECURSIVE=y ;;
2852 s) SHOWCDDBFIELDS="$OPTARG" ;;
2853 S) CDSPEEDVALUE="$OPTARG" ;;
2854 t) STARTTRACKNUMBER="$OPTARG" ;;
2855 T) STARTTRACKNUMBER="$OPTARG" ; STARTTRACKNUMBERTAG="y" ;;
2859 echo "This is abcde v$VERSION."
2860 echo "Usage: abcde [options] [tracks]"
2861 echo "abcde -h for extra help"
2864 V) EXTRAVERBOSE="y" ;;
2866 w) COMMENT="$OPTARG" ;;
2867 W) if echo $OPTARG | grep "[[:digit:]]" > /dev/null 2>&1 ; then
2868 STARTTRACKNUMBER="${OPTARG}01" ; STARTTRACKNUMBERTAG="y" ; COMMENT="CD${OPTARG}"
2870 log error "argument of -W must be integer"
2874 z) DEBUG=y ; CDROMREADERSYNTAX=debug ; EJECTCD="n" ;;
2879 shift $(($OPTIND - 1))
2881 # Here it comes the worse part of the whole thing. From here until we start
2882 # ripping, we have a mixture of sanity checks, verifications, default settigs
2883 # and other crazy stuff that interdepends, but hey, someone has to do it.
2885 # If the user specified a flac file, then switch to special flac mode
2886 if echo "$CDROM" | grep -i '.flac$' > /dev/null 2>&1 ; then
2887 if [ ! -f "$CDROM" ]; then
2888 log error "the defined file for FLAC ripping cannot be found" >&2
2891 vecho warning "switching to flac CDROMREADERSYNTAX..."
2892 CDROMREADERSYNTAX=flac
2893 # Added a need on CUE2DISCID until we manage to convert the python script to bash.
2899 # If the user provided a DISCID, disable eject
2900 if [ -n "$DISCID" ] || [ "$CDROMREADERSYNTAX" = "flac" ]; then EJECTCD=n ; fi
2902 # Check the available cd rippers in the system, from the ones we know.
2903 if [ "$CDROMREADERSYNTAX" = "" ]; then
2904 for DEFAULT_CDROMREADER in $DEFAULT_CDROMREADERS; do
2905 if new_checkexec $DEFAULT_CDROMREADER; then
2906 CDROMREADERSYNTAX=$DEFAULT_CDROMREADER
2910 if [ "$CDROMREADERSYNTAX" = "" ]; then
2911 log error "no cdreader found in your PATH"
2912 log error "hints: are all dependencies installed? has the \$PATH been modified?"
2917 # Decide if we can continue.
2918 if [ "$ONETRACK" = "y" ]; then
2919 # FIXME # remove check as soon as we find out about the other readers
2920 case "$CDROMREADERSYNTAX" in
2924 *) log error "$CDROMREADERSYNTAX does not support ONETRACK mode"
2927 if [ "$BATCHNORM" = "y" ]; then
2928 log warning "BATCHNORM mode is not compatible with ONETRACK mode. Disabling..."
2931 if [ "$NOGAP" = "y" ]; then
2932 log warning "NOGAP mode is not compatible with ONETRACK mode. Disabling..."
2935 # It does not matter how many tracks we want. In ONETRACK mode we grab them all
2936 # FIXME # allow ranges of tracks to be selected for onetrack ripping
2937 if [ $# -gt 0 ]; then
2938 log warning "ONETRACK mode selected, grabbing all tracks..."
2941 while [ $# -gt 0 ]; do
2942 # Range parsing code courtesy of Vincent Ho
2943 RSTART=$(echo $1 | cut -f1 -d-)
2944 REND=$(echo $1 | cut -f2 -d-)
2945 if [ "$RSTART" = "$REND" ]; then
2948 NEWTRACKS=$(f_seq_line $RSTART $REND)
2950 TRACKQUEUE=$(echo "$TRACKQUEUE" "$NEWTRACKS")
2955 # List of valid actions: cddb,read,normalize,encode,tag,move,playlist,clean
2956 # List of experimental actions: retag,transcode
2958 # Determine what actions are to be done from $ACTIONS and set the
2959 # following environment variables for them:
2972 for ACTION in $(echo $ACTIONS | tr , \ )
2975 default) DOCDDB=y; DOREAD=y; DOENCODE=y; DOTAG=y; DOMOVE=y; DOCLEAN=y;;
2978 normalize) DONORMALIZE=y; DOREAD=y;;
2979 # preprocess) DOPREPROCESS=y; DOREAD=y;;
2980 encode) DOENCODE=y; DOREAD=y;;
2981 # postprocess) DOPREPROCESS=y; DOENCODE=y; DOREAD=y;;
2982 tag) DOTAG=y; DOREAD=y; DOENCODE=y; DOCDDB=y;;
2983 move) DOMOVE=y; DOTAG=y; DOREAD=y; DOENCODE=y; DOCDDB=y;;
2984 replaygain) DOCDDB=y; DOREAD=y; DOENCODE=y; DOTAG=y; DOMOVE=y; DOREPLAYGAIN=y;;
2985 playlist) DOCDDB=y; DOPLAYLIST=y;;
2990 if [ "$DONORMALIZE" = "y" ] && [ "$DOREPLAYGAIN" = "y" ]; then
2991 # FIXME # should we abort on error or just inform the user?
2992 log warning "selected both normalize and replaygain actions"
2995 for SHOWCDDBFIELD in $(echo $SHOWCDDBFIELDS | tr , \ ); do
2996 case $SHOWCDDBFIELD in
2997 y*|Y*) SHOWCDDBYEAR="y";;
2998 g*|G*) SHOWCDDBGENRE="y";;
3003 # At this point a CDROM has to be defined, so we check it exists.
3004 if [ X"$CDROM" != "X" ] ; then
3005 if [ "$CDROMREADERSYNTAX" = "cdda2wav" ] && [ "$NEEDCDROMID" = "y" ] ; then
3006 if [ "$OSFLAVOUR" = "FBSD" ]; then
3007 if echo "$CDROMID" | grep "^[0-9],[0-9],[0-9]$" >/dev/null 2>&1 ; then :; else
3008 log error "CDROMID not in the right format for $CDROMREADERSYNTAX"
3009 log error "Use \"cdrecord -scanbus\" to obtain a adecuate ID an set CDROMID accordingly"
3013 elif [ ! -e "$CDROM" -a X"$DOREAD" = "Xy" ]; then
3014 log error "CDROM device cannot be found."
3017 # avoid processing if we are not going to hit the CDROM.
3018 elif [ X"$DOREAD" = "Xy" ]; then
3019 log error "CDROM has not been defined or cannot be found"
3023 # USEPIPES pre-tests, before we get into more serious stuff
3024 # Not compatible with:
3025 # - multiple outputs
3027 # - lowdisk algorithm
3029 if [ X"$USEPIPES" = "Xy" ]; then
3030 if [ $(echo "$OUTPUTTYPE" | tr , \ | wc -w ) -gt 1 ]; then
3031 log error "Unix pipes not compatible with multiple outputs"
3034 if [ X"$DONORMALIZE" = "Xy" ]; then
3035 log error "Unix pipes not compatible with normalizer"
3036 # FIXME # Do we need to exit or shall we just disable the mode?
3039 if [ X"$BATCHNORM" = "Xy" ]; then
3040 log error "Unix pipes not compatible with BATCHNORM encoding"
3043 if [ X"$NOGAP" = "Xy" ]; then
3044 log error "Unix pipes not compatible with NOGAP encoding"
3047 if [ X"$DOENCODE" = "Xn" ]; then
3048 vecho warning "Disabling Unix pipes since we are not encoding!"
3051 if [ X"$LOWDISK" = "Xy" ]; then
3052 log error "Unix pipes not compatible with lowdisk algorithm"
3057 # LOWDISK pre-tests, before we get into more problematic stuff
3058 # Not compatible with anything that needs all the files in the hard disc:
3061 if [ X"$LOWDISK" = "Xy" ]; then
3062 if [ X"$BATCHNORM" = "Xy" ]; then
3063 log error "Unix pipes not compatible with BATCHNORM encoding"
3066 if [ X"$NOGAP" = "Xy" ]; then
3067 log error "Unix pipes not compatible with NOGAP encoding"
3072 # BATCHNORM pre-tests, before we get into serious problems
3073 # Not compatible with
3074 if [ "$BATCHNORM" = "y" ] && [ "$DONORMALIZE" = "n" ]; then
3075 vecho warning "Disabling BATCHNORM since we are not normalizing!"
3079 # Check the encoding format from the ones available in the system, if nothing has been configured in the system.
3080 if [ X"$OUTPUTTYPE" = "X" ]; then
3081 for DEFAULT_OUTPUT in $( echo "$DEFAULT_OUTPUT_BINARIES" | tr , \ ); do
3082 DEFAULT_OUTPUT_FORMAT="$(echo $DEFAULT_OUTPUT | cut -d ":" -f 1)"
3083 DEFAULT_OUTPUT_BINARY="$(echo $DEFAULT_OUTPUT | cut -d ":" -f 2)"
3084 if [ -x $(which $DEFAULT_OUTPUT_BINARY) ] ; then
3085 OUTPUTTYPE=$DEFAULT_OUTPUT_FORMAT
3086 vecho "No default output type defined. Autoselecting $OUTPUTTYPE..." >&2
3090 if [ X"$OUTPUTTYPE" = "X" ]; then
3091 log error "no encoder found in the PATH"
3092 log error "hints: are all dependencies installed? has the \$PATH been modified?"
3097 # Decide which CDROM reader we're gonna use
3098 case "$CDROMREADERSYNTAX" in
3100 CDROMREADER="$CDPARANOIA"
3101 CDROMREADEROPTS="$CDPARANOIAOPTS"
3104 CDROMREADER="$CDDA2WAV"
3105 CDROMREADEROPTS="$CDDA2WAVOPTS"
3108 CDROMREADER="$DAGRAB"
3109 CDROMREADEROPTS="$DAGRABOPTS"
3112 CDROMREADER="$CDDAFS"
3113 CDROMREADEROPTS="$CDDAFSOPTS"
3117 CDROMREADEROPTS="$FLACOPTS"
3121 # There's only one normalize...
3122 case "$NORMALIZERSYNTAX" in
3124 NORMALIZER="$NORMALIZE"
3125 NORMALIZEROPTS="$NORMALIZEOPTS"
3129 # Allow -o OUTPUT(1):OPTIONS(1),...,OUTPUT(N):OPTIONS(N) mode of operation
3130 if echo "$OUTPUTTYPE" | grep ":" > /dev/null 2>&1 ; then
3131 for OUTPUT in "$(echo "$OUTPUTTYPE" | tr \ \|| tr , \ | tr \| \ )"; do
3133 vorbis:*|ogg:*) OGGENCODEROPTSCLI="$( echo $OUTPUT | cut -d: -f2- )" ;;
3134 mp3:*) MP3ENCODEROPTSCLI="$( echo $OUTPUT | cut -d: -f2- )" ;;
3135 flac:*) FLACENCODEROPTSCLI="$( echo $OUTPUT | cut -d: -f2- )" ;;
3136 spx:*) SPEEXENCODEROPTSCLI="$( echo $OUTPUT | cut -d: -f2- )" ;;
3137 mpc:*) MPPENCODEROPTSCLI="$( echo $OUTPUT | cut -d: -f2- )" ;;
3138 m4a:*) AACENCODEROPTSCLI="$( echo $OUTPUT | cut -d: -f2- )" ;;
3141 for OUTPUT in "$(echo "$OUTPUTTYPE" | tr , \ )"; do
3142 TEMPOUTPUT=$( echo "$OUTPUT" | cut -d: -f1 )
3143 TEMPOUTPUTTYPE="${TEMPOUTPUTTYPE:+$TEMPOUTPUTTYPE,}$TEMPOUTPUT"
3145 OUTPUTTYPE="$TEMPOUTPUTTYPE"
3148 # If nothing has been specified, use oggenc for oggs and lame for mp3s and flac
3149 # for flacs and speexenc for speex and mppenc for mpps and faac for m4as
3151 # Getting ready for multiple output changes
3152 for OUTPUT in $(echo $OUTPUTTYPE | tr , \ )
3156 [ "$OGGENCODERSYNTAX" = "default" ] && OGGENCODERSYNTAX=oggenc
3157 [ "$DOTAG" = "y" ] && NEEDCOMMENTER=y
3158 [ "$DOREPLAYGAIN" = "y" ] && NEEDVORBISGAIN=y
3159 OGGOUTPUTCONTAINER=ogg
3162 [ "$MP3ENCODERSYNTAX" = "default" ] && MP3ENCODERSYNTAX=lame
3163 [ "$DOTAG" = "y" ] && NEEDTAGGER=y
3164 [ "$DOREPLAYGAIN" = "y" ] && NEEDMP3GAIN=y
3167 [ "$FLACENCODERSYNTAX" = "default" ] && FLACENCODERSYNTAX=flac
3168 [ "$DOTAG" = "y" ] && NEEDMETAFLAC=y
3169 [ "$DOREPLAYGAIN" = "y" ] && NEEDMETAFLAC=y
3170 [ "$ONETRACK" = "y" ] && [ "$MAKECUEFILE" = "y" ] && NEEDMETAFLAC=y
3173 [ "$SPEEXENCODERSYNTAX" = "default" ] && SPEEXENCODERSYNTAX=speexenc
3174 # [ "$DOREPLAYGAIN" = "y" ] &&
3177 [ "$MPPENCODERSYNTAX" = "default" ] && MPPENCODERSYNTAX=mppenc
3178 [ "$DOREPLAYGAIN" = "y" ] && NEEDMPPGAIN=y
3181 [ "$AACENCODERSYNTAX" = "default" ] && AACENCODERSYNTAX=faac
3184 if [ "$KEEPWAVS" = "y" ]; then
3185 vecho "Setting the KEEPWAVS option, since the resulting wav files were requested..."
3189 *) log error "Invalid OUTPUTTYPE defined"
3195 # decide which encoder
3196 case "$MP3ENCODERSYNTAX" in
3198 MP3ENCODEROPTS="${MP3ENCODEROPTSCLI:-$LAMEOPTS}"
3202 MP3ENCODEROPTS="${MP3ENCODEROPTSCLI:-$TOOLAMEOPTS}"
3203 MP3ENCODER="$TOOLAME"
3206 MP3ENCODEROPTS="${MP3ENCODEROPTSCLI:-$GOGOOPTS}"
3210 MP3ENCODEROPTS="${MP3ENCODEROPTSCLI:-$BLADEENCOPTS}"
3211 MP3ENCODER="$BLADEENC"
3214 MP3ENCODEROPTS="${MP3ENCODEROPTSCLI:-$L3ENCOPTS}"