2 # Copyright (c) 1998-2001 Robert Woodcock <rcw@debian.org>
3 # Copyright (c) 2003-2006 Jesus Climent <jesus.climent@hispalinux.es>
4 # Copyright (c) 2009-2012 Colin Tuckley <colint@debian.org>
5 # Copyright (c) 2012 Steve McIntyre <93sam@@debian.org>
6 # This code is hereby licensed for public consumption under either the
7 # GNU GPL v2 or greater, or Larry Wall's Artistic license - your choice.
9 # You should have received a copy of the GNU General Public License along
10 # with this program; if not, write to the Free Software Foundation, Inc.,
11 # 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
13 # Copyright for this work is to expire January 1, 2010, after which it
14 # shall be public domain.
18 VERSION='2.5.5-UNRELEASED'
22 echo "This is abcde v$VERSION."
23 echo "Usage: abcde [options] [tracks]"
25 echo "-1 Encode the whole CD in a single file"
26 echo "-a <action1[,action2]...>"
27 echo " Actions to perform:"
28 echo " cddb,read,normalize,encode,tag,move,replaygain,playlist,clean"
29 #echo "-A Experimental actions (retag, transcode)"
30 echo "-b Enable batch normalization"
31 #echo "-B Disable batch replaygain (do file by file)"
33 echo " Specify a configuration file (overrides system and user config files)"
35 echo " Specify discid to resume from (only needed if you no longer have the cd)"
37 echo " Specify CDROM device to grab (flac uses a single-track flac file)"
38 echo "-D Debugging mode (equivalent to sh -x abcde)"
39 echo "-e Erase encoded track information from status file"
40 echo "-f Force operations that otherwise are considered harmful. Read \"man abcde\""
41 echo "-g Use \"lame --nogap\" for MP3 encoding. Disables low disk and pipes flags"
42 echo "-h This help information"
43 #echo "-i Tag files while encoding, when possible (local only) -NWY-"
44 echo "-j <#> Number of encoder processes to run at once (localhost)"
45 echo "-k Keep the wav tracks for later use"
46 echo "-l Use low disk space algorithm"
47 echo "-L Use local CDDB storage directory"
48 echo "-m Modify playlist to include CRLF endings, to comply with some players"
49 #echo " WARNING: Deprecated. Use \"cue\" action"
50 #echo "-M Create a CUE file"
51 echo "-n No lookup. Don't query CDDB, just create and use template"
52 echo "-N Noninteractive. Never prompt for anything"
53 echo "-o <type1[,type2]...>"
54 echo " Output file type(s) (vorbis,mp3,flac,spx,mpc,wav,m4a,opus). Defaults to vorbis"
55 echo "-p Pad track numbers with 0's (if less than 10 tracks)"
56 echo "-P Use UNIX pipes to read+encode without wav files"
57 echo "-r <host1[,host2]...>"
58 echo " Also encode on these remote hosts"
60 echo " Show fields from the CDDB info (year,genre)"
61 echo "-S <#> Set the CD speed"
62 echo "-t <#> Start the track numbering at a given number"
63 echo "-T <#> Same as -t but modifies tag numbering"
64 echo "-U Do NOT use UNICODE (UTF8) tags and comments"
65 echo "-v Show version number and exit"
66 echo "-V Be a bit more verbose about what is happening behind the scenes"
67 echo "-x Eject CD after all tracks are read"
69 echo " Add a comment to the CD tracks"
70 echo "-W <#> Concatenate CDs: -T #01 -w \"CD #\""
71 echo "-z Use debug CDROMREADERSYNTAX option (needs cdparanoia)"
73 echo "Tracks is a space-delimited list of tracks to grab."
74 echo "Ranges specified with hyphens are allowed (i.e., 1-5)."
76 #echo "Double hyphens are used to concatenate tracks"
81 echo "$@" >> "$ABCDETEMPDIR/status"
84 # log [level] [message]
86 # log outputs the right message in a common format
92 error) echo "[ERROR] abcde: $@" >&2 ;;
93 warning) echo "[WARNING] $@" >&2 ;;
94 info) echo "[INFO] $@" ;;
98 # Functions to replace the need of seq, which is too distribution dependent.
102 while [ $i -ne `expr $2 + 1` ]
112 if echo $i | grep "[[:digit:]]" > /dev/null 2>&1 ; then
113 while [ $i -ne `expr $2 + 1` ]
120 log error "syntax error while processing track numbers ($i)"
125 # Functions to replace the need of awk {print $1} and {print $NF}
128 if [ X"$1" = "X" ]; then
129 for first in `cat`; do
140 if [ X"$1" = "X" ]; then
141 for stdin in `cat`; do
145 for last in $@ ; do :; done
150 # checkstatus [blurb]
151 # Returns "0" if the blurb was found, returns 1 if it wasn't
152 # Puts the blurb content, if available, on stdout.
153 # Otherwise, returns "".
156 # Take the last line in the status file if there's multiple matches
158 BLURB=$(grep -E $PATTERN "$ABCDETEMPDIR/status" | tail -n 1)
160 if [ -z "$BLURB" ]; then
165 # See if there's a = in it
166 if [ "$(echo $BLURB | grep -c =)" != "0" ]; then
167 echo "$(echo $BLURB | cut -f2- -d=)"
173 # checkwarnings [blurb]
174 # Returns "0" if the blurb was found (meaning there was an warning),
175 # returns 1 if it wasn't (yes this is a little backwards).
176 # Does not print the blurb on stdout.
177 # Otherwise, returns "".
180 if [ -e "$ABCDETEMPDIR/warnings" ]; then :; else
183 # Take the last line in the status file if there's multiple matches
185 BLURB="$(grep -E $PATTERN "$ABCDETEMPDIR/warnings" | tail -n 1)"
187 if [ -z "$BLURB" ]; then
188 # negative, we did not have a negative...
191 # affirmative, we had a negative...
196 # checkerrors [blurb]
197 # Returns "0" if the blurb was found (meaning there was an error),
198 # returns 1 if it wasn't (yes this is a little backwards).
199 # Does not print the blurb on stdout.
200 # Otherwise, returns "".
203 if [ -e "$ABCDETEMPDIR/errors" ]; then :; else
206 # Take the last line in the status file if there's multiple matches
208 BLURB="$(grep -E $PATTERN "$ABCDETEMPDIR/errors" | tail -n 1)"
210 if [ -z "$BLURB" ]; then
211 # negative, we did not have a negative...
214 # affirmative, we had a negative...
220 # Finds the right pager in the system to display a file
224 # Use the debian sensible-pager wrapper to pick the pager
225 # user has requested via their $PAGER environment variable
226 if [ -x "/usr/bin/sensible-pager" ]; then
227 /usr/bin/sensible-pager "$PAGEFILE"
228 elif [ -x "$PAGER" ]; then
229 # That failed, try to load the preferred editor, starting
230 # with their PAGER variable
232 # If that fails, check for less
233 elif [ -x /usr/bin/less ]; then
234 /usr/bin/less -f "$PAGEFILE"
235 # more should be on all UNIX systems
236 elif [ -x /bin/more ]; then
237 /bin/more "$PAGEFILE"
239 # No bananas, just cat the thing
244 # run_command [blurb] [command...]
245 # Runs a command, silently if necessary, and updates the status file
251 # See if this is supposed to be silent
252 if [ "$(checkstatus encode-output)" = "loud" ]; then
256 # Special case for SMP, since
257 # encoder output is never displayed, don't mute echos
258 if [ -z "$BLURB" -a "$MAXPROCS" != "1" ]; then
267 normalize|normalize-audio)
268 if [ "$RETURN" = "2" ]; then
269 # File was already normalized.
274 if [ "$RETURN" != "0" ]; then
275 # Put an error in the errors file. For various reasons we
276 # can't capture a copy of the program's output but we can
277 # log what we attempted to execute and the error code
278 # returned by the program.
279 if [ "$BLURB" ]; then
282 echo "${TWEAK}returned code $RETURN: $@" >> "$ABCDETEMPDIR/errors"
283 return $RETURN # Do not pass go, do not update the status file
285 if [ "$BLURB" ]; then
286 echo $BLURB >> "$ABCDETEMPDIR/status"
290 # relpath() and slash() are Copyright (c) 1999 Stuart Ballard and
291 # distributed under the terms of the GNU GPL v2 or later, at your option
293 # Function to determine if a word contains a slash.
302 # Function to give the relative path from one file to another.
303 # Usage: relpath fromfile tofile
304 # eg relpath music/Artist/Album.m3u music/Artist/Album/Song.mp3
305 # (the result would be Album/Song.mp3)
306 # Output is relative path to $2 from $1 on stdout
308 # This code has the following restrictions:
309 # Multiple ////s are not collapsed into single /s, with strange effects.
310 # Absolute paths and ../s are handled wrong in FR (but they work in TO)
311 # If FR is a directory it must have a trailing /
319 /*) ;; # No processing is needed for absolute paths
321 # Loop through common prefixes, ignoring them.
322 while slash "$FR" && [ "$(echo "$FR" | cut -d/ -f1)" = "$(echo "$TO" | cut -d/ -f1)" ]
324 FR="$(echo "$FR" | cut -d/ -f2-)"
325 TO="$(echo "$TO" | cut -d/ -f2-)"
327 # Loop through directory portions left in FR, adding appropriate ../s.
330 FR="$(echo "$FR" | cut -d/ -f2-)"
341 if [ ! "$@" = "" ]; then
342 # Cut off any command-line option we added in
343 X=$(echo $@ | cut -d' ' -f2)
344 if [ "$(which $X)" = "" ]; then
346 elif [ ! -x $(which $X) ]; then
355 if [ ! "$@" = "" ]; then
356 # Cut off any command-line option we added in
357 X=$(echo $@ | cut -d' ' -f2)
358 # Test for built-in abcde.function
359 [ "$X" != "${X#abcde.}" ] && type $X >/dev/null 2>&1 && return
360 if [ "$(which $X)" = "" ]; then
361 log error "$X is not in your path." >&2
362 log info "Define the full path to the executable if it exists on your system." >&2
363 if [ -e /etc/debian_release ] ; then
365 oggenc) MISSING_PACKAGE=vorbis-tools ;;
366 lame|flac) MISSING_PACKAGE=$X ;;
368 log info "Hint: apt-get install $MISSING_PACKAGE" >&2
371 elif [ ! -x "$(which $X)" ]; then
372 log error "$X is not executable." >&2
378 # diffentries <filename> <max_value> <entry1>,<entry2>
379 # max_value: the range of entries goes from 1 to <max_value>
384 local CDDBDIFFCHOICES=$1
386 local CDDBDIFFCHOICE="$@"
387 if [ ! X"$DIFF" = "X" ]; then
388 PARSECHOICE1=$(echo $CDDBDIFFCHOICE | cut -d"," -f1 | xargs printf %d 2>/dev/null)
389 PARSECHOICE2=$(echo $CDDBDIFFCHOICE | cut -d"," -f2 | xargs printf %d 2>/dev/null)
390 if [ $PARSECHOICE1 -lt 1 ] || [ $PARSECHOICE1 -gt $CDDBDIFFCHOICES ] || \
391 [ $PARSECHOICE2 -lt 1 ] || [ $PARSECHOICE2 -gt $CDDBDIFFCHOICES ] || \
392 [ $PARSECHOICE1 -eq $PARSECHOICE2 ]; then
393 echo "Invalid diff range. Please select two comma-separated numbers between 1 and $CDDBDIFFCHOICES" >&2
395 # We parse the 2 choices to diff, store them in temporary files and diff them.
396 for PARSECHOICE in $(echo $CDDBDIFFCHOICE | tr , \ ); do
397 do_cddbparse "$ABCDETEMPDIR/$FILENAME.$PARSECHOICE" > "$ABCDETEMPDIR/$FILENAME.parsechoice.$PARSECHOICE"
399 echo "Showing diff between choices $PARSECHOICE1 and $PARSECHOICE2..." > "$ABCDETEMPDIR/$FILENAME.diff"
400 $DIFF $DIFFOPTS "$ABCDETEMPDIR/$FILENAME.parsechoice.$PARSECHOICE1" "$ABCDETEMPDIR/$FILENAME.parsechoice.$PARSECHOICE2" >> "$ABCDETEMPDIR/$FILENAME.diff"
401 if [ $(cat "$ABCDETEMPDIR/$FILENAME.diff" | wc -l) -ge 24 ]; then
402 page "$ABCDETEMPDIR/$FILENAME.diff"
404 cat "$ABCDETEMPDIR/$FILENAME.diff" >&2
408 echo "The diff program was not found in your path. Please choose a number between 0 and $CDDBDIFFCHOICES." >&2
413 # Finds an specific field from cddbinfo
418 TRACKNAME="$(grep ^TTITLE$CDDBTRACKNUM= "$CDDBDATA" | head -n 1 | cut -f2- -d= | tr -d \[:cntrl:\] | sed 's/\ \+$//')"
421 TRACKNAME="$(grep ^TTITLE$CDDBTRACKNUM= "$CDDBDATA" | cut -f2- -d= | tr -d \[:cntrl:\] | sed 's/\ \+$//')"
424 grep ^EXTT$CDDBTRACKNUM= "$CDDBDATA" | cut -f2- -d= | tr -d \[:cntrl:\] | sed 's/\\n/\n/g'
430 # Get the track number we are going to use for different actions
433 if [ -n "$STARTTRACKNUMBER" ] ; then
434 # Get the trackpadding from the current track, also trim whitespace for MacOSX
435 CURRENTTRACKPADDING=$(echo -n $UTRACKNUM | wc -c | tr -d ' ')
436 TRACKNUM=$( printf %0.${CURRENTTRACKPADDING}d $(expr ${UTRACKNUM} + ${STARTTRACKNUMBER} - $FIRSTTRACK ))
438 TRACKNUM=${UTRACKNUM}
444 # Calculate cddb disc ids without requiring specialized helper programs.
445 # largely copied from cd-discid and musicbrainz examples. some of the steps
446 # don't make sense, but they're necessary to match the ids generated by other
449 ## FIXME ## Right now, we get 2 frames more than with cue2discid ??
450 # data@petit:~$ sh /tmp/cue2discid /home/data/tmp/flac/01.Roisin_Murphy--Ruby_Blue.flac
451 # processing offsetimes 00:00:00 04:47:10 08:20:37 11:46:46 17:45:36 21:41:57 27:32:21 32:03:73 35:39:28 38:27:33 43:50:38 44:42:34
452 # 980b4b0c 12 150 21685 37687 53146 80061 97782 124071 144448 160603 173208 197438 201334 2895
453 # data@petit:~$ metaflac --export-cuesheet-to=- /home/data/tmp/flac/01.Roisin_Murphy--Ruby_Blue.flac| python /home/data/sources/abcde/trunk/examples/cue2discid
454 # 980b4b0c 12 150 21685 37687 53146 80061 97782 124071 144448 160603 173208 197438 201334 2893
456 # Variables: OFFSETS, TRACKS, LEADOUT, [LEADIN]
459 if [ X"$LEADOUT" = "X" ]; then
460 log warning "Error trying to calculate disc ids without lead-out information."
464 # default to a two second lead-in
466 LEADIN=${LEADIN:=150}
468 # number of cdframes per second
471 # reset cddb checksum for cddb disc-id calululation
475 for OFFSET in $(echo $OFFSETS)
477 COOKEDOFFSETS="${COOKEDOFFSETS} $(($OFFSET + $LEADIN))"
479 OFFSETTIME=$(( ($OFFSET + $LEADIN) / $CDFRAMES ))
480 while [ $OFFSETTIME -gt 0 ]; do
481 CDDBCKSUM=$(($CDDBCKSUM + $OFFSETTIME % 10))
482 OFFSETTIME=$(($OFFSETTIME / 10))
487 COOKEDOFFSETS="${COOKEDOFFSETS:1}" # eat the leading space
489 PREGAP=$(($(echo $OFFSETS | cut -f1 -d' ')))
490 TOTALTIME=$(( (($LEADOUT + $LEADIN + $PREGAP) / $CDFRAMES) - (($LEADIN + $PREGAP) / $CDFRAMES)))
492 case "$CDDBMETHOD" in
494 printf -v DISCID "%08lx" $(( ($CDDBCKSUM % 0xff) * 16777216 | $TOTALTIME * 256 | $TRACKS))
497 # FIXME: don't assume the first track is 1
498 echo "dasd: 1 $TRACKS $LEADIN $LEADOUT $OFFSETS "
499 DISCID=$($MUSICBRAINZ --command calcid --discinfo 1 $TRACKS $LEADIN $LEADOUT $OFFSETS)
503 TRACKINFO="${DISCID} $((TRACKS)) ${COOKEDOFFSETS} $((($LEADOUT + $LEADIN + $IDMAGICNUM) / $CDFRAMES))"
508 if checkstatus replaygain; then :; else
509 run_command "" echo "Adding replaygain information..."
510 for TMPOUTPUT in $( echo $OUTPUTTYPE | tr , \ )
514 OUTPUT=$OGGOUTPUTCONTAINER
517 OUTPUT=$OPUSOUTPUTCONTAINER
520 OUTPUT=$FLACOUTPUTCONTAINER
528 for UTRACKNUM in $TRACKQUEUE
530 CDDBTRACKNUM=$(expr $UTRACKNUM - 1)
531 getcddbinfo TRACKNAME
533 TRACKFILE="$(mungefilename "$TRACKNAME")"
534 ARTISTFILE="$(mungefilename "$TRACKARTIST")"
535 ALBUMFILE="$(mungefilename "$DALBUM")"
536 GENRE="$(mungegenre "$GENRE")"
537 YEAR=${CDYEAR:-$CDYEAR}
539 if [ "$ONETRACK" = "y" ]; then
540 if [ "$VARIOUSARTISTS" = "y" ]; then
541 OUTPUTFILE="$(eval echo \""$VAONETRACKOUTPUTFORMAT"\")"
543 OUTPUTFILE="$(eval echo \""$ONETRACKOUTPUTFORMAT"\")"
546 if [ "$VARIOUSARTISTS" = "y" ]; then
547 OUTPUTFILE="$(eval echo \""$VAOUTPUTFORMAT"\")"
549 OUTPUTFILE="$(eval echo \""$OUTPUTFORMAT"\")"
552 OUTPUTFILES[$REPLAYINDEX]="$OUTPUTDIR/$OUTPUTFILE.$OUTPUT"
553 (( REPLAYINDEX = $REPLAYINDEX + 1 ))
557 run_command replaygain-flac nice $ENCNICE $METAFLAC $FLACGAINOPTS "${OUTPUTFILES[@]}"
558 #run_command replaygain-flac true
561 run_command replaygain-vorbis nice $ENCNICE $VORBISGAIN $VORBISGAINOPTS "${OUTPUTFILES[@]}"
564 run_command replaygain-mp3 nice $ENCNICE $MP3GAIN $MP3GAINOPTS "${OUTPUTFILES[@]}"
567 run_command replaygain-mpc nice $ENCNICE $MPPGAIN --auto "${OUTPUTFILES[@]}"
572 if checkerrors "replaygain-.{3,6}"; then :; else
573 run_command replaygain true
578 # This code splits the a Various Artist track name from one of the following
581 # forward: Artist / Track
582 # forward-dash: Artist - Track
583 # reverse: Track / Artist
584 # reverse-dash: Track - Artist
585 # colon: Artist: Track
586 # trailing-paren: Artist (Track)
589 # VARIOUSARTISTS, VARIOUSARTISTSTYLE, TRACKNAME, TRACKARTIST
592 if [ "$VARIOUSARTISTS" = "y" ] && [ ! "$ONETRACK" = "y" ]; then
593 case "$VARIOUSARTISTSTYLE" in
595 DTITLEARTIST="$(echo "$TRACKNAME" | sed 's- / -~-g')"
596 TRACKARTIST="$(echo "$DTITLEARTIST" | cut -f1 -d~)"
597 TRACKNAME="$(echo "$DTITLEARTIST" | cut -f2 -d~)"
600 DTITLEARTIST="$(echo "$TRACKNAME" | sed 's, - ,~,g')"
601 TRACKARTIST="$(echo "$DTITLEARTIST" | cut -f1 -d~)"
602 TRACKNAME="$(echo "$DTITLEARTIST" | cut -f2 -d~)"
605 DTITLEARTIST="$(echo "$TRACKNAME" | sed 's- / -~-g')"
606 TRACKARTIST="$(echo "$DTITLEARTIST" | cut -f2 -d~)"
607 TRACKNAME="$(echo "$DTITLEARTIST" | cut -f1 -d~)"
610 DTITLEARTIST="$(echo "$TRACKNAME" | sed 's, - ,~,g')"
611 TRACKARTIST="$(echo "$DTITLEARTIST" | cut -f2 -d~)"
612 TRACKNAME="$(echo "$DTITLEARTIST" | cut -f1 -d~)"
615 DTITLEARTIST="$(echo "$TRACKNAME" | sed 's-: -~-g')"
616 TRACKARTIST="$(echo "$DTITLEARTIST" | cut -f1 -d~)"
617 TRACKNAME="$(echo "$DTITLEARTIST" | cut -f2 -d~)"
620 DTITLEARTIST="$(echo "$TRACKNAME" | sed 's,^\(.*\) (\(.*\)),\1~\2,')"
621 TRACKARTIST="$(echo "$DTITLEARTIST" | cut -f2 -d~)"
622 TRACKNAME="$(echo "$DTITLEARTIST" | cut -f1 -d~)"
625 elif [ "$VARIOUSARTISTS" = "y" ] && [ "$ONETRACK" = "y" ]; then
626 TRACKARTIST="Various"
628 TRACKARTIST="$DARTIST"
633 local genre=$(echo "${@}" | tr '[A-Z]' '[a-z]')
637 "classic rock") id=1 ;;
655 "industrial") id=19 ;;
656 "alternative") id=20 ;;
658 "death metal") id=22 ;;
660 "soundtrack") id=24 ;;
661 "euro-techno") id=25 ;;
665 "jazz+funk") id=29 ;;
668 "classical") id=32 ;;
669 "instrumental") id=33 ;;
673 "sound clip") id=37 ;;
676 "alt. rock") id=40 ;;
681 "meditative") id=45 ;;
682 "instrum. pop") id=46 ;;
683 "instrum. rock") id=47 ;;
687 "techno-indust.") id=51 ;;
688 "electronic") id=52 ;;
690 "eurodance") id=54 ;;
692 "southern rock") id=56 ;;
697 "christian rap") id=61 ;;
698 "pop/funk"|"pop / funk") id=62 ;;
700 "native american") id=64 ;;
703 "psychadelic") id=67 ;;
705 "showtunes") id=69 ;;
709 "acid punk") id=73 ;;
710 "acid jazz") id=74 ;;
714 "rock & roll") id=78 ;;
715 "hard rock") id=79 ;;
717 "folk/rock") id=81 ;;
718 "national folk") id=82 ;;
725 "bluegrass") id=89 ;;
726 "avantgarde") id=90 ;;
727 "gothic rock") id=91 ;;
728 "progress. rock") id=92 ;;
729 "psychadel. rock") id=93 ;;
730 "symphonic rock") id=94 ;;
731 "slow rock") id=95 ;;
734 "easy listening") id=98 ;;
740 "chamber music") id=104 ;;
742 "symphony") id=106 ;;
743 "booty bass") id=107 ;;
745 "porn groove") id=109 ;;
747 "slow jam") id=111 ;;
751 "folklore") id=115 ;;
753 "power ballad") id=117 ;;
754 "rhythmic soul") id=118 ;;
755 "freestyle") id=119 ;;
757 "punk rock") id=121 ;;
758 "drum solo") id=122 ;;
759 "a capella") id=123 ;;
760 "euro-house") id=124 ;;
761 "dance hall") id=125 ;;
763 "drum & bass") id=127 ;;
764 "club-house") id=128 ;;
765 "hardcore") id=129 ;;
769 "negerpunk") id=133 ;;
770 "polsk punk") id=134 ;;
772 "christian gangsta rap") id=136 ;;
773 "heavy metal") id=137 ;;
774 "black metal") id=138 ;;
775 "crossover") id=139 ;;
776 "contemporary christian")id=140 ;;
777 "christian rock") id=141 ;;
778 "merengue") id=142 ;;
780 "thrash metal") id=144 ;;
783 "synthpop") id=147 ;;
784 "rock/pop"|"rock / pop") id=148 ;;
791 # do_tag [tracknumber]
792 # id3 tags a filename
794 # TRACKS, TRACKNAME, TRACKARTIST, TAGGER, TAGGEROPTS, VORBISCOMMENT, METAFLAC, ATOMICPARSLEY
795 # COMMENT, DALBUM, DARTIST, CDYEAR, CDGENRE
798 COMMENTOUTPUT="$(eval echo ${COMMENT})"
799 if [ -z "$COMMENTOUTPUT" ]; then
800 COMMENTOUTPUT="$(getcddbinfo TRACK-INFO)"
802 if [ "$CDDBMETHOD" = "cddb" ]; then
803 CDDBDISCID=$(echo $TRACKINFO | cut -d' ' -f1)
805 run_command '' echo "Tagging track $1 of $TRACKS: $TRACKNAME..."
806 # If we want to start the tracks with a given number, we need to modify the
807 # TRACKNUM value before evaluation
808 if [ -n "$STARTTRACKNUMBERTAG" ] ; then
811 for OUTPUT in $(echo $OUTPUTTYPE | tr , \ )
815 # id3v2 v0.1.9 claims to have solved the -c bug, so we merge both id3 and id3v2
816 GENREID=$(do_getgenreid "${CDGENRE}")
817 # Set TPE2 in case we have a Various Artists rip.
819 if [ "$VARIOUSARTISTS" = "y" ]; then
826 # FIXME # track numbers in mp3 come with 1/10, so we cannot
827 # happily substitute them with $TRACKNUM
828 # FIXME as well! # Older versions of eyeD3 (< 0.7.0) expect
829 # --set-encoding and --set-text-frame so perhaps some version
830 # sniffing would be useful. Might also be better to simply cut
831 # ties with the older eyeD3... Andrew.
832 # eyeD3 --comment syntax is also different in < and >= 0.7.0
833 run_command tagtrack-$OUTPUT-$1 nice $ENCNICE $TAGGER $TAGGEROPTS \
834 --comment="$COMMENTOUTPUT" -A "$DALBUM" \
835 -a "$TRACKARTIST" -t "$TRACKNAME" ${CDYEAR:+-Y "$CDYEAR"} \
836 -G "$GENREID" -n "${TRACKNUM:-$1}" \
837 ${TRACKNUM:+-N "$TRACKS"} \
838 ${ENCODING:+--encoding="$ENCODING"} \
839 ${TPE2:+--text-frame=TPE2:"$TPE2"} \
840 "$ABCDETEMPDIR/track$1.$OUTPUT"
842 # FIXME # Still not activated...
844 run_command tagtrack-$OUTPUT-$1 nice $ENCNICE \
845 $TAGGER $TAGGEROPTS -c "$COMMENTOUTPUT" \
846 -a "$DALBUM" -n "$TRACKARTIST" -s "$TRACKNAME" \
847 -y "$CDYEAR" -g "$GENREID" -k "${TRACKNUM:-$1}" \
848 "$ABCDETEMPDIR/track$1.$OUTPUT"
851 # FIXME # track numbers in mp3 come with 1/10, so we cannot
852 # happily substitute them with $TRACKNUM
853 run_command tagtrack-$OUTPUT-$1 nice $ENCNICE \
854 $TAGGER $TAGGEROPTS -c "$COMMENTOUTPUT" \
855 -A "$DALBUM" -a "$TRACKARTIST" -t "$TRACKNAME" \
856 -y "$CDYEAR" -g "$GENREID" \
857 -T "${TRACKNUM:-$1}/$TRACKS" \
858 ${TPE2:+--TPE2 "$TPE2"} \
859 "$ABCDETEMPDIR/track$1.$OUTPUT"
864 case "$OGGENCODERSYNTAX" in
866 # vorbiscomment can't do in-place modification, mv the file first
867 if [ -f "$ABCDETEMPDIR/track$1.$OGGOUTPUTCONTAINER" -a ! -f "$ABCDETEMPDIR/track$1.uncommented.$OGGOUTPUTCONTAINER" ]; then
868 mv "$ABCDETEMPDIR/track$1.$OGGOUTPUTCONTAINER" "$ABCDETEMPDIR/track$1.uncommented.$OGGOUTPUTCONTAINER"
872 # http://www.xiph.org/ogg/vorbis/doc/v-comment.html
874 echo ARTIST="$TRACKARTIST"
876 echo TITLE="$TRACKNAME"
877 if [ -n "$CDYEAR" ]; then
880 if [ -n "$CDGENRE" ]; then
881 echo GENRE="$CDGENRE"
883 echo TRACKNUMBER=${TRACKNUM:-$1}
884 if [ -n "$DISCNUMBER" ]; then
885 echo DISCNUMBER="$DISCNUMBER"
887 echo CDDB=$CDDBDISCID
888 if [ "$(eval echo ${COMMENT})" != "" ]; then
889 case "$COMMENTOUTPUT" in
890 *=*) echo "$COMMENTOUTPUT";;
891 *) echo COMMENT="$COMMENTOUTPUT";;
894 ) | run_command tagtrack-$OUTPUT-$1 nice $ENCNICE \
895 $VORBISCOMMENT $VORBISCOMMENTOPTS -w \
896 "$ABCDETEMPDIR/track$1.uncommented.$OGGOUTPUTCONTAINER" "$ABCDETEMPDIR/track$1.$OGGOUTPUTCONTAINER"
897 # Doublecheck that the commented file was created
898 # successfully before wiping the original
899 if [ -f "$ABCDETEMPDIR/track$1.$OGGOUTPUTCONTAINER" ]; then
900 rm -f "$ABCDETEMPDIR/track$1.uncommented.$OGGOUTPUTCONTAINER"
902 mv "$ABCDETEMPDIR/track$1.uncommented.$OGGOUTPUTCONTAINER" "$ABCDETEMPDIR/track$1.$OGGOUTPUTCONTAINER"
908 run_command tagtrack-$OUTPUT-$1 true
913 echo ARTIST="$TRACKARTIST"
915 echo TITLE="$TRACKNAME"
916 if [ -n "$CDYEAR" ]; then
919 if [ -n "$CDGENRE" ]; then
920 echo GENRE="$CDGENRE"
922 echo TRACKNUMBER="${TRACKNUM:-$1}"
923 if [ -n "$DISCNUMBER" ]; then
924 echo DISCNUMBER="$DISCNUMBER"
926 echo CDDB="$CDDBDISCID"
927 if [ "$(eval echo ${COMMENT})" != "" ]; then
928 case "$COMMENTOUTPUT" in
929 *=*) echo "$COMMENTOUTPUT";;
930 *) echo COMMENT="$COMMENTOUTPUT";;
933 ) | run_command tagtrack-$OUTPUT-$1 nice $ENCNICE $METAFLAC $METAFLACOPTS ${IMPORTCUESHEET:+--import-cuesheet-from="$ABCDETEMPDIR/$CUEFILE"} --import-tags-from=- "$ABCDETEMPDIR/track$1.$FLACOUTPUTCONTAINER"
936 run_command tagtrack-$OUTPUT-$1 true
939 run_command tagtrack-$OUTPUT-$1 true
942 # Use a temp-file of our choice. --overWrite seems to
943 # case core dumps with AtomicParsley 0.9.0
944 ATOMICTEMPFILE="$ABCDETEMPDIR/track$1.m4a-atomic"
947 if [ "$VARIOUSARTISTS" = "y" ]; then
951 #It has to be command file opts for AtomicParsley
952 run_command tagtrack-$OUTPUT-$1 nice $ENCNICE $ATOMICPARSLEY "$ABCDETEMPDIR/track$1.m4a" --artist "$TRACKARTIST" --album "$DALBUM" --title "$TRACKNAME" --tracknum ${TRACKNUM:-$1} --year "$CDYEAR" --genre "$CDGENRE" --compilation $VARIOUSBOOL --comment "$COMMENTOUTPUT" --output $ATOMICTEMPFILE
953 if [ -f $ATOMICTEMPFILE ]; then
954 mv "$ATOMICTEMPFILE" "$ABCDETEMPDIR/track$1.m4a"
958 run_command tagtrack-$OUTPUT-$1 true
962 if checkerrors "tagtrack-(.{3,6})-$1"; then :; else
963 run_command tagtrack-$1 true
970 # OUTPUTTYPE, {FOO}ENCODERSYNTAX, ENCNICE, ENCODER, ENCODEROPTS
973 # The commands here don't go through run_command because they're never
974 # supposed to be silenced
975 echo "Encoding gapless MP3 tracks: $TRACKQUEUE"
976 for OUTPUT in $(echo $OUTPUTTYPE | tr , \ )
980 case "$MP3ENCODERSYNTAX" in
985 for UTRACKNUM in $TRACKQUEUE
987 TRACKFILES="$TRACKFILES track$UTRACKNUM.wav"
989 nice $ENCNICE $MP3ENCODER $MP3ENCODEROPTS --nogap $TRACKFILES
991 if [ "$RETURN" != "0" ]; then
992 echo "nogap-encode: $ENCODER returned code $RETURN" >> errors
994 for UTRACKNUM in $TRACKQUEUE
996 run_command encodetrack-$OUTPUT-$UTRACKNUM true
997 #run_command encodetrack-$UTRACKNUM true
1006 if checkerrors "nogap-encode"; then :; else
1007 if [ ! "$KEEPWAVS" = "y" ] ; then
1008 if [ ! "$KEEPWAVS" = "move" ] ; then
1013 # Other encoders fall through to normal encoding as the tracks have not
1014 # been entered in the status file.
1017 # do_encode [tracknumber] [hostname]
1018 # If no hostname is specified, encode locally
1020 # TRACKS, TRACKNAME, TRACKARTIST, DISTMP3, DISTMP3OPTS, {FOO}ENCODERSYNTAX, OUTPUTTYPE, ENCODEROPTS, DALBUM, DARTIST, ENCNICE, CDYEAR, CDGENRE, COMMENT
1023 if [ "$USEPIPES" = "y" ]; then
1026 TEMPARG="PIPE_$MP3ENCODERSYNTAX"
1029 TEMPARG="PIPE_$OGGENCODERSYNTAX"
1032 TEMPARG="PIPE_$OPUSENCODERSYNTAX"
1035 TEMPARG="PIPE_$FLACENCODERSYNTAX"
1038 TEMPARG="PIPE_$SPEEXENCODER"
1041 TEMPARG="PIPE_$MPCENCODER"
1044 TEMPARG="PIPE_$AACENCODERSYNTAX"
1047 IN="$( eval echo "\$$TEMPARG" )"
1049 IN="$ABCDETEMPDIR/track$1.wav"
1052 case "$MP3ENCODERSYNTAX" in
1053 # FIXME # check if mp3enc needs -if for pipes
1054 # FIXME # I have not been able to find a working mp3enc binary
1068 # We need IN to proceed, if we are not using pipes.
1069 if [ -s "$IN" -o X"$USEPIPES" = "Xy" ] ; then
1070 for TMPOUTPUT in $(echo $OUTPUTTYPE | tr , \ )
1072 case "$TMPOUTPUT" in
1074 OUTPUT=$OGGOUTPUTCONTAINER
1077 OUTPUT=$OPUSOUTPUTCONTAINER
1080 OUTPUT=$FLACOUTPUTCONTAINER
1086 OUT="$ABCDETEMPDIR/track$1.$OUTPUT"
1087 if [ "$NOGAP" = "y" ] && checkstatus encodetrack-$OUTPUT-$1 ; then
1090 if [ X"$USEPIPES" = "Xy" ]; then
1092 # We need a way to store the creation of the files when using PIPES
1093 RUN_COMMAND_PIPES="run_command encodetrack-$OUTPUT-$1 true"
1094 # When pipping it does not make sense to have a higher nice for
1095 # reading than for encoding, since it will be hold by the
1096 # encoding process. Setting an effective nice, to calm down a
1097 # bit the reading process.
1098 EFFECTIVE_NICE=$READNICE
1100 run_command '' echo "Encoding track $1 of $TRACKS: $TRACKNAME..."
1101 RUN_COMMAND="run_command encodetrack-$OUTPUT-$1"
1102 EFFECTIVE_NICE=$ENCNICE
1108 case "$MP3ENCODERSYNTAX" in
1109 lame|toolame|gogo) $RUN_COMMAND nice $EFFECTIVE_NICE $MP3ENCODER $MP3ENCODEROPTS "$IN" "$OUT" ;;
1110 bladeenc) $RUN_COMMAND nice $EFFECTIVE_NICE $MP3ENCODER $MP3ENCODEROPTS -quit "$IN" ;;
1111 l3enc|xingmp3enc) $RUN_COMMAND nice $EFFECTIVE_NICE $MP3ENCODER "$IN" "$OUT" $MP3ENCODEROPTS ;;
1112 # FIXME # Relates to the previous FIXME since it might need the "-if" removed.
1113 mp3enc) $RUN_COMMAND nice $EFFECTIVE_NICE $MP3ENCODER -if "$IN" -of "$OUT" $MP3ENCODEROPTS ;;
1117 $RUN_COMMAND nice $DISTMP3NICE $DISTMP3 $DISTMP3OPTS "$2" "$IN" "$OUT" >/dev/null 2>&1
1124 case "$OGGENCODERSYNTAX" in
1125 vorbize) $RUN_COMMAND nice $EFFECTIVE_NICE $OGGENCODER $OGGENCODEROPTS -w "$OUT" "$IN" ;;
1126 oggenc) $RUN_COMMAND nice $EFFECTIVE_NICE $OGGENCODER $OGGENCODEROPTS -o "$OUT" "$IN" ;;
1130 $RUN_COMMAND nice $DISTMP3NICE $DISTMP3 $DISTMP3OPTS "$2" "$IN" "$OUT" >/dev/null 2>&1
1137 case "$OPUSENCODERSYNTAX" in
1140 if [ "$(eval echo ${COMMENT})" != "" ]; then
1143 *) COMMENT="COMMENT=$COMMENT" ;;
1146 # Tag the file at encode time, as it can't be done after encoding.
1147 if [ "$DOTAG" = "y" ]; then
1148 $RUN_COMMAND nice $EFFECTIVE_NICE $OPUSENCODER $OPUSENCODEROPTS --artist "$TRACKARTIST" --album "$DALBUM" --title "$TRACKNAME" --genre "$CDGENRE" --date "$CDYEAR" --comment TRACKNUMBER="$1" ${COMMENT:+--comment "$COMMENT"} "$IN" "$OUT"
1150 $RUN_COMMAND nice $EFFECTIVE_NICE $OPUSENCODER $OPUSENCODEROPTS "$IN" "$OUT"
1156 $RUN_COMMAND nice $DISTMP3NICE $DISTMP3 $DISTMP3OPTS "$2" "$IN" "$OUT" >/dev/null 2>&1
1163 case "$FLACENCODERSYNTAX" in
1164 flac) $RUN_COMMAND nice $EFFECTIVE_NICE $FLACENCODER -f $FLACENCODEROPTS -o "$OUT" "$IN" ;;
1169 vecho "$DISTMP3 $DISTMP3OPTS $2 $IN $OUT >/dev/null 2>&1"
1170 $RUN_COMMAND nice $DISTMP3NICE $DISTMP3 $DISTMP3OPTS "$2" "$IN" "$OUT" > /dev/null 2>&1
1175 if [ "$(eval echo ${COMMENT})" != "" ]; then
1178 *) COMMENT="COMMENT=$COMMENT" ;;
1181 # Tag the file at encode time, as it can't be done after encoding.
1182 if [ "$DOTAG" = "y" ]; then
1183 $RUN_COMMAND nice $EFFECTIVE_NICE $SPEEXENCODER $SPEEXENCODEROPTS --author "$TRACKARTIST" --title "$TRACKNAME" ${COMMENT:+--comment "$COMMENT"} "$IN" "$OUT"
1185 $RUN_COMMAND nice $EFFECTIVE_NICE $SPEEXENCODER $SPEEXENCODEROPTS "$IN" "$OUT"
1189 # MPP/MP+(Musepack) format (.mpc) is done locally, with inline
1190 # tagging. Uses mpcenc for Musepack SV8 encoding, changed from
1191 # Musepack SV7 which used mppenc....
1192 $RUN_COMMAND nice $EFFECTIVE_NICE $MPCENCODER $MPCENCODEROPTS --artist "$TRACKARTIST" --album "$DALBUM" --title "$TRACKNAME" --track "$1" --genre "$CDGENRE" --year "$CDYEAR" --comment "$COMMENT" "$IN" "$OUT"
1195 # Tag the file at encode time, as it can't be done after encoding.
1196 if [ "$AACENC" = "neroAacEnc" ] ; then
1198 $RUN_COMMAND nice $ENCNICE $AACENC $AACENCOPTS -if "$IN" -of "$OUT"
1199 elif [ ! "$DOTAG" = "y" ]; then
1200 $RUN_COMMAND nice $EFFECTIVE_NICE $AACENCODER $AACENCODEROPTS --artist "$TRACKARTIST" --album "$DALBUM" --title "$TRACKNAME" --track "$1" --genre "$CDGENRE" --year "$CDYEAR" --comment "$COMMENT" -o "$OUT" "$IN"
1203 $RUN_COMMAND nice $ENCNICE $AACENCODER $AACENCODEROPTS -o "$OUT" "$IN"
1207 # In case of wav output we need nothing. Just keep the wavs.
1212 # Only remove .wav if the encoding succeeded
1213 if checkerrors "encodetrack-(.{3,6})-$1"; then :; else
1214 run_command encodetrack-$1 true
1215 if [ ! "$KEEPWAVS" = "y" ] ; then
1216 if [ ! "$KEEPWAVS" = "move" ] ; then
1222 run_command "" echo "HEH! The file we were about to encode disappeared:"
1223 run_command "" echo ">> $IN"
1224 run_command encodetrack-$1 false
1228 # do_preprocess [tracknumber]
1230 # TRACKS, TRACKNAME, TRACKARTIST, DISTMP3, DISTMP3OPTS, {FOO}ENCODERSYNTAX, OUTPUTTYPE, ENCODEROPTS, DALBUM, DARTIST, ENCNICE, CDYEAR, CDGENRE, COMMENT
1233 # IN="$ABCDETEMPDIR/track$1.wav"
1234 # # We need IN to proceed.
1235 # if [ -s "$IN" ] ; then
1236 # for OUTPUT in $(echo $OUTPUTTYPE | tr , \ )
1238 # #OUT="$ABCDETEMPDIR/track$1.$OUTPUT"
1239 # run_command '' echo "Pre-processing track $1 of $TRACKS..."
1240 # case "$POSTPROCESSFORMAT" in
1242 # run_command preprocess-$OUTPUT-$1 nice $PRENICE $WAV_PRE $IF $OF ;;
1244 # run_command preprocess-$OUTPUT-$1 nice $PRENICE $MP3_PRE $IF $OF ;;
1246 # run_command preprocess-$OUTPUT-$1 nice $PRENICE $OGG_PRE $IF $OF ;;
1248 # run_command preprocess-$OUTPUT-$1 nice $PRENICE $FLAC_PRE $IF $OF ;;
1250 # run_command preprocess-$OUTPUT-$1 nice $PRENICE $SPX_PRE $IF $OF ;;
1253 # # Only remove .wav if the encoding succeeded
1254 # if checkerrors "preprocess-(.{3,4})-$1"; then
1255 # run_command preprocess-$1 false
1257 # run_command preprocess-$1 true
1260 # if [ "$(checkstatus encode-output)" = "loud" ]; then
1261 # echo "HEH! The file we were about to pre-process disappeared:"
1264 # run_command preprocess-$1 false
1269 # do_postprocess [tracknumber]
1271 # TRACKS, TRACKNAME, TRACKARTIST, DISTMP3, DISTMP3OPTS, {FOO}ENCODERSYNTAX, OUTPUTTYPE, ENCODEROPTS, DALBUM, DARTIST, ENCNICE, CDYEAR, CDGENRE, COMMENT
1274 # for POSTPROCESSFORMAT in $(echo $POSTPROCESSFORMATS | tr , \ )
1276 # IN="$ABCDETEMPDIR/track$1.$POSTPROCESSFORMAT"
1277 # # We need IN to proceed.
1278 # if [ -s "$IN" ] ; then
1279 # #OUT="$ABCDETEMPDIR/track$1.$OUTPUT"
1280 # run_command '' echo "Post-processing track $1 of $TRACKS..."
1281 # case "$POSTPROCESSFORMAT" in
1283 # run_command postprocess-$OUTPUT-$1 nice $POSTNICE $MP3_POST $IF $OF ;;
1285 # run_command postprocess-$OUTPUT-$1 nice $POSTNICE $OGG_POST $IF $OF ;;
1287 # run_command postprocess-$OUTPUT-$1 nice $POSTNICE $FLAC_POST $IF $OF ;;
1289 # run_command postprocess-$OUTPUT-$1 nice $POSTNICE $SPX_POST $IF $OF ;;
1291 # # Only remove .wav if the encoding succeeded
1292 # if checkerrors "postprocess-(.{3,4})-$1"; then
1293 # run_command postprocess-$1 false
1295 # run_command postprocess-$1 true
1298 # if [ "$(checkstatus encode-output)" = "loud" ]; then
1299 # echo "HEH! The file we were about to post-process disappeared:"
1302 # run_command postprocess-$1 false
1317 # MP3GAIN, MP3GAINOPTS, VORBISGAIN, VORBISGAINOPTS, MPPGAIN, MPPGAINOPTS
1321 # The commands here don't go through run_command because they're never supposed to be silenced
1322 echo "Batch analizing gain in tracks: $TRACKQUEUE"
1327 for UTRACKNUM in $TRACKQUEUE
1329 MP3FILES="$TRACKFILES track$UTRACKNUM.mp3"
1331 # FIXME # Hard-coded batch option!
1332 $NORMALIZER -b $NORMALIZEROPTS $TRACKFILES
1334 if [ "$RETURN" != "0" ]; then
1335 echo "batch-normalize: $NORMALIZER returned code $RETURN" >> errors
1337 for UTRACKNUM in $TRACKQUEUE
1339 echo normalizetrack-$UTRACKNUM >> status
1345 # do_batch_normalize
1347 # NORMALIZER, NORMALIZEROPTS
1348 do_batch_normalize ()
1350 # The commands here don't go through run_command because they're never supposed to be silenced
1351 echo "Batch normalizing tracks: $TRACKQUEUE"
1356 for UTRACKNUM in $TRACKQUEUE
1358 TRACKFILES="$TRACKFILES track$UTRACKNUM.wav"
1360 # XXX: Hard-coded batch option!
1361 $NORMALIZER -b $NORMALIZEROPTS $TRACKFILES
1363 if [ "$RETURN" != "0" ]; then
1364 echo "batch-normalize: $NORMALIZER returned code $RETURN" >> errors
1366 for UTRACKNUM in $TRACKQUEUE
1368 echo normalizetrack-$UTRACKNUM >> status
1374 # do_normalize [tracknumber]
1376 # TRACKS, TRACKNAME, NORMALIZER, NORMALIZEROPTS
1379 IN="$ABCDETEMPDIR/track$1.wav"
1380 if [ -e "$IN" ] ; then
1381 run_command '' echo "Normalizing track $1 of $TRACKS: $TRACKNAME..."
1382 run_command normalizetrack-$1 $NORMALIZER $NORMALIZEROPTS "$IN"
1384 if [ "$(checkstatus encode-output)" = "loud" ]; then
1385 echo "HEH! The file we were about to normalize disappeared:"
1388 run_command normalizetrack-$1 false "File $IN was not found"
1392 # do_move [tracknumber]
1393 # Deduces the outfile from environment variables
1394 # Creates directory if necessary
1396 # TRACKNUM, TRACKNAME, TRACKARTIST, DALBUM, OUTPUTFORMAT, CDGENRE, CDYEAR
1399 for TMPOUTPUT in $(echo $OUTPUTTYPE | tr , \ )
1401 # For now, set OUTPUT as TMPOUTPUT, and then change it once we have
1402 # defined the OUTPUTFILE:
1405 # Create ALBUMFILE, ARTISTFILE, TRACKFILE
1406 # Munge filenames as follows:
1411 # Eat control characters
1412 ALBUMFILE="$(mungefilename "$DALBUM")"
1413 ARTISTFILE="$(mungefilename "$TRACKARTIST")"
1414 TRACKFILE="$(mungefilename "$TRACKNAME")"
1415 GENRE="$(mungegenre "$GENRE")"
1416 YEAR=${CDYEAR:-$CDYEAR}
1417 # If we want to start the tracks with a given number, we need to modify
1418 # the TRACKNUM value before evaluation
1420 # Supported variables for OUTPUTFORMAT are GENRE, YEAR, ALBUMFILE,
1421 # ARTISTFILE, TRACKFILE, and TRACKNUM.
1422 if [ "$ONETRACK" = "y" ]; then
1423 if [ "$VARIOUSARTISTS" = "y" ]; then
1424 OUTPUTFILE="$(eval echo \""$VAONETRACKOUTPUTFORMAT"\")"
1426 OUTPUTFILE="$(eval echo \""$ONETRACKOUTPUTFORMAT"\")"
1429 if [ "$VARIOUSARTISTS" = "y" ]; then
1430 OUTPUTFILE="$(eval echo \""$VAOUTPUTFORMAT"\")"
1432 OUTPUTFILE="$(eval echo \""$OUTPUTFORMAT"\")"
1435 if checkerrors "tagtrack-$OUTPUT-$1"; then :; else
1436 # Once we know the specific output was successful, we can change
1437 # the OUTPUT to the value containing the container
1440 OUTPUT=$OGGOUTPUTCONTAINER
1443 OUTPUT=$OPUSOUTPUTCONTAINER
1446 OUTPUT=$FLACOUTPUTCONTAINER
1452 # Check that the directory for OUTPUTFILE exists, if it doesn't, create it
1453 OUTPUTFILEDIR="$(dirname "$OUTPUTDIR/$OUTPUTFILE")"
1456 if [ "$DOCLEAN" != "y" ] && [ "$FORCE" != "y" ]; then
1457 # FIXME # introduce warnings?
1460 # mkdir -p shouldn't return an error if the directory already exists
1461 mkdir -p "$OUTPUTFILEDIR"
1462 run_command movetrack-$1 mv "$ABCDETEMPDIR/track$1.$OUTPUT" "$OUTPUTDIR/$OUTPUTFILE.$OUTPUT"
1463 if checkstatus movetrack-output-$OUTPUT; then :; else
1464 run_command movetrack-output-$OUTPUT true
1469 # mkdir -p shouldn't return an error if the directory already exists
1470 mkdir -p "$OUTPUTFILEDIR"
1471 run_command movetrack-$1 mv "$ABCDETEMPDIR/track$1.$OUTPUT" "$OUTPUTDIR/$OUTPUTFILE.$OUTPUT"
1472 if checkstatus movetrack-output-$OUTPUT; then :; else
1473 run_command movetrack-output-$OUTPUT true
1477 # Lets move the cue file
1478 if CUEFILE=$(checkstatus cuefile) >/dev/null ; then
1479 if [ -r "$ABCDETEMPDIR/$CUEFILE" ]; then
1480 if checkstatus movecue-$OUTPUT; then :; else
1481 # Silence the Copying output since it overlaps with encoding processes...
1482 #run_command '' vecho "Copying cue file to its destination directory..."
1483 if checkstatus onetrack >/dev/null ; then
1486 if [ "$DOCLEAN" != "y" ] && [ "$FORCE" != "y" ]; then
1487 # We dont have the dir, since it was not created before.
1490 run_command movecue-$OUTPUT cp "$ABCDETEMPDIR/$CUEFILE" "$OUTPUTDIR/$OUTPUTFILE.cue"
1493 # NOTE: Creating a cue file with the 3-char-extension files is to comply with
1494 # http://brianvictor.tripod.com/mp3cue.htm#details
1495 [a-z0-9][a-z0-9][a-z0-9])
1496 run_command movecue-$OUTPUT cp "$ABCDETEMPDIR/$CUEFILE" "$OUTPUTDIR/$OUTPUTFILE.cue"
1499 run_command movecue-$OUTPUT cp "$ABCDETEMPDIR/$CUEFILE" "$OUTPUTDIR/$OUTPUTFILE.$OUTPUT.cue"
1503 run_command movecue-$OUTPUT cp "$ABCDETEMPDIR/$CUEFILE" "$OUTPUTFILEDIR/$CUEFILE"
1505 echo movecue-$OUTPUT >> "$ABCDETEMPDIR/status"
1514 # Create the playlist if wanted
1516 # PLAYLISTFORMAT, PLAYLISTDATAPREFIX, VAPLAYLISTFORMAT, VAPLAYLISTDATAPREFIX,
1517 # VARIOUSARTISTS, OUTPUTDIR
1520 for TMPOUTPUT in $(echo $OUTPUTTYPE | tr , \ )
1524 OUTPUT=$OGGOUTPUTCONTAINER
1527 OUTPUT=$OPUSOUTPUTCONTAINER
1530 OUTPUT=$FLACOUTPUTCONTAINER
1536 # Create a playlist file for the playlist data to go into.
1537 # We used to wipe it out if it existed. Now we request permision if interactive.
1538 for LASTTRACK in $TRACKQUEUE; do :; done
1539 ALBUMFILE="$(mungefilename "$DALBUM")"
1540 ARTISTFILE="$(mungefilename "$DARTIST")"
1541 GENRE="$(mungegenre "$GENRE")"
1542 YEAR=${CDYEAR:-$CDYEAR}
1543 if [ "$VARIOUSARTISTS" = "y" ] ; then
1544 PLAYLISTFILE="$(eval echo "$VAPLAYLISTFORMAT")"
1546 PLAYLISTFILE="$(eval echo "$PLAYLISTFORMAT")"
1548 FINALPLAYLISTDIR="$(dirname "$OUTPUTDIR/$PLAYLISTFILE")"
1549 mkdir -p "$FINALPLAYLISTDIR"
1550 if [ -s "$OUTPUTDIR/$PLAYLISTFILE" ]; then
1551 echo -n "Erase, Append to, or Keep the existing playlist file? [e/a/k] (e): " >&2
1552 if [ "$INTERACTIVE" = "y" ]; then
1553 while [ "$DONE" != "y" ]; do
1555 case $ERASEPLAYLIST in
1556 e|E|a|A|k|K) DONE=y ;;
1557 "") ERASEPLAYLIST=e ; DONE=y ;;
1565 # Once we erase the playlist, we use append to create the new one.
1566 [ "$ERASEPLAYLIST" = "e" -o "$ERASEPLAYLIST" = "E" ] && rm -f "$OUTPUTDIR/$PLAYLISTFILE" && ERASEPLAYLIST=a
1568 # The playlist does not exist, so we can safelly use append to create the new list
1571 if [ "$ERASEPLAYLIST" = "a" -o "$ERASEPLAYLIST" = "A" ]; then
1572 touch "$OUTPUTDIR/$PLAYLISTFILE"
1573 for UTRACKNUM in $TRACKQUEUE
1575 # Shares some code with do_move since the filenames have to match
1576 CDDBTRACKNUM=$(expr $UTRACKNUM - 1)
1577 getcddbinfo TRACKNAME
1579 TRACKFILE="$(mungefilename "$TRACKNAME")"
1580 ARTISTFILE="$(mungefilename "$TRACKARTIST")"
1581 ALBUMFILE="$(mungefilename "$DALBUM")"
1582 # If we want to start the tracks with a given number, we need to modify the
1583 # TRACKNUM value before evaluation
1585 if [ "$VARIOUSARTISTS" = "y" ]; then
1586 OUTPUTFILE="$(eval echo \""$VAOUTPUTFORMAT\"")"
1588 OUTPUTFILE="$(eval echo \""$OUTPUTFORMAT\"")"
1590 if [ "$VARIOUSARTISTS" = "y" ]; then
1591 if [ "$VAPLAYLISTDATAPREFIX" ] ; then
1592 echo ${VAPLAYLISTDATAPREFIX}$OUTPUTFILE.$OUTPUT >> "$OUTPUTDIR/$PLAYLISTFILE"
1594 relpath "$PLAYLISTFILE", "$OUTPUTFILE.$OUTPUT" >> "$OUTPUTDIR/$PLAYLISTFILE"
1597 if [ "$PLAYLISTDATAPREFIX" ]; then
1598 echo ${PLAYLISTDATAPREFIX}$OUTPUTFILE.$OUTPUT >> "$OUTPUTDIR/$PLAYLISTFILE"
1600 relpath "$PLAYLISTFILE", "$OUTPUTFILE.$OUTPUT" >> "$OUTPUTDIR/$PLAYLISTFILE"
1605 ## this will convert the playlist to have CRLF line-endings, if specified
1606 ## (some hardware players insist on CRLF endings)
1607 if [ "$DOSPLAYLIST" = "y" ]; then
1608 awk '{sub("\r$",""); printf "%s\r\n", $0}' "$OUTPUTDIR/$PLAYLISTFILE" > "$ABCDETEMPDIR/PLAYLISTFILE.tmp"
1609 # mv -f "$ABCDETEMPDIR/PLAYLISTFILE.tmp" "$OUTPUTDIR/$PLAYLISTFILE"
1610 cat "$ABCDETEMPDIR/PLAYLISTFILE.tmp" | sed 's/\//\\/' > "$OUTPUTDIR/$PLAYLISTFILE"
1612 echo "playlistcomplete" >> "$ABCDETEMPDIR/status"
1617 # This function reads a cuefile on stdin and writes an extended
1618 # cddb query on stdout. Any PREGAP for track 1 is properly
1619 # handled, although cue files embedded in FLAC files do not
1620 # appear to properly store the PREGAP setting. :(
1621 abcde.cue2discid () {
1626 while [ $val -gt 0 ] ; do
1627 ret=$(( $ret + ( $val % 10) ))
1628 val=$(( $val / 10 ))
1638 local first second third
1639 first=$(expr ${1} + 0 )
1640 second=$(expr ${2} + 0 )
1641 third=$(expr ${3} + 0 )
1643 echo $(( ((($first * 60) + $second) * 75) + $third ))
1653 while read line ; do
1656 TRACK) i=$(( i + 1 ))
1658 INDEX) if [ "$2" -eq 1 ] ; then
1660 START=$(( $LBA + $PREGAP + $OFFSET ))
1662 X=$(cddb_sum $(( $START / 75 )) )
1666 PREGAP) PREGAP=$(msf2lba $2)
1670 LEADOUT=$(( $4 / 588 ))
1673 LEADIN=$(( $3 / 588 ))
1682 LEADOUT=$(( $LEADOUT + $LEADIN ))
1684 LENGTH=$(( $LEADOUT/75 - $TRACK1/75 ))
1685 DISCID=$(( ( $N % 255 ) * 2**24 | $LENGTH * 2**8 | $TRACKS ))
1686 printf "%08x %i" $DISCID $TRACKS
1689 while [ $j -le $TRACKS ] ; do
1690 eval echo -n "\" \$TRACK$j\""
1693 echo " $(( $LEADOUT / 75 ))"
1697 # abcde.mkcue [--wholedisk]
1698 # This creates a cuefile directly from the extended discid information
1699 # The --wholedisk option controls whether we're ripping data from the
1700 # start of track one or from the start of the disk (usually, but not
1701 # always the same thing!)
1703 # Track one leadin/pregap (if any) handeling:
1704 # --wholedisk specified:
1707 # INDEX 01 <pregap value>
1708 # Remaining track index values unchanged from disc TOC
1710 # --wholedisk not specified
1712 # PREGAP <pregap value>
1714 # Remaining track index values offset by <pregap value>
1721 printf "$1%02i:%02i:%02i\n" $(($2/4500)) $((($2/75)%60)) $(($2%75))
1724 local MODE DISCID TRACKS
1728 if [ "$1" = --wholedisc ] ; then
1734 vecho "One track is $ONETRACK"
1735 TRACKFILE="$(mungefilename "$TRACKNAME")"
1736 ARTISTFILE="$(mungefilename "$TRACKARTIST")"
1737 ALBUMFILE="$(mungefilename "$DALBUM")"
1738 if [ "$ONETRACK" = "y" ]; then
1739 if [ "$VARIOUSARTISTS" = "y" ]; then
1740 CUEWAVFILE="$(eval echo \""$VAONETRACKOUTPUTFORMAT"\" | sed -e 's@^.*/@@').$OUTPUT"
1742 CUEWAVFILE="$(eval echo \""$ONETRACKOUTPUTFORMAT"\" | sed -e 's@^.*/@@').$OUTPUT"
1744 vecho "Cue wav file is $CUEWAVFILE"
1746 CUEWAVFILE="dummy.wav"
1755 echo REM DISCID $DISCID
1756 echo FILE \""$CUEWAVFILE"\" WAVE
1758 if [ $1 -ne 150 ] && [ $MODE = "PREGAP" ] ; then
1765 while [ $i -le "$TRACKS" ] ; do
1766 LBA=$(( $1 - $OFFSET ))
1767 printf " TRACK %02i AUDIO\n" $i
1768 if [ $i -eq 1 -a $1 -ne 150 ] ; then
1769 if [ $MODE = PREGAP ] ; then
1770 echomsf " PREGAP " $(($OFFSET-150))
1772 echo " INDEX 00 00:00:00"
1775 echomsf " INDEX 01 " $LBA
1782 # This essentially the start of things
1785 # Query the CD to get the track info, unless the user specified -C
1786 # or we are using some actions which do not need the CDDB data at all
1787 #if [ ! X"$EXPACTIONS" = "X" ]; then
1789 #elif [ -z "$DISCID" ]; then
1790 if [ -z "$DISCID" ]; then
1791 vecho -n "Getting CD track info... "
1792 # In OSX, unmount the disc before a query
1793 if [ "$OSFLAVOUR" = "OSX" ]; then
1794 diskutil unmount ${CDROM#/dev/}
1796 case "$CDROMREADERSYNTAX" in
1798 if $METAFLAC $METAFLACOPTS --export-cuesheet-to=- "$CDROM" > /dev/null 2>&1 ; then
1799 case "$CUE2DISCID" in
1800 # FIXME # right now we have 2 cue2discid internal
1801 # implementations: builtin and abcde.cue2discid. Test
1802 # both of them and decide which one we want to use.
1804 #vecho "Using builtin cue2discid implementation..."
1805 CUESHEET="$(metaflac $METAFLACOPTS --export-cuesheet-to=- "$CDROM")"
1807 #TRACKS=$(echo $CUESHEET | grep -E "TRACK \+[[:digit:]]\+ \+AUDIO" |wc -l)
1809 OFFSETTIMES=( $(echo "$CUESHEET" | sed -n -e's/\ *INDEX 01\ \+//p' ) )
1810 TRACKS=${#OFFSETTIMES[@]}
1812 #echo "processing offsetimes ${OFFSETTIMES[@]}"
1813 for OFFSETTIME in ${OFFSETTIMES[@]}; do
1814 OFFSETS="$OFFSETS $(( 10#${OFFSETTIME:0:2} * 4500 + 10#${OFFSETTIME:3:2} * 75 + 10#${OFFSETTIME:6:2} ))"
1815 #OFFSETS[${#OFFSETS[*]}]=$(( 10#${OFFSETTIME:0:2} * 4500 + 10#${OFFSETTIME:3:2} * 75 + 10#${OFFSETTIME:6:2} ))
1818 LEADOUT=$(( $(echo "$CUESHEET" | grep lead-out | get_last) * 75 / 44100 ))
1819 LEADIN=$(( $(echo "$CUESHEET" | grep lead-in | get_last) * 75 / 44100 ))
1823 #vecho "Using external python cue2discid implementation..."
1824 TRACKINFO=$($METAFLAC $METAFLACOPTS --export-cuesheet-to=- "$CDROM" | $CUE2DISCID)
1828 log error "the input flac file does not contain a cuesheet."
1833 # CDPARANOIAOUTPUT="$( $CDROMREADER -$CDPARANOIACDROMBUS "$CDROM" -Q --verbose 2>&1 )"
1835 # if [ ! "$RET" = "0" ];then
1836 # log warning "something went wrong while querying the CD... Maybe a DATA CD?"
1839 # TRACKS="$(echo "$CDPARANOIAOUTPUT" | grep -E '^[[:space:]]+[[:digit:]]' | tail -n 1 | get_first | tr -d "." | tr '\n' ' ')"
1840 # CDPARANOIAAUDIOTRACKS="$TRACKS"
1842 # LEADOUT="$(echo "$CDPARANOIAOUTPUT" | grep -Eo '^TOTAL[[:space:]]+([[:digit:]]+)' | get_last)"
1843 # OFFSETS="$(echo "$CDPARANOIAOUTPUT" | sed -n -e's/^ .* \([0-9]\+\) \[.*/\1/p')"
1847 case "$CDDBMETHOD" in
1848 cddb) TRACKINFO=$($CDDISCID "$CDROM") ;;
1849 musicbrainz) TRACKINFO=$($MUSICBRAINZ --command id --device "$CDROM") ;;
1853 # Make sure there's a CD in there by checking cd-discid's return code
1854 if [ ! "$?" = "0" ]; then
1855 if [ "$CDROMREADERSYNTAX" = "flac" ] ; then
1856 log error "cuesheet information from the flac file could not be read."
1857 log error "Perhaps the flac file does not contain a cuesheet?."
1860 log error "CD could not be read. Perhaps there's no CD in the drive?"
1864 # In OSX, remount the disc again
1865 if [ "$OSFLAVOUR" = "OSX" ]; then
1866 diskutil mount ${CDROM#/dev/}
1869 DISCID=$(echo $TRACKINFO | cut -f1 -d' ')
1871 TRACKINFO=$(cat "$WAVOUTPUTDIR/abcde.$DISCID/discid")
1874 # Get a full enumeration of tracks, sort it, and put it in the TRACKQUEUE.
1875 # This needs to be done now because a section of the resuming code will need
1878 # get the number of digits to pad TRACKNUM with - we'll use this later
1879 # a CD can only hold 99 tracks, but since we support a feature for starting
1880 # numbering the tracks from a given number, we might need to set it as a
1881 # variable for the user to define... or obtain it somehow.
1882 if [ "$PADTRACKS" = "y" ] ; then
1886 ABCDETEMPDIR="$WAVOUTPUTDIR/abcde.$(echo $TRACKINFO | cut -f1 -d' ')"
1887 if [ -z "$TRACKQUEUE" ]; then
1888 if [ ! "$STRIPDATATRACKS" = "n" ]; then
1889 case "$CDROMREADERSYNTAX" in
1891 if [ "$WEHAVEACD" = "y" ]; then
1892 vecho "Querying the CD for audio tracks..."
1893 CDPARANOIAOUTPUT="$( $CDROMREADER -$CDPARANOIACDROMBUS "$CDROM" -Q --verbose 2>&1 )"
1895 if [ ! "$RET" = "0" ];then
1896 log warning "something went wrong while querying the CD... Maybe a DATA CD?"
1898 TRACKS="$(echo "$CDPARANOIAOUTPUT" | grep -E '^[[:space:]]+[[:digit:]]' | tail -n 1 | get_first | tr -d "." | tr '\n' ' ')"
1899 CDPARANOIAAUDIOTRACKS="$TRACKS"
1901 # Previous versions of abcde would store the tracks on a file, instead of the status record.
1902 if [ -f "$ABCDETEMPDIR/cdparanoia-audio-tracks" ]; then
1903 echo cdparanoia-audio-tracks=$( cat "$ABCDETEMPDIR/cdparanoia-audio-tracks" ) >> "$ABCDETEMPDIR/status"
1904 rm -f "$ABCDETEMPDIR/cdparanoia-audio-tracks"
1906 if [ -f "$ABCDETEMPDIR/status" ] && TRACKS=$(checkstatus cdparanoia-audio-tracks); then :; else
1907 TRACKS=$(echo $TRACKINFO | cut -f2 -d' ')
1911 *) TRACKS=$(echo $TRACKINFO | cut -f2 -d' ') ;;
1914 TRACKS=$(echo $TRACKINFO | cut -f2 -d' ')
1916 if echo "$TRACKS" | grep "[[:digit:]]" > /dev/null 2>&1 ;then :;else
1917 log info "The disc does not contain any tracks. Giving up..."
1920 echo -n "Grabbing entire CD - tracks: "
1921 if [ ! "$PADTRACKS" = "y" ] ; then
1922 TRACKNUMPADDING=$(echo -n $TRACKS | wc -c | tr -d ' ')
1924 TRACKS=$(printf "%0.${TRACKNUMPADDING}d" $TRACKS)
1926 while [ "$X" -ne "$TRACKS" ]
1928 X=$(printf "%0.${TRACKNUMPADDING}d" $(expr $X + 1))
1929 TRACKQUEUE=$(echo $TRACKQUEUE $X)
1933 TRACKS=$(echo $TRACKINFO | cut -f2 -d' ')
1934 # User-supplied track queue.
1935 # Weed out non-numbers, whitespace, then sort and weed out duplicates
1936 TRACKQUEUE=$(echo $TRACKQUEUE | sed 's-[^0-9 ]--g' | tr ' ' '\n' | grep -v ^$ | sort -n | uniq | tr '\n' ' ' | sed 's- $--g')
1937 # Once cleaned, obtain the highest value in the trackqueue for number padding
1938 for LASTTRACK in $TRACKQUEUE; do :; done
1939 if [ ! "$PADTRACKS" = "y" ] ; then
1940 TRACKNUMPADDING=$(echo -n $LASTTRACK | wc -c | tr -d ' ')
1942 # Now we normalize the trackqueue
1943 for TRACK in $TRACKQUEUE ; do
1944 TRACKNUM=$(printf %0.${TRACKNUMPADDING}d $(expr ${TRACK} + 0 ))
1945 PADTRACKQUEUE=$(echo $PADTRACKQUEUE $TRACKNUM)
1947 TRACKQUEUE=$PADTRACKQUEUE
1948 echo Grabbing tracks: "$TRACKQUEUE"
1951 QUEUEDTRACKS=$(echo $TRACKQUEUE | wc -w | tr -d ' ')
1953 # We have the discid, create a temp directory after it to store all the temp
1956 if [ -e "$ABCDETEMPDIR" ]; then
1957 echo -n "abcde: attempting to resume from $ABCDETEMPDIR"
1958 # It already exists, see if it's a directory
1959 if [ ! -d "$ABCDETEMPDIR" ]; then
1960 # This is a file/socket/fifo/device/etc, not a directory
1963 echo "abcde: file $ABCDETEMPDIR already exists and does not belong to abcde." >&2
1964 echo "Please investigate, remove it, and rerun abcde." >&2
1968 # It's a directory, let's see if it's writable by us
1969 if [ ! -r "$ABCDETEMPDIR" ] || [ ! -w "$ABCDETEMPDIR" ] || [ ! -x "$ABCDETEMPDIR" ]; then
1970 # Nope, complain and exit
1972 echo "abcde: directory $ABCDETEMPDIR already exists and is not writeable." >&2
1973 echo "Please investigate, remove it, and rerun abcde." >&2
1977 # See if it's populated
1978 if [ ! -f "$ABCDETEMPDIR/discid" ]; then
1979 # Wipe and start fresh
1980 echo "abcde: $ABCDETEMPDIR/discid not found. Abcde must remove and recreate" >&2
1981 echo -n "this directory to continue. Continue [y/N]? " >&2
1982 if [ "$INTERACTIVE" = "y" ]; then
1988 if [ "$ANSWER" != "y" ]; then
1991 rm -rf "$ABCDETEMPDIR" || exit 1
1992 mkdir -p "$ABCDETEMPDIR"
1993 if [ "$?" -gt "0" ]; then
1994 # Directory already exists or could not be created
1995 echo "abcde: Temp directory $ABCDETEMPDIR could not be created." >&2
1999 # Everything is fine. Check for ^encodetracklocation-
2000 # and encode-output entries in the status file and
2001 # remove them. These are not relevant across sessions.
2002 if [ -f "$ABCDETEMPDIR/status" ]; then
2003 mv "$ABCDETEMPDIR/status" "$ABCDETEMPDIR/status.old"
2004 grep -v ^encodetracklocation- < "$ABCDETEMPDIR/status.old" \
2005 | grep -v ^encode-output > "$ABCDETEMPDIR/status"
2007 # Remove old error messages
2008 if [ -f "$ABCDETEMPDIR/errors" ]; then
2009 rm -f "$ABCDETEMPDIR/errors"
2013 # We are starting from scratch
2014 mkdir -p "$ABCDETEMPDIR"
2015 if [ "$?" -gt "0" ]; then
2016 # Directory already exists or could not be created
2017 echo "abcde: Temp directory $ABCDETEMPDIR could not be created." >&2
2020 cat /dev/null > "$ABCDETEMPDIR/status"
2021 # Store the abcde version in the status file.
2022 echo "abcde-version=$VERSION" >> "$ABCDETEMPDIR/status"
2024 if [ X"$DOCUE" = "Xy" -a X"$WEHAVEACD" = "Xy" ]; then
2025 if checkstatus cuefile > /dev/null 2>&1 ; then :; else
2026 CUEFILE=cue-$(echo "$TRACKINFO" | cut -f1 -d' ').txt
2027 vecho "Creating cue file..."
2028 case $CDROMREADERSYNTAX in
2030 if $METAFLAC --export-cuesheet-to=- "$CDROM" > "$ABCDETEMPDIR/$CUEFILE"; then
2031 echo cuefile=$CUEFILE >> "$ABCDETEMPDIR/status"
2033 log warning "the input flac file does not contain a cuesheet."
2037 if $CUEREADER $CUEREADEROPTS > "$ABCDETEMPDIR/$CUEFILE"; then
2038 echo cuefile=$CUEFILE >> "$ABCDETEMPDIR/status"
2040 log warning "reading the CUE sheet is still considered experimental"
2041 log warning "and there was a problem with the CD reading. abcde will continue,"
2042 log warning "but consider reporting the problem to the abcde author"
2048 # If we got the CDPARANOIA status and it is not recorded, save it now
2049 if [ -n "$CDPARANOIAAUDIOTRACKS" ]; then
2050 if checkstatus cdparanoia-audio-tracks > /dev/null 2>&1; then :; else
2051 echo cdparanoia-audio-tracks=$CDPARANOIAAUDIOTRACKS >> "$ABCDETEMPDIR/status"
2055 # Create the discid file
2056 echo "$TRACKINFO" > "$ABCDETEMPDIR/discid"
2057 if checkstatus cddbmethod > /dev/null 2>&1 ; then :; else
2058 echo "cddbmethod=$CDDBMETHOD" >> "$ABCDETEMPDIR/status"
2063 # Create a proper CUE file based on the CUE file we created before.
2066 if CUEFILE_IN="$ABCDETEMPDIR"/$(checkstatus cuefile); then
2067 CUEFILE_OUT=$CUEFILE_IN.out
2068 ### FIXME ### checkstatus cddb
2069 if [ -e "$CDDBDATA" ]; then
2070 vecho "Adding metadata to the cue file..."
2071 # FIXME It doesn't preserve spaces! Why?
2072 # FIXME parse $track into PERFORMER and TITLE - abcde already has code for this?
2074 echo "PERFORMER \"$DARTIST\"" >> "$CUEFILE_OUT"
2075 echo "TITLE \"$DALBUM\"" >> "$CUEFILE_OUT"
2076 # Set IFS to <newline> to prevent read from swallowing spaces and tabs
2080 cat "$CUEFILE_IN" | while read line
2082 if echo "$line" | grep "INDEX 01" > /dev/null 2>&1 ; then
2083 # FIXME # Possible patch: remove the line above, uncomment the 2 lines below.
2084 # echo "$line" >> "$CUEFILE_OUT"
2085 # if echo "$line" | grep "^[[:space:]]*TRACK" > /dev/null 2>&1 ; then
2086 eval track="\$TRACK$n"
2088 echo " TITLE \"$track\"" >> "$CUEFILE_OUT"
2089 # When making a single-track rip, put the
2090 # actual file name into the file declaration
2091 # in the cue file so that it is usable by
2092 # music players and the like
2093 elif [ "$ONETRACK" = "y" ] &&
2094 echo "$line" | grep '^FILE "dummy.wav" WAVE' > /dev/null 2>&1 ; then
2096 TRACKFILE="$(mungefilename "$TRACKNAME")"
2097 ARTISTFILE="$(mungefilename "$TRACKARTIST")"
2098 ALBUMFILE="$(mungefilename "$DALBUM")"
2100 if [ "$VARIOUSARTISTS" = "y" ]; then
2101 OUTPUTFILE="$(eval echo \""$VAONETRACKOUTPUTFORMAT"\" | sed -e 's@^.*/@@').$OUTPUT"
2103 OUTPUTFILE="$(eval echo \""$ONETRACKOUTPUTFORMAT"\" | sed -e 's@^.*/@@').$OUTPUT"
2106 echo "FILE \"$OUTPUTFILE\" WAVE" >> "$CUEFILE_OUT"
2109 # FIXME # If the lines above are uncommented, remove the line below.
2110 echo "$line" >> "$CUEFILE_OUT"
2113 mv "$CUEFILE_OUT" "$CUEFILE_IN"
2114 echo "cleancuefile" >> "$ABCDETEMPDIR/status"
2120 # Parses a CDDB file and outputs the title and the track names.
2121 # Variables: CDDBFILE
2125 # List out disc title/author and contents
2126 if [ "$ONETRACK" = "y" ]; then
2127 vecho "ONETRACK mode selected: displaying only the title of the CD..."
2129 echo "---- $(grep DTITLE "${CDDBPARSEFILE}" | cut '-d=' -f2- | tr -d \\r\\n ) ----"
2130 if [ X"$SHOWCDDBYEAR" = "Xy" ]; then
2131 PARSEDYEAR=$(grep DYEAR "${CDDBPARSEFILE}" | cut '-d=' -f2-)
2132 if [ ! X"$PARSEDYEAR" = "X" ]; then
2133 echo "Year: $PARSEDYEAR"
2136 if [ X"$SHOWCDDBGENRE" = "Xy" ]; then
2137 PARSEDGENRE=$(grep DGENRE "${CDDBPARSEFILE}" | cut '-d=' -f2-)
2138 if [ ! X"$PARSEDGENRE" = "X" ]; then
2139 echo "Genre: $PARSEDGENRE"
2142 if [ ! "$ONETRACK" = "y" ]; then
2143 for TRACK in $(f_seq_row 1 $TRACKS)
2145 echo $TRACK: "$(grep ^TTITLE$(expr $TRACK - 1)= "${CDDBPARSEFILE}" | cut -f2- -d= | tr -d \\r\\n)"
2151 # Check for a local CDDB file, and report success
2154 if checkstatus cddb-readcomplete && checkstatus cddb-choice >/dev/null; then :; else
2156 CDDBLOCALSTATUS="notfound"
2157 CDDBDISCID=$(echo $TRACKINFO | cut -d' ' -f1)
2160 if [ "$CDDBLOCALRECURSIVE" = "y" ]; then
2161 CDDBLOCALRESULTS="$(find ${CDDBLOCALDIR} -name "${CDDBDISCID}" -type f 2> /dev/null)"
2162 if [ ! "${CDDBLOCALRESULTS}" = "" ]; then
2163 if (( $(echo "${CDDBLOCALRESULTS}" | wc -l) == 1 )); then
2164 CDDBLOCALFILE="${CDDBLOCALRESULTS}"
2165 CDDBLOCALMATCH=single
2166 elif (( $(echo "${CDDBLOCALRESULTS}" | wc -l) > 1 )); then
2167 CDDBLOCALMATCH=multiple
2172 elif [ "$CDDBLOCALMATCH" = "none" ] && [ -r "${CDDBLOCALDIR}/${CDDBDISCID}" ]; then
2173 CDDBLOCALFILE="${CDDBLOCALDIR}/${CDDBDISCID}"
2174 CDDBLOCALMATCH=single
2179 # If the user has selected to check a local CDDB repo, we proceed with it
2180 case $CDDBLOCALMATCH in
2182 echo "Processing multiple matching CDDB entries..." > "$ABCDETEMPDIR/cddblocalchoices"
2184 echo "$CDDBLOCALRESULTS" | while read RESULT ; do
2186 # List out disc title/author and contents
2187 CDDBLOCALREAD="$ABCDETEMPDIR/cddblocalread.$X"
2188 cat "$RESULT" > "${CDDBLOCALREAD}"
2191 do_cddbparse "${CDDBLOCALREAD}"
2193 ##FIXME## QUICK HACK !!!!
2194 if [ ! "$INTERACTIVE" = "y" ]; then break ; fi
2195 } >> "$ABCDETEMPDIR/cddblocalchoices"
2197 if [ $(cat "$ABCDETEMPDIR/cddblocalchoices" | wc -l) -ge 24 ] && [ "$INTERACTIVE" = "y" ]; then
2198 page "$ABCDETEMPDIR/cddblocalchoices"
2200 # It's all going to fit in one page, cat it
2201 cat "$ABCDETEMPDIR/cddblocalchoices" >&2
2203 CDDBLOCALCHOICES=$( echo "$CDDBLOCALRESULTS" | wc -l )
2204 # Setting the choice to an impossible integer to avoid errors in the numeric comparisons
2205 CDDBLOCALCHOICENUM=-1
2206 if [ "$INTERACTIVE" = "y" ]; then
2207 while [ $CDDBLOCALCHOICENUM -lt 0 ] || [ $CDDBLOCALCHOICENUM -gt $CDDBLOCALCHOICES ]; do
2208 echo -n "Locally cached CDDB entries found. Which one would you like to use (0 for none)? [0-$CDDBLOCALCHOICES]: " >&2
2209 read CDDBLOCALCHOICE
2210 [ x"$CDDBLOCALCHOICE" = "x" ] && CDDBLOCALCHOICE="1"
2211 # FIXME # Introduce diff's
2212 if echo $CDDBLOCALCHOICE | grep -E "[[:space:]]*[[:digit:]]+,[[:digit:]]+[[:space:]]*" > /dev/null 2>&1 ; then
2213 diffentries cddblocalread "$CDDBLOCALCHOICES" "$CDDBLOCALCHOICE"
2214 elif echo $CDDBLOCALCHOICE | grep -E "[[:space:]]*[[:digit:]]+[[:space:]]*" > /dev/null 2>&1 ; then
2215 # Make sure we get a valid choice
2216 CDDBLOCALCHOICENUM=$(echo $CDDBLOCALCHOICE | xargs printf %d 2>/dev/null)
2217 if [ $CDDBLOCALCHOICENUM -lt 0 ] || [ $CDDBLOCALCHOICENUM -gt $CDDBLOCALCHOICES ]; then
2218 echo "Invalid selection. Please choose a number between 0 and $CDDBLOCALCHOICES." >&2
2224 #echo "Selected ..."
2226 CDDBLOCALCHOICENUM=1
2228 if [ ! "$CDDBLOCALCHOICENUM" = "0" ]; then
2229 #echo "Using local copy of CDDB data"
2230 echo "# DO NOT ERASE THIS LINE! Added by abcde to imitate cddb output" > "$ABCDETEMPDIR/cddbread.1"
2231 cat "$ABCDETEMPDIR/cddblocalread.$CDDBLOCALCHOICENUM" >> "$ABCDETEMPDIR/cddbread.1"
2232 echo 999 > "$ABCDETEMPDIR/cddbquery" # Assuming 999 isn't used by CDDB
2233 echo cddb-readcomplete >> "$ABCDETEMPDIR/status"
2234 do_cddbparse "$ABCDETEMPDIR/cddbread.1" > "$ABCDETEMPDIR/cddbchoices"
2235 echo cddb-choice=1 >> "$ABCDETEMPDIR/status"
2236 CDDBLOCALSTATUS="found"
2238 #echo "Not using local copy of CDDB data"
2239 CDDBLOCALSTATUS="notfound"
2243 # List out disc title/author and contents
2244 do_cddbparse "${CDDBLOCALFILE}"
2245 #if [ "$CDROMREADERSYNTAX" = "flac" ] ; then
2246 # echo -n "Embedded cuesheet entry found, use it [Y/n]? " >&2
2248 echo -n "Locally cached CDDB entry found, use it [Y/n]? " >&2
2250 if [ "$INTERACTIVE" = "y" ]; then
2252 while [ "$USELOCALRESP" != "y" ] && [ "$USELOCALRESP" != "n" ] && [ "$USELOCALRESP" != "" ] ; do
2253 echo -n 'Invalid selection. Please answer "y" or "n": ' >&2
2256 [ x"$USELOCALRESP" = "x" ] && USELOCALRESP="y"
2260 if [ "$USELOCALRESP" = "y" ]; then
2261 #echo "Using local copy of CDDB data"
2262 echo "# DO NOT ERASE THIS LINE! Added by abcde to imitate cddb output" > "$ABCDETEMPDIR/cddbread.1"
2263 cat "${CDDBLOCALFILE}" >> "$ABCDETEMPDIR/cddbread.1"
2264 echo 999 > "$ABCDETEMPDIR/cddbquery" # Assuming 999 isn't used by CDDB
2265 echo cddb-readcomplete >> "$ABCDETEMPDIR/status"
2266 do_cddbparse "${CDDBLOCALFILE}" > "$ABCDETEMPDIR/cddbchoices"
2267 echo cddb-choice=1 >> "$ABCDETEMPDIR/status"
2268 CDDBLOCALSTATUS="single"
2270 #echo "Not using local copy of CDDB data"
2271 CDDBLOCALSTATUS="notfound"
2275 CDDBLOCALSTATUS="notfound"
2282 # Try to read CD-Text from the drive using icedax / cdda2wav
2285 if new_checkexec icedax; then
2286 CDTEXT_READER=icedax
2287 elif new_checkexec cdda2wav; then
2288 CDTEXT_READER=cdda2wav
2290 # Didn't find either, bail
2294 if [ "$OSFLAVOUR" = "OSX" ] ; then
2295 # Hei, we have to unmount the device before running anything like cdda2wav/icedax in OSX
2296 diskutil unmount ${CDROM#/dev/}
2297 # Also, in OSX the cdrom device for cdda2wav/icedax changes...
2298 CDDA2WAVCDROM="IODVDServices"
2299 elif [ "$OSFLAVOUR" = "FBSD" ] ; then
2300 CDDA2WAVCDROM="$CDROMID"
2302 if [ "$CDROMID" = "" ]; then
2303 CDDA2WAVCDROM="$CDROM"
2305 CDDA2WAVCDROM="$CDROMID"
2309 # Do we have CD-Text on the disc (and can the drive read it?)
2310 ${CDTEXT_READER} -J -N -D ${CDDA2WAVCDROM} > "$ABCDETEMPDIR/cd-text" 2>&1
2311 grep -q '^CD-Text: detected' "$ABCDETEMPDIR/cd-text"
2313 if [ $ERRORCODE -ne 0 ]; then
2314 # No CD-Text found, bail
2318 rm -f "$ABCDETEMPDIR/cddbchoices"
2320 # Make an empty template
2321 $CDDBTOOL template $(cat "$ABCDETEMPDIR/discid") > "$ABCDETEMPDIR/cddbread.1"
2322 echo -n "Retrieved 1 CD-Text match..." >> "$ABCDETEMPDIR/cddbchoices"
2323 echo "done." >> "$ABCDETEMPDIR/cddbchoices"
2324 echo cddb-read-1-complete >> "$ABCDETEMPDIR/status"
2325 echo cddb-choice=1 >> "$ABCDETEMPDIR/status"
2326 ATITLE=$(grep -e '^Album title:' "${ABCDETEMPDIR}/cd-text" | cut -c14- )
2327 echo "200 none ${ATITLE}" >> "$ABCDETEMPDIR/cddbquery"
2328 # List out disc title/author and contents
2329 echo ---- ${ATITLE} ---- >> "$ABCDETEMPDIR/cddbchoices"
2330 for TRACK in $(f_seq_row 1 $TRACKS)
2332 TRACKM1=$(($TRACK - 1))
2333 TITLE="$(grep -E ^Track\ +$TRACK: "$ABCDETEMPDIR/cd-text" | tr -d \\r\\n | sed 's~^Track ..: .~~g;'"s~'$~~g")"
2334 echo "$TRACK: $TITLE" >> "$ABCDETEMPDIR/cddbchoices"
2335 sed "s~^TTITLE${TRACKM1}=.*~TTITLE${TRACKM1}=${TITLE}~" "$ABCDETEMPDIR/cddbread.1" > "$ABCDETEMPDIR/cddbread.new"
2336 mv -f "$ABCDETEMPDIR/cddbread.new" "$ABCDETEMPDIR/cddbread.1"
2338 sed "s~^DTITLE=.*~DTITLE=${ATITLE}~" "$ABCDETEMPDIR/cddbread.1" > "$ABCDETEMPDIR/cddbread.new"
2339 mv -f "$ABCDETEMPDIR/cddbread.new" "$ABCDETEMPDIR/cddbread.1"
2340 echo >> "$ABCDETEMPDIR/cddbchoices"
2341 echo "cdtext-readcomplete" >> "$ABCDETEMPDIR/status"
2345 # Work with the musicbrainz WS API, then transform the results here so
2346 # they look (very) like the results from CDDB. Maybe not the best way
2347 # to go, but it Works For Me (TM)
2351 if checkstatus musicbrainz-readcomplete; then :; else
2352 vecho "Obtaining Musicbrainz results..."
2353 # If MB is to be used, interpret the query results and read all
2354 # the available entries.
2355 rm -f "$ABCDETEMPDIR/cddbchoices"
2356 CDDBCHOICES=1 # Overridden by multiple matches
2357 MBDISCID=$(echo $TRACKINFO | cut -d' ' -f1)
2358 ${MUSICBRAINZ} --command data --discid "$MBDISCID" --workdir "$ABCDETEMPDIR"
2360 # The helper script will write disc matches out to
2361 # cddbread.*. Count how many we have
2362 if [ ! -f "${ABCDETEMPDIR}/cddbread.1" ] ; then
2363 # No matches. Use the normal cddb template for the user to
2365 echo "No Musicbrainz match." >> "$ABCDETEMPDIR/cddbchoices"
2366 $CDDBTOOL template $(cat "$ABCDETEMPDIR/discid") > "$ABCDETEMPDIR/cddbread.0"
2367 # List out disc title/author and contents of template
2368 echo ---- Unknown Artist / Unknown Album ---- >> "$ABCDETEMPDIR/cddbchoices"
2370 for TRACK in $(f_seq_row 1 $TRACKS)
2372 echo $TRACK: "$(grep ^TTITLE$(expr $TRACK - 1)= "$ABCDETEMPDIR/cddbread.0" | cut -f2- -d= | tr -d \\r\\n)" >> "$ABCDETEMPDIR/cddbchoices"
2374 echo >> "$ABCDETEMPDIR/cddbchoices"
2375 echo cddb-read-0-complete >> "$ABCDETEMPDIR/status"
2376 echo cddb-choice=0 >> "$ABCDETEMPDIR/status"
2377 echo 503 > "$ABCDETEMPDIR/cddbquery"
2379 # We have some matches
2380 NUM_RESPONSES=$(echo "${ABCDETEMPDIR}"/cddbread.* | wc -w)
2381 if [ "$NUM_RESPONSES" -eq 1 ] ; then
2383 echo -n "Retrieved 1 Musicbrainz match..." >> "$ABCDETEMPDIR/cddbchoices"
2384 echo "done." >> "$ABCDETEMPDIR/cddbchoices"
2385 echo cddb-read-1-complete >> "$ABCDETEMPDIR/status"
2386 echo cddb-choice=1 >> "$ABCDETEMPDIR/status"
2387 ATITLE=$(grep -e '^DTITLE=' "${ABCDETEMPDIR}/cddbread.1" | cut -c8- )
2388 echo "200 none ${ATITLE}" >> "$ABCDETEMPDIR/cddbquery"
2389 # List out disc title/author and contents
2390 echo ---- ${ATITLE} ---- >> "$ABCDETEMPDIR/cddbchoices"
2391 for TRACK in $(f_seq_row 1 $TRACKS)
2393 echo $TRACK: "$(grep ^TTITLE$(expr $TRACK - 1)= "$ABCDETEMPDIR/cddbread.1" | cut -f2- -d= | tr -d \\r\\n)" >> "$ABCDETEMPDIR/cddbchoices"
2395 echo >> "$ABCDETEMPDIR/cddbchoices"
2397 echo "210 Found exact matches, list follows (until terminating .)" > "$ABCDETEMPDIR/cddbquery"
2398 echo "Multiple Musicbrainz matches:" >> "$ABCDETEMPDIR/cddbchoices"
2399 for file in "$ABCDETEMPDIR"/cddbread.*
2401 X=$(echo $file | sed 's/^.*cddbread\.//g')
2402 echo cddb-read-$X-complete >> "$ABCDETEMPDIR/status"
2403 ATITLE=$(grep -e '^DTITLE=' "${ABCDETEMPDIR}"/cddbread.$X | cut -c8- )
2404 echo "none ${ATITLE}" >> "$ABCDETEMPDIR/cddbquery"
2405 # List out disc title/author and contents
2406 echo "#$X: ---- ${ATITLE} ----" >> "$ABCDETEMPDIR/cddbchoices"
2407 for TRACK in $(f_seq_row 1 $TRACKS)
2409 echo $TRACK: "$(grep ^TTITLE$(expr $TRACK - 1)= "$ABCDETEMPDIR/cddbread.$X" | cut -f2- -d= | tr -d \\r\\n)" >> "$ABCDETEMPDIR/cddbchoices"
2411 echo >> "$ABCDETEMPDIR/cddbchoices"
2413 echo "." >> "$ABCDETEMPDIR/cddbquery"
2416 echo "musicbrainz-readcomplete" >> "$ABCDETEMPDIR/status"
2423 # Perform CDDB protocol version check if it hasn't already been done
2424 if checkstatus cddb-statcomplete; then :; else
2425 if [ "$CDDBAVAIL" = "n" ]; then
2427 echo 503 > "$ABCDETEMPDIR/cddbstat"
2430 CDDBUSER=$(echo $HELLOINFO | cut -f1 -d'@')
2431 CDDBHOST=$(echo $HELLOINFO | cut -f2- -d'@')
2432 while test $rc -eq 1 -a $CDDBPROTO -ge 3; do
2433 vecho "Checking CDDB server status..."
2434 $CDDBTOOL stat $CDDBURL $CDDBUSER $CDDBHOST $CDDBPROTO > "$ABCDETEMPDIR/cddbstat"
2435 RESPONSECODE=$(head -n 1 "$ABCDETEMPDIR/cddbstat" | cut -f1 -d' ')
2436 case "$RESPONSECODE" in
2437 210) # 210 OK, status information follows (until terminating `.')
2440 501) # 501 Illegal CDDB protocol level: <n>.
2441 CDDBPROTO=`expr $CDDBPROTO - 1`
2443 *) # Try a cddb query, since freedb2.org doesn't support the stat or ver commands
2444 # FreeDB TESTCD disc-id is used for query
2445 $CDDBTOOL query $CDDBURL $CDDBPROTO $CDDBUSER $CDDBHOST 03015501 1 296 344 > "$ABCDETEMPDIR/cddbstat"
2446 RESPONSECODE=$(head -n 1 "$ABCDETEMPDIR/cddbstat" | cut -f1 -d' ')
2447 case "$RESPONSECODE" in
2448 2??) # Server responded, everything seems OK
2458 if test $rc -eq 1; then
2462 echo cddb-statcomplete >> "$ABCDETEMPDIR/status"
2470 CDDBDISCID=$(echo $TRACKINFO | cut -d' ' -f1)
2471 CDDBLOCALFILE="${CDDBLOCALDIR}/${CDDBDISCID}"
2473 # Perform CDDB query if it hasn't already been done
2474 if checkstatus cddb-querycomplete; then :; else
2475 if [ "$CDDBAVAIL" = "n" ]; then
2477 echo 503 > "$ABCDETEMPDIR/cddbquery"
2478 # The default CDDBLOCALSTATUS is "notfound"
2479 # This part will be triggered if the user CDDB repo does not
2480 # contain the entry, or if we are not trying to use the repo.
2482 vecho "Querying the CDDB server..."
2483 CDDBUSER=$(echo $HELLOINFO | cut -f1 -d'@')
2484 CDDBHOST=$(echo $HELLOINFO | cut -f2- -d'@')
2485 $CDDBTOOL query $CDDBURL $CDDBPROTO $CDDBUSER $CDDBHOST $TRACKINFO > "$ABCDETEMPDIR/cddbquery"
2491 # no match found in database,
2492 # wget/fetch error, or user requested not to use CDDB
2493 # Make up an error code (503) that abcde
2494 # will recognize in do_cddbread
2495 # and compensate by making a template
2496 echo 503 > "$ABCDETEMPDIR/cddbquery"
2498 *) # strange and unknown error
2499 echo ERRORCODE=$ERRORCODE
2500 echo "abcde: $CDDBTOOL returned unknown error code"
2504 echo cddb-querycomplete >> "$ABCDETEMPDIR/status"
2511 # If it's not to be used, generate a template.
2512 # Then, display it (or them) and let the user choose/edit it
2513 if checkstatus cddb-readcomplete; then :; else
2514 vecho "Obtaining CDDB results..."
2515 # If CDDB is to be used, interpret the query results and read all
2516 # the available entries.
2517 rm -f "$ABCDETEMPDIR/cddbchoices"
2518 CDDBCHOICES=1 # Overridden by multiple matches
2519 RESPONSECODE=$(head -n 1 "$ABCDETEMPDIR/cddbquery" | cut -f1 -d' ')
2520 case "$RESPONSECODE" in
2522 # One exact match, retrieve it
2523 # 200 [section] [discid] [artist] / [title]
2524 if checkstatus cddb-read-1-complete; then :; else
2525 echo -n "Retrieving 1 CDDB match..." >> "$ABCDETEMPDIR/cddbchoices"
2526 $CDDBTOOL read $CDDBURL $CDDBPROTO $CDDBUSER $CDDBHOST $(cut -f2,3 -d' ' "$ABCDETEMPDIR/cddbquery") > "$ABCDETEMPDIR/cddbread.1"
2527 echo "done." >> "$ABCDETEMPDIR/cddbchoices"
2528 echo cddb-read-1-complete >> "$ABCDETEMPDIR/status"
2529 echo cddb-choice=1 >> "$ABCDETEMPDIR/status"
2531 # List out disc title/author and contents
2532 echo ---- "$(cut '-d ' -f4- "$ABCDETEMPDIR/cddbquery")" ---- >> "$ABCDETEMPDIR/cddbchoices"
2533 for TRACK in $(f_seq_row 1 $TRACKS)
2535 echo $TRACK: "$(grep ^TTITLE$(expr $TRACK - 1)= "$ABCDETEMPDIR/cddbread.1" | cut -f2- -d= | tr -d \\r\\n)" >> "$ABCDETEMPDIR/cddbchoices"
2537 echo >> "$ABCDETEMPDIR/cddbchoices"
2541 case "$RESPONSECODE" in
2542 202) echo "No CDDB match." >> "$ABCDETEMPDIR/cddbchoices" ;;
2543 403|409) echo "CDDB entry is corrupt, or the handshake failed." >> "$ABCDETEMPDIR/cddbchoices" ;;
2544 503) echo "CDDB unavailable." >> "$ABCDETEMPDIR/cddbchoices" ;;
2546 $CDDBTOOL template $(cat "$ABCDETEMPDIR/discid") > "$ABCDETEMPDIR/cddbread.0"
2547 # List out disc title/author and contents of template
2548 echo ---- Unknown Artist / Unknown Album ---- >> "$ABCDETEMPDIR/cddbchoices"
2550 for TRACK in $(f_seq_row 1 $TRACKS)
2552 echo $TRACK: "$(grep ^TTITLE$(expr $TRACK - 1)= "$ABCDETEMPDIR/cddbread.0" | cut -f2- -d= | tr -d \\r\\n)" >> "$ABCDETEMPDIR/cddbchoices"
2554 echo >> "$ABCDETEMPDIR/cddbchoices"
2555 echo cddb-read-0-complete >> "$ABCDETEMPDIR/status"
2556 echo cddb-choice=0 >> "$ABCDETEMPDIR/status"
2559 # Multiple exact, (possibly multiple) inexact matches
2561 if [ "$RESPONSECODE" = "211" ]; then IN=in; fi
2562 if [ "$(wc -l < "$ABCDETEMPDIR/cddbquery" | tr -d ' ')" -eq 3 ]; then
2563 echo "One ${IN}exact match:" >> "$ABCDETEMPDIR/cddbchoices"
2564 tail -n +2 "$ABCDETEMPDIR/cddbquery" | head -n 1 >> "$ABCDETEMPDIR/cddbchoices"
2565 echo cddb-choice=1 >> "$ABCDETEMPDIR/status"
2567 echo "Multiple ${IN}exact matches:" >> "$ABCDETEMPDIR/cddbchoices"
2569 vecho -n "Retrieving multiple matches... "
2570 grep -v ^[.]$ "$ABCDETEMPDIR/cddbquery" | ( X=0
2571 read DISCINFO # eat top line
2575 if checkstatus cddb-read-$X-complete; then :; else
2576 $CDDBTOOL read $CDDBURL $CDDBPROTO $CDDBUSER $CDDBHOST $(echo $DISCINFO | cut -f1,2 -d' ') > "$ABCDETEMPDIR/cddbread.$X"
2577 echo cddb-read-$X-complete >> "$ABCDETEMPDIR/status"
2579 # List out disc title/author and contents
2580 echo \#$X: ---- "$DISCINFO" ---- >> "$ABCDETEMPDIR/cddbchoices"
2581 for TRACK in $(f_seq_row 1 $TRACKS)
2583 echo $TRACK: "$(grep ^TTITLE$(expr $TRACK - 1)= "$ABCDETEMPDIR/cddbread.$X" | cut -f2- -d= | tr -d \\r\\n)" >> "$ABCDETEMPDIR/cddbchoices"
2585 echo >> "$ABCDETEMPDIR/cddbchoices"
2588 CDDBCHOICES=$(expr $(cat "$ABCDETEMPDIR/cddbquery" | wc -l) - 2)
2592 for TRACK in $(f_seq_row 1 $TRACKS)
2594 echo $TRACK: "$(grep ^TTITLE$(expr $TRACK - 1)= "$ABCDETEMPDIR/cddbread.1" | cut -f2- -d= | tr -d \\r\\n)" >> "$ABCDETEMPDIR/cddbchoices"
2596 echo >> "$ABCDETEMPDIR/cddbchoices"
2597 echo cddb-read-1-complete >> "$ABCDETEMPDIR/status"
2598 echo cddb-choice=1 >> "$ABCDETEMPDIR/status"
2601 echo "cddb-readcomplete" >> "$ABCDETEMPDIR/status"
2608 if checkstatus cddb-edit >/dev/null; then
2609 CDDBDATA="$ABCDETEMPDIR/cddbread.$(checkstatus cddb-choice)"
2610 VARIOUSARTISTS="$(checkstatus variousartists)"
2611 VARIOUSARTISTSTYLE="$(checkstatus variousartiststyle)"
2614 if [ "$INTERACTIVE" = "y" ]; then
2615 # We should show the CDDB results both when we are not using the local CDDB repo
2616 # or when we are using it but we could not find a proper match
2617 if [ "$CDDBUSELOCAL" = "y" ] && [ "$CDDBLOCALSTATUS" = "notfound" ] || [ ! "$CDDBUSELOCAL" = "y" ]; then
2618 # Display the $ABCDETEMPDIR/cddbchoices file created above
2619 # Pick a pager so that if the tracks overflow the screen the user can still view everything
2620 if [ -r "$ABCDETEMPDIR/cddbchoices" ]; then
2621 CDDBCHOICES=$(expr $(cat "$ABCDETEMPDIR/cddbquery" | wc -l) - 2)
2622 CHOICE=$(checkstatus cddb-choice)
2623 if [ -n "$CHOICE" ] ; then
2624 case $CDDBCHOICES in
2625 -1) if head -1 "$ABCDETEMPDIR/cddbquery" | grep "^$" > /dev/null 2>&1 ; then
2626 log error "CDDB query failed!"
2629 cat "$ABCDETEMPDIR/cddbchoices"
2632 1) cat "$ABCDETEMPDIR/cddbchoices" ;;
2634 echo "Selected: #$CHOICE"
2635 do_cddbparse "$ABCDETEMPDIR/cddbread.$CHOICE"
2639 # The user has a choice to make, display the info in a pager if necessary
2640 if [ $(cat "$ABCDETEMPDIR/cddbchoices" | wc -l) -ge 24 ]; then
2641 page "$ABCDETEMPDIR/cddbchoices"
2643 # It's all going to fit in one page, cat it
2644 cat "$ABCDETEMPDIR/cddbchoices" >&2
2648 # Setting the choice to an impossible integer to avoid errors in the numeric comparisons
2650 # I'll take CDDB read #3 for $400, Alex
2651 while [ $CDCHOICENUM -lt 0 ] || [ $CDCHOICENUM -gt $CDDBCHOICES ]; do
2652 echo -n "Which entry would you like abcde to use (0 for none)? [0-$CDDBCHOICES]: " >&2
2654 [ X"$CDDBCHOICE" = "X" ] && CDDBCHOICE=1
2655 if echo $CDDBCHOICE | grep -E "[[:space:]]*[[:digit:]]+,[[:digit:]]+[[:space:]]*" > /dev/null 2>&1 ; then
2656 if [ ! X"$DIFF" = "X" ]; then
2657 PARSECHOICE1=$(echo $CDDBCHOICE | cut -d"," -f1 | xargs printf %d 2>/dev/null)
2658 PARSECHOICE2=$(echo $CDDBCHOICE | cut -d"," -f2 | xargs printf %d 2>/dev/null)
2659 if [ $PARSECHOICE1 -lt 1 ] || [ $PARSECHOICE1 -gt $CDDBCHOICES ] || \
2660 [ $PARSECHOICE2 -lt 1 ] || [ $PARSECHOICE2 -gt $CDDBCHOICES ] || \
2661 [ $PARSECHOICE1 -eq $PARSECHOICE2 ]; then
2662 echo "Invalid diff range. Please select two comma-separated numbers between 1 and $CDDBCHOICES" >&2
2664 # We parse the 2 choices to diff, store them in temporary files and diff them.
2665 for PARSECHOICE in $(echo $CDDBCHOICE | tr , \ ); do
2666 do_cddbparse "$ABCDETEMPDIR/cddbread.$PARSECHOICE" > "$ABCDETEMPDIR/cddbread.parsechoice.$PARSECHOICE"
2668 echo "Showing diff between choices $PARSECHOICE1 and $PARSECHOICE2..." > "$ABCDETEMPDIR/cddbread.diff"
2669 $DIFF $DIFFOPTS "$ABCDETEMPDIR/cddbread.parsechoice.$PARSECHOICE1" "$ABCDETEMPDIR/cddbread.parsechoice.$PARSECHOICE2" >> "$ABCDETEMPDIR/cddbread.diff"
2670 if [ $(cat "$ABCDETEMPDIR/cddbread.diff" | wc -l) -ge 24 ]; then
2671 page "$ABCDETEMPDIR/cddbread.diff"
2673 cat "$ABCDETEMPDIR/cddbread.diff" >&2
2677 echo "The diff program was not found in your path. Please choose a number between 0 and $CDDBCHOICES." >&2
2679 elif echo $CDDBCHOICE | grep -E "[[:space:]]*[[:digit:]]+[[:space:]]*" > /dev/null 2>&1 ; then
2680 # Make sure we get a valid choice
2681 CDCHOICENUM=$(echo $CDDBCHOICE | xargs printf %d 2>/dev/null)