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 " WARNING: Deprecated. Use \"cue\" action"
50 #echo "-M Create a CUE file"
51 echo "-o <type1[,type2]...>"
52 echo " Output file type(s) (vorbis,mp3,flac,spx,mpc,wav,m4a). Defaults to vorbis"
53 echo "-p Pad track numbers with 0's (if less than 10 tracks)"
54 echo "-P Use UNIX pipes to read+encode without wav files"
56 echo " Set quality level (high,medium,low)"
57 echo "-r <host1[,host2]...>"
58 echo " Also encode on these remote hosts"
59 echo "-R Use local CDDB in recursive mode"
61 echo " Show dielfs from the CDDB info (year,genre)"
62 echo "-S <#> Set the CD speed"
63 echo "-t <#> Start the track numbering at a given number"
64 echo "-T <#> Same as -t but modifies tag numbering"
65 echo "-U Do NOT use UNICODE (UTF8) tags and comments"
66 echo "-v Show version number and exit"
67 echo "-V Be a bit more verbose about what is happening behind the scenes"
68 echo "-x Eject CD after all tracks are read"
70 echo " Add a comment to the CD tracks"
71 echo "-W <#> Contatenate CDs: -T #01 -w \"CD #\""
72 echo "-z Use debug CDROMREADERSYNTAX option (needs cdparanoia)"
74 echo "Tracks is a space-delimited list of tracks to grab."
75 echo "Ranges specified with hyphens are allowed (i.e., 1-5)."
77 #echo "Double hyphens are used to concatenate tracks"
82 echo "$@" >> "$ABCDETEMPDIR/status"
85 # log [level] [message]
87 # log outputs the right message in a common format
93 error) echo "[ERROR] abcde: $@" >&2 ;;
94 warning) echo "[WARNING] $@" >&2 ;;
95 info) echo "[INFO] $@" ;;
99 # Funtions to replace the need of seq, which is too distribution dependant.
103 while [ $i -ne `expr $2 + 1` ]
113 if echo $i | grep "[[:digit:]]" > /dev/null 2>&1 ; then
114 while [ $i -ne `expr $2 + 1` ]
121 log error "syntax error while processing track numbers"
126 # Functions to replace the need of awk {print $1} and {print $NF}
129 if [ X"$1" = "X" ]; then
130 for first in `cat`; do
141 if [ X"$1" = "X" ]; then
142 for stdin in `cat`; do
146 for last in $@ ; do :; done
151 # checkstatus [blurb]
152 # Returns "0" if the blurb was found, returns 1 if it wasn't
153 # Puts the blurb content, if available, on stdout.
154 # Otherwise, returns "".
157 # Take the last line in the status file if there's multiple matches
159 BLURB=$(egrep $PATTERN "$ABCDETEMPDIR/status" | tail -n 1)
161 if [ -z "$BLURB" ]; then
166 # See if there's a = in it
167 if [ "$(echo $BLURB | grep -c =)" != "0" ]; then
168 echo "$(echo $BLURB | cut -f2- -d=)"
174 # checkwarnings [blurb]
175 # Returns "0" if the blurb was found (meaning there was an warning),
176 # returns 1 if it wasn't (yes this is a little backwards).
177 # Does not print the blurb on stdout.
178 # Otherwise, returns "".
181 if [ -e "$ABCDETEMPDIR/warnings" ]; then :; else
184 # Take the last line in the status file if there's multiple matches
186 BLURB="$(egrep $PATTERN "$ABCDETEMPDIR/warnings" | tail -n 1)"
188 if [ -z "$BLURB" ]; then
189 # negative, we did not have a negative...
192 # affirmative, we had a negative...
197 # checkerrors [blurb]
198 # Returns "0" if the blurb was found (meaning there was an error),
199 # returns 1 if it wasn't (yes this is a little backwards).
200 # Does not print the blurb on stdout.
201 # Otherwise, returns "".
204 if [ -e "$ABCDETEMPDIR/errors" ]; then :; else
207 # Take the last line in the status file if there's multiple matches
209 BLURB="$(egrep $PATTERN "$ABCDETEMPDIR/errors" | tail -n 1)"
211 if [ -z "$BLURB" ]; then
212 # negative, we did not have a negative...
215 # affirmative, we had a negative...
221 # Finds the right pager in the system to display a file
225 # Use the debian sensible-pager wrapper to pick the pager
226 # user has requested via their $PAGER environment variable
227 if [ -x "/usr/bin/sensible-pager" ]; then
228 /usr/bin/sensible-pager "$PAGEFILE"
229 elif [ -x "$PAGER" ]; then
230 # That failed, try to load the preferred editor, starting
231 # with their PAGER variable
233 # If that fails, check for less
234 elif [ -x /usr/bin/less ]; then
235 /usr/bin/less -f "$PAGEFILE"
236 # more should be on all UNIX systems
237 elif [ -x /bin/more ]; then
238 /bin/more "$PAGEFILE"
240 # No bananas, just cat the thing
245 # run_command [blurb] [command...]
246 # 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
364 elif [ ! -x "$(which $X)" ]; then
365 log error "$X is not executable." >&2
371 # diffentries <filename> <max_value> <entry1>,<entry2>
372 # max_value: the range of entries goes from 1 to <max_value>
377 local CDDBDIFFCHOICES=$1
379 local CDDBDIFFCHOICE="$@"
380 if [ ! X"$DIFF" = "X" ]; then
381 PARSECHOICE1=$(echo $CDDBDIFFCHOICE | cut -d"," -f1 | xargs printf %d 2>/dev/null)
382 PARSECHOICE2=$(echo $CDDBDIFFCHOICE | cut -d"," -f2 | xargs printf %d 2>/dev/null)
383 if [ $PARSECHOICE1 -lt 1 ] || [ $PARSECHOICE1 -gt $CDDBDIFFCHOICES ] || \
384 [ $PARSECHOICE2 -lt 1 ] || [ $PARSECHOICE2 -gt $CDDBDIFFCHOICES ] || \
385 [ $PARSECHOICE1 -eq $PARSECHOICE2 ]; then
386 echo "Invalid diff range. Please select two coma-separated numbers between 1 and $CDDBDIFFCHOICES" >&2
388 # We parse the 2 choices to diff, store them in temporary files and diff them.
389 for PARSECHOICE in $(echo $CDDBDIFFCHOICE | tr , \ ); do
390 do_cddbparse "$ABCDETEMPDIR/$FILENAME.$PARSECHOICE" > "$ABCDETEMPDIR/$FILENAME.parsechoice.$PARSECHOICE"
392 echo "Showing diff between choices $PARSECHOICE1 and $PARSECHOICE2..." > "$ABCDETEMPDIR/$FILENAME.diff"
393 $DIFF $DIFFOPTS "$ABCDETEMPDIR/$FILENAME.parsechoice.$PARSECHOICE1" "$ABCDETEMPDIR/$FILENAME.parsechoice.$PARSECHOICE2" >> "$ABCDETEMPDIR/$FILENAME.diff"
394 if [ $(cat "$ABCDETEMPDIR/$FILENAME.diff" | wc -l) -ge 24 ]; then
395 page "$ABCDETEMPDIR/$FILENAME.diff"
397 cat "$ABCDETEMPDIR/$FILENAME.diff" >&2
401 echo "The diff program was not found in your path. Please choose a number between 0 and $CDDBDIFFCHOICES." >&2
406 # Finds an specific field from cddbinfo
411 TRACKNAME="$(grep ^TTITLE$CDDBTRACKNUM= "$CDDBDATA" | head -n 1 | cut -f2- -d= | tr -d \[:cntrl:\] | sed 's/\ \+$//')"
414 TRACKNAME="$(grep ^TTITLE$CDDBTRACKNUM= "$CDDBDATA" | cut -f2- -d= | tr -d \[:cntrl:\] | sed 's/\ \+$//')"
420 # Get the track number we are going to use for different actions
423 if [ -n "$STARTTRACKNUMBER" ] ; then
424 # Get the trackpadding from the current track
425 CURRENTTRACKPADDING=$(echo -n $UTRACKNUM | wc -c)
426 TRACKNUM=$( printf %0.${CURRENTTRACKPADDING}d $(expr ${UTRACKNUM} + ${STARTTRACKNUMBER} - $FIRSTTRACK ))
428 TRACKNUM=${UTRACKNUM}
434 # Calculate cddb disc ids without requiring specialized helper programs.
435 # largely copied from cd-discid and musicbrainz examples. some of the steps
436 # don't make sense, but they're necessary to match the ids generated by other
439 ## FIXME ## Right now, we get 2 frames more than with cue2discid ??
440 # data@petit:~$ sh /tmp/cue2discid /home/data/tmp/flac/01.Roisin_Murphy--Ruby_Blue.flac
441 # 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
442 # 980b4b0c 12 150 21685 37687 53146 80061 97782 124071 144448 160603 173208 197438 201334 2895
443 # data@petit:~$ metaflac --export-cuesheet-to=- /home/data/tmp/flac/01.Roisin_Murphy--Ruby_Blue.flac| python /home/data/sources/abcde/trunk/examples/cue2discid
444 # 980b4b0c 12 150 21685 37687 53146 80061 97782 124071 144448 160603 173208 197438 201334 2893
446 # Variables: OFFSETS, TRACKS, LEADOUT, [LEADIN]
449 if [ X"$LEADOUT" = "X" ]; then
450 log warning "Error trying to calculate disc ids without lead-out information."
454 # default to a two second lead-in
456 LEADIN=${LEADIN:=150}
458 # number of cdframes per second
461 # reset cddb checksum for cddb disc-id calululation
465 for OFFSET in $(echo $OFFSETS)
467 COOKEDOFFSETS="${COOKEDOFFSETS} $(($OFFSET + $LEADIN))"
469 OFFSETTIME=$(( ($OFFSET + $LEADIN) / $CDFRAMES ))
470 while [ $OFFSETTIME -gt 0 ]; do
471 CDDBCKSUM=$(($CDDBCKSUM + $OFFSETTIME % 10))
472 OFFSETTIME=$(($OFFSETTIME / 10))
477 COOKEDOFFSETS="${COOKEDOFFSETS:1}" # eat the leading space
479 PREGAP=$(($(echo $OFFSETS | cut -f1 -d' ')))
480 TOTALTIME=$(( (($LEADOUT + $LEADIN + $PREGAP) / $CDFRAMES) - (($LEADIN + $PREGAP) / $CDFRAMES)))
482 printf -v HEXSUM "%08lx" $(( ($CDDBCKSUM % 0xff) << 24 | $TOTALTIME << 8 | $TRACKS))
483 TRACKINFO="${HEXSUM} $((TRACKS)) ${COOKEDOFFSETS} $((($LEADOUT + $LEADIN + $IDMAGICNUM) / $CDFRAMES))"
488 if checkstatus replaygain; then :; else
489 run_command "" echo "Adding replygain information..."
490 for TMPOUTPUT in $( echo $OUTPUTTYPE | tr , \ )
494 OUTPUT=$OGGOUTPUTCONTAINER
497 OUTPUT=$FLACOUTPUTCONTAINER
505 for UTRACKNUM in $TRACKQUEUE
507 CDDBTRACKNUM=$(expr $UTRACKNUM - 1)
508 getcddbinfo TRACKNAME
510 TRACKFILE="$(mungefilename "$TRACKNAME")"
511 ARTISTFILE="$(mungefilename "$TRACKARTIST")"
512 ALBUMFILE="$(mungefilename "$DALBUM")"
514 if [ "$ONETRACK" = "y" ]; then
515 if [ "$VARIOUSARTISTS" = "y" ]; then
516 OUTPUTFILE="$(eval echo \""$VAONETRACKOUTPUTFORMAT"\")"
518 OUTPUTFILE="$(eval echo \""$ONETRACKOUTPUTFORMAT"\")"
521 if [ "$VARIOUSARTISTS" = "y" ]; then
522 OUTPUTFILE="$(eval echo \""$VAOUTPUTFORMAT"\")"
524 OUTPUTFILE="$(eval echo \""$OUTPUTFORMAT"\")"
527 OUTPUTFILES[$REPLAYINDEX]="$OUTPUTDIR/$OUTPUTFILE.$OUTPUT"
528 (( REPLAYINDEX = $REPLAYINDEX + 1 ))
532 run_command replaygain-flac nice $ENCNICE $METAFLAC --add-replay-gain "${OUTPUTFILES[@]}"
535 run_command replaygain-vorbis nice $ENCNICE $VORBISGAIN --album "${OUTPUTFILES[@]}"
538 run_command replaygain-mp3 nice $ENCNICE $MP3GAIN -a "${OUTPUTFILES[@]}"
541 run_command replaygain-mpc nice $ENCNICE $MPPGAIN --auto "${OUTPUTFILES[@]}"
546 if checkerrors "replaygain-.{3,6}"; then :; else
547 run_command replaygain true
552 # This code splits the a Various Artist track name from one of the following
555 # forward: Artist / Track
556 # forward-dash: Artist - Track
557 # reverse: Track / Artist
558 # reverse-dash: Track - Artist
559 # colon: Artist: Track
560 # trailing-paren: Artist (Track)
563 # VARIOUSARTISTS, VARIOUSARTISTSTYLE, TRACKNAME, TRACKARTIST
566 if [ "$VARIOUSARTISTS" = "y" ] && [ ! "$ONETRACK" = "y" ]; then
567 case "$VARIOUSARTISTSTYLE" in
569 DTITLEARTIST="$(echo "$TRACKNAME" | sed 's- / -~-g')"
570 TRACKARTIST="$(echo "$DTITLEARTIST" | cut -f1 -d~)"
571 TRACKNAME="$(echo "$DTITLEARTIST" | cut -f2 -d~)"
574 DTITLEARTIST="$(echo "$TRACKNAME" | sed 's, - ,~,g')"
575 TRACKARTIST="$(echo "$DTITLEARTIST" | cut -f1 -d~)"
576 TRACKNAME="$(echo "$DTITLEARTIST" | cut -f2 -d~)"
579 DTITLEARTIST="$(echo "$TRACKNAME" | sed 's- / -~-g')"
580 TRACKARTIST="$(echo "$DTITLEARTIST" | cut -f2 -d~)"
581 TRACKNAME="$(echo "$DTITLEARTIST" | cut -f1 -d~)"
584 DTITLEARTIST="$(echo "$TRACKNAME" | sed 's, - ,~,g')"
585 TRACKARTIST="$(echo "$DTITLEARTIST" | cut -f2 -d~)"
586 TRACKNAME="$(echo "$DTITLEARTIST" | cut -f1 -d~)"
589 DTITLEARTIST="$(echo "$TRACKNAME" | sed 's-: -~-g')"
590 TRACKARTIST="$(echo "$DTITLEARTIST" | cut -f1 -d~)"
591 TRACKNAME="$(echo "$DTITLEARTIST" | cut -f2 -d~)"
594 DTITLEARTIST="$(echo "$TRACKNAME" | sed 's,^\(.*\) (\(.*\)),\1~\2,')"
595 TRACKARTIST="$(echo "$DTITLEARTIST" | cut -f2 -d~)"
596 TRACKNAME="$(echo "$DTITLEARTIST" | cut -f1 -d~)"
599 elif [ "$VARIOUSARTISTS" = "y" ] && [ "$ONETRACK" = "y" ]; then
600 TRACKARTIST="Various"
602 TRACKARTIST="$DARTIST"
607 local genre=$(echo "${@}" | tr '[A-Z]' '[a-z]')
611 "classic rock") id=1 ;;
629 "industrial") id=19 ;;
630 "alternative") id=20 ;;
632 "death metal") id=22 ;;
634 "soundtrack") id=24 ;;
635 "euro-techno") id=25 ;;
639 "jazz+funk") id=29 ;;
642 "classical") id=32 ;;
643 "instrumental") id=33 ;;
647 "sound clip") id=37 ;;
650 "alt. rock") id=40 ;;
655 "meditative") id=45 ;;
656 "instrum. pop") id=46 ;;
657 "instrum. rock") id=47 ;;
661 "techno-indust.") id=51 ;;
662 "electronic") id=52 ;;
664 "eurodance") id=54 ;;
666 "southern rock") id=56 ;;
671 "christian rap") id=61 ;;
672 "pop/funk"|"pop / funk") id=62 ;;
674 "native american") id=64 ;;
677 "psychadelic") id=67 ;;
679 "showtunes") id=69 ;;
683 "acid punk") id=73 ;;
684 "acid jazz") id=74 ;;
688 "rock & roll") id=78 ;;
689 "hard rock") id=79 ;;
691 "folk/rock") id=81 ;;
692 "national folk") id=82 ;;
699 "bluegrass") id=89 ;;
700 "avantgarde") id=90 ;;
701 "gothic rock") id=91 ;;
702 "progress. rock") id=92 ;;
703 "psychadel. rock") id=93 ;;
704 "symphonic rock") id=94 ;;
705 "slow rock") id=95 ;;
708 "easy listening") id=98 ;;
714 "chamber music") id=104 ;;
716 "symphony") id=106 ;;
717 "booty bass") id=107 ;;
719 "porn groove") id=109 ;;
721 "slow jam") id=111 ;;
725 "folklore") id=115 ;;
727 "power ballad") id=117 ;;
728 "rhythmic soul") id=118 ;;
729 "freestyle") id=119 ;;
731 "punk rock") id=121 ;;
732 "drum solo") id=122 ;;
733 "a capella") id=123 ;;
734 "euro-house") id=124 ;;
735 "dance hall") id=125 ;;
737 "drum & bass") id=127 ;;
738 "club-house") id=128 ;;
739 "hardcore") id=129 ;;
743 "negerpunk") id=133 ;;
744 "polsk punk") id=134 ;;
746 "christian gangsta rap") id=136 ;;
747 "heavy metal") id=137 ;;
748 "black metal") id=138 ;;
749 "crossover") id=139 ;;
750 "contemporary christian")id=140 ;;
751 "christian rock") id=141 ;;
752 "merengue") id=142 ;;
754 "thrash metal") id=144 ;;
757 "synthpop") id=147 ;;
758 "rock/pop"|"rock / pop") id=148 ;;
765 # do_tag [tracknumber]
766 # id3 tags a filename
768 # TRACKS, TRACKNAME, TRACKARTIST, TAGGER, TAGGEROPTS, VORBISCOMMENT, METAFLAC,
769 # COMMENT, DALBUM, DARTIST, CDYEAR, CDGENRE (and temporarily) ID3TAGV
772 COMMENTOUTPUT="$(eval echo ${COMMENT})"
773 CDDBDISCID=$(echo $TRACKINFO | cut -d' ' -f1)
774 run_command '' echo "Tagging track $1 of $TRACKS: $TRACKNAME..."
775 # If we want to start the tracks with a given number, we need to modify the
776 # TRACKNUM value before evaluation
777 if [ -n "$STARTTRACKNUMBERTAG" ] ; then
780 for OUTPUT in $(echo $OUTPUTTYPE | tr , \ )
784 # id3v2 v0.1.9 claims to have solved the -c bug, so we merge both id3 and id3v2
785 GENREID=$(do_getgenreid "${CDGENRE}")
790 # FIXME # track numbers in mp3 come with 1/10, so we cannot
791 # happily substitute them with $TRACKNUM
792 run_command tagtrack-$OUTPUT-$1 nice $ENCNICE $TAGGER $TAGGEROPTS \
793 --comment=::"$COMMENTOUTPUT" -A "$DALBUM" \
794 -a "$TRACKARTIST" -t "$TRACKNAME" -Y "$CDYEAR" \
795 -G "$GENREID" -n "${TRACKNUM:-$1}" \
796 "${TRACKNUM:+-N $TRACKS}" \
797 "${ENCODING:+--set-encoding=$ENCODING}" \
798 "$ABCDETEMPDIR/track$1.$OUTPUT"
800 # FIXME # Still not activated...
802 run_command tagtrack-$OUTPUT-$1 nice $ENCNICE \
803 $TAGGER $TAGGEROPTS -c "$COMMENTOUTPUT" \
804 -a "$DALBUM" -n "$TRACKARTIST" -s "$TRACKNAME" \
805 -y "$CDYEAR" -g "$GENREID" -k "${TRACKNUM:-$1}" \
806 "$ABCDETEMPDIR/track$1.$OUTPUT"
809 # FIXME # track numbers in mp3 come with 1/10, so we cannot
810 # happily substitute them with $TRACKNUM
811 run_command tagtrack-$OUTPUT-$1 nice $ENCNICE \
812 $TAGGER $TAGGEROPTS -c "$COMMENTOUTPUT" \
813 -A "$DALBUM" -a "$TRACKARTIST" -t "$TRACKNAME" \
814 -y "$CDYEAR" -g "$GENREID" \
815 -T "${TRACKNUM:-$1/$TRACKS}" \
816 "$ABCDETEMPDIR/track$1.$OUTPUT"
821 case "$OGGENCODERSYNTAX" in
823 # vorbiscomment can't do in-place modification, mv the file first
824 if [ -f "$ABCDETEMPDIR/track$1.$OGGOUTPUTCONTAINER" -a ! -f "$ABCDETEMPDIR/track$1.uncommented.$OGGOUTPUTCONTAINER" ]; then
825 mv "$ABCDETEMPDIR/track$1.$OGGOUTPUTCONTAINER" "$ABCDETEMPDIR/track$1.uncommented.$OGGOUTPUTCONTAINER"
829 # http://www.xiph.org/ogg/vorbis/doc/v-comment.html
831 echo ARTIST="$TRACKARTIST"
833 echo TITLE="$TRACKNAME"
834 if [ -n "$CDYEAR" ]; then
837 if [ -n "$CDGENRE" ]; then
838 echo GENRE="$CDGENRE"
840 echo TRACKNUMBER=${TRACKNUM:-$1}
841 echo CDDB=$CDDBDISCID
842 if [ "$(eval echo ${COMMENT})" != "" ]; then
843 case "$COMMENTOUTPUT" in
844 *=*) echo "$COMMENTOUTPUT";;
845 *) echo COMMENT="$COMMENTOUTPUT";;
848 ) | run_command tagtrack-$OUTPUT-$1 nice $ENCNICE \
849 $VORBISCOMMENT $VORBISCOMMENTOPTS -w \
850 "$ABCDETEMPDIR/track$1.uncommented.$OGGOUTPUTCONTAINER" "$ABCDETEMPDIR/track$1.$OGGOUTPUTCONTAINER"
851 # Doublecheck that the commented file was created
852 # successfully before wiping the original
853 if [ -f "$ABCDETEMPDIR/track$1.$OGGOUTPUTCONTAINER" ]; then
854 rm -f "$ABCDETEMPDIR/track$1.uncommented.$OGGOUTPUTCONTAINER"
856 mv "$ABCDETEMPDIR/track$1.uncommented.$OGGOUTPUTCONTAINER" "$ABCDETEMPDIR/track$1.$OGGOUTPUTCONTAINER"
863 echo ARTIST="$TRACKARTIST"
865 echo TITLE="$TRACKNAME"
866 if [ -n "$CDYEAR" ]; then
869 if [ -n "$CDGENRE" ]; then
870 echo GENRE="$CDGENRE"
872 echo TRACKNUMBER="${TRACKNUM:-$1}"
873 echo CDDB="$CDDBDISCID"
874 if [ "$(eval echo ${COMMENT})" != "" ]; then
875 case "$COMMENTOUTPUT" in
876 *=*) echo "$COMMENTOUTPUT";;
877 *) echo COMMENT="$COMMENTOUTPUT";;
880 ) | run_command tagtrack-$OUTPUT-$1 nice $ENCNICE $METAFLAC $METAFLACOPTS ${IMPORTCUESHEET:+--import-cuesheet-from="$ABCDETEMPDIR/$CUEFILE"} --import-tags-from=- "$ABCDETEMPDIR/track$1.$FLACOUTPUTCONTAINER"
883 run_command tagtrack-$OUTPUT-$1 true
886 run_command tagtrack-$OUTPUT-$1 true
889 run_command tagtrack-$OUTPUT-$1 true
892 run_command tagtrack-$OUTPUT-$1 true
896 if checkerrors "tagtrack-(.{3,6})-$1"; then :; else
897 run_command tagtrack-$1 true
904 # OUTPUTTYPE, {FOO}ENCODERSYNTAX, ENCNICE, ENCODER, ENCODEROPTS
907 # The commands here don't go through run_command because they're never
908 # supposed to be silenced
909 echo "Encoding gapless MP3 tracks: $TRACKQUEUE"
910 for OUTPUT in $(echo $OUTPUTTYPE | tr , \ )
914 case "$MP3ENCODERSYNTAX" in
919 for UTRACKNUM in $TRACKQUEUE
921 TRACKFILES="$TRACKFILES track$UTRACKNUM.wav"
923 nice $ENCNICE $MP3ENCODER $MP3ENCODEROPTS --nogap $TRACKFILES
925 if [ "$RETURN" != "0" ]; then
926 echo "nogap-encode: $ENCODER returned code $RETURN" >> errors
928 for UTRACKNUM in $TRACKQUEUE
930 run_command encodetrack-$OUTPUT-$UTRACKNUM true
931 #run_command encodetrack-$UTRACKNUM true
940 if checkerrors "nogap-encode"; then :; else
941 if [ ! "$KEEPWAVS" = "y" ] ; then
942 if [ ! "$KEEPWAVS" = "move" ] ; then
947 # Other encoders fall through to normal encoding as the tracks have not
948 # been entered in the status file.
951 # do_encode [tracknumber] [hostname]
952 # If no hostname is specified, encode locally
954 # TRACKS, TRACKNAME, TRACKARTIST, DISTMP3, DISTMP3OPTS, {FOO}ENCODERSYNTAX, OUTPUTTYPE, ENCODEROPTS, DALBUM, DARTIST, ENCNICE, CDYEAR, CDGENRE, COMMENT
957 if [ "$USEPIPES" = "y" ]; then
960 TEMPARG="PIPE_$MP3ENCODERSYNTAX"
963 TEMPARG="PIPE_$OGGENCODERSYNTAX"
966 TEMPARG="PIPE_$FLACENCODERSYNTAX"
969 TEMPARG="PIPE_$SPEEXENCODER"
972 TEMPARG="PIPE_$MPPENCODER"
975 TEMPARG="PIPE_$MPPENCODER"
978 IN="$( eval echo "\$$TEMPARG" )"
980 IN="$ABCDETEMPDIR/track$1.wav"
983 case "$MP3ENCODERSYNTAX" in
984 # FIXME # check if mp3enc needs -if for pipes
985 # FIXME # I have not been able to find a working mp3enc binary
999 # We need IN to proceed, if we are not using pipes.
1000 if [ -s "$IN" -o X"$USEPIPES" = "Xy" ] ; then
1001 for TMPOUTPUT in $(echo $OUTPUTTYPE | tr , \ )
1003 case "$TMPOUTPUT" in
1005 OUTPUT=$OGGOUTPUTCONTAINER
1008 OUTPUT=$FLACOUTPUTCONTAINER
1014 OUT="$ABCDETEMPDIR/track$1.$OUTPUT"
1015 if [ "$NOGAP" = "y" ] && checkstatus encodetrack-$OUTPUT-$1 ; then
1018 if [ X"$USEPIPES" = "Xy" ]; then
1020 # We need a way to store the creation of the files when using PIPES
1021 RUN_COMMAND_PIPES="run_command encodetrack-$OUTPUT-$1 true"
1022 # When pipping it does not make sense to have a higher nice for
1023 # reading than for encoding, since it will be hold by the
1024 # encoding process. Setting an effective nice, to calm down a
1025 # bit the reading process.
1026 EFFECTIVE_NICE=$READNICE
1028 run_command '' echo "Encoding track $1 of $TRACKS: $TRACKNAME..."
1029 RUN_COMMAND="run_command encodetrack-$OUTPUT-$1"
1030 EFFECTIVE_NICE=$ENCNICE
1036 case "$MP3ENCODERSYNTAX" in
1037 lame|toolame|gogo) $RUN_COMMAND nice $EFFECTIVE_NICE $MP3ENCODER $MP3ENCODEROPTS "$IN" "$OUT" ;;
1038 bladeenc) $RUN_COMMAND nice $EFFECTIVE_NICE $MP3ENCODER $MP3ENCODEROPTS -quit "$IN" ;;
1039 l3enc|xingmp3enc) $RUN_COMMAND nice $EFFECTIVE_NICE $MP3ENCODER "$IN" "$OUT" $MP3ENCODEROPTS ;;
1040 # FIXME # Relates to the previous FIXME since it might need the "-if" removed.
1041 mp3enc) $RUN_COMMAND nice $EFFECTIVE_NICE $MP3ENCODER -if "$IN" -of "$OUT" $MP3ENCODEROPTS ;;
1045 $RUN_COMMAND nice $DISTMP3NICE $DISTMP3 $DISTMP3OPTS "$2" "$IN" "$OUT" >/dev/null 2>&1
1052 case "$OGGENCODERSYNTAX" in
1053 vorbize) $RUN_COMMAND nice $EFFECTIVE_NICE $OGGENCODER $OGGENCODEROPTS -w "$OUT" "$IN" ;;
1054 oggenc) $RUN_COMMAND nice $EFFECTIVE_NICE $OGGENCODER $OGGENCODEROPTS -o "$OUT" "$IN" ;;
1058 $RUN_COMMAND nice $DISTMP3NICE $DISTMP3 $DISTMP3OPTS "$2" "$IN" "$OUT" >/dev/null 2>&1
1065 case "$FLACENCODERSYNTAX" in
1066 flac) $RUN_COMMAND nice $EFFECTIVE_NICE $FLACENCODER -f $FLACENCODEROPTS -o "$OUT" "$IN" ;;
1071 vecho "$DISTMP3 $DISTMP3OPTS $2 $IN $OUT >/dev/null 2>&1"
1072 $RUN_COMMAND nice $DISTMP3NICE $DISTMP3 $DISTMP3OPTS "$2" "$IN" "$OUT" > /dev/null 2>&1
1077 if [ "$(eval echo ${COMMENT})" != "" ]; then
1080 *) COMMENT="COMMENT=$COMMENT" ;;
1082 COMMENT="--comment \"$COMMENT\""
1084 # Quick hack to avoid tagging Ogg/Speex, since there is no other way to tag than inline tagging
1085 if [ ! "$DOTAG" = "y" ]; then
1086 $RUN_COMMAND nice $EFFECTIVE_NICE $SPEEXENCODER $SPEEXENCODEROPTS --author "$TRACKARTIST" --title "$TRACKNAME" "$COMMENT" "$IN" "$OUT"
1088 $RUN_COMMAND nice $EFFECTIVE_NICE $SPEEXENCODER $SPEEXENCODEROPTS "$IN" "$OUT"
1092 # MPP/MP+(Musepack) format (.mpc) is done locally, with inline
1094 # I tried compiling the mppenc from corecodecs.org and got some
1095 # errors, so I have not tried it myself.
1096 ## FIXME ## Needs some cleanup to determine if an empty tag sent
1097 ## FIXME ## to the encoder ends up empty.
1098 $RUN_COMMAND nice $EFFECTIVE_NICE $MPPENCODER $MPPENCODEROPTS --artist "$TRACKARTIST" --album "$DALBUM" --title "$TRACKNAME" --track "$1" --genre "$CDGENRE" --year "$CDYEAR" --comment "$COMMENT" "$IN" "$OUT"
1101 # Quick hack to avoid tagging Ogg/Speex, since there is no other way to tag than inline tagging
1102 if [ ! "$DOTAG" = "y" ]; then
1103 $RUN_COMMAND nice $EFFECTIVE_NICE $AACENCODER $AACENCODEROPTS --artist "$TRACKARTIST" --album "$DALBUM" --title "$TRACKNAME" --track "$1" --genre "$CDGENRE" --year "$CDYEAR" --comment "$COMMENT" -o "$OUT" "$IN"
1106 $RUN_COMMAND nice $ENCNICE $AACENCODER $AACENCODEROPTS -o "$OUT" "$IN"
1110 # In case of wav output we need nothing. Just keep the wavs.
1115 # Only remove .wav if the encoding succeeded
1116 if checkerrors "encodetrack-(.{3,6})-$1"; then :; else
1117 run_command encodetrack-$1 true
1118 if [ ! "$KEEPWAVS" = "y" ] ; then
1119 if [ ! "$KEEPWAVS" = "move" ] ; then
1125 run_command "" echo "HEH! The file we were about to encode disappeared:"
1126 run_command "" echo ">> $IN"
1127 run_command encodetrack-$1 false
1131 # do_preprocess [tracknumber]
1133 # TRACKS, TRACKNAME, TRACKARTIST, DISTMP3, DISTMP3OPTS, {FOO}ENCODERSYNTAX, OUTPUTTYPE, ENCODEROPTS, DALBUM, DARTIST, ENCNICE, CDYEAR, CDGENRE, COMMENT
1136 # IN="$ABCDETEMPDIR/track$1.wav"
1137 # # We need IN to proceed.
1138 # if [ -s "$IN" ] ; then
1139 # for OUTPUT in $(echo $OUTPUTTYPE | tr , \ )
1141 # #OUT="$ABCDETEMPDIR/track$1.$OUTPUT"
1142 # run_command '' echo "Pre-processing track $1 of $TRACKS..."
1143 # case "$POSTPROCESSFORMAT" in
1145 # run_command preprocess-$OUTPUT-$1 nice $PRENICE $WAV_PRE $IF $OF ;;
1147 # run_command preprocess-$OUTPUT-$1 nice $PRENICE $MP3_PRE $IF $OF ;;
1149 # run_command preprocess-$OUTPUT-$1 nice $PRENICE $OGG_PRE $IF $OF ;;
1151 # run_command preprocess-$OUTPUT-$1 nice $PRENICE $FLAC_PRE $IF $OF ;;
1153 # run_command preprocess-$OUTPUT-$1 nice $PRENICE $SPX_PRE $IF $OF ;;
1156 # # Only remove .wav if the encoding succeeded
1157 # if checkerrors "preprocess-(.{3,4})-$1"; then
1158 # run_command preprocess-$1 false
1160 # run_command preprocess-$1 true
1163 # if [ "$(checkstatus encode-output)" = "loud" ]; then
1164 # echo "HEH! The file we were about to pre-process disappeared:"
1167 # run_command preprocess-$1 false
1172 # do_postprocess [tracknumber]
1174 # TRACKS, TRACKNAME, TRACKARTIST, DISTMP3, DISTMP3OPTS, {FOO}ENCODERSYNTAX, OUTPUTTYPE, ENCODEROPTS, DALBUM, DARTIST, ENCNICE, CDYEAR, CDGENRE, COMMENT
1177 # for POSTPROCESSFORMAT in $(echo $POSTPROCESSFORMATS | tr , \ )
1179 # IN="$ABCDETEMPDIR/track$1.$POSTPROCESSFORMAT"
1180 # # We need IN to proceed.
1181 # if [ -s "$IN" ] ; then
1182 # #OUT="$ABCDETEMPDIR/track$1.$OUTPUT"
1183 # run_command '' echo "Post-processing track $1 of $TRACKS..."
1184 # case "$POSTPROCESSFORMAT" in
1186 # run_command postprocess-$OUTPUT-$1 nice $POSTNICE $MP3_POST $IF $OF ;;
1188 # run_command postprocess-$OUTPUT-$1 nice $POSTNICE $OGG_POST $IF $OF ;;
1190 # run_command postprocess-$OUTPUT-$1 nice $POSTNICE $FLAC_POST $IF $OF ;;
1192 # run_command postprocess-$OUTPUT-$1 nice $POSTNICE $SPX_POST $IF $OF ;;
1194 # # Only remove .wav if the encoding succeeded
1195 # if checkerrors "postprocess-(.{3,4})-$1"; then
1196 # run_command postprocess-$1 false
1198 # run_command postprocess-$1 true
1201 # if [ "$(checkstatus encode-output)" = "loud" ]; then
1202 # echo "HEH! The file we were about to post-process disappeared:"
1205 # run_command postprocess-$1 false
1220 # MP3GAIN, MP3GAINOPTS, VORBISGAIN, VORBISGAINOPTS, MPPGAIN, MPPGAINOPTS
1224 # The commands here don't go through run_command because they're never supposed to be silenced
1225 echo "Batch analizing gain in tracks: $TRACKQUEUE"
1230 for UTRACKNUM in $TRACKQUEUE
1232 MP3FILES="$TRACKFILES track$UTRACKNUM.mp3"
1234 # FIXME # Hard-coded batch option!
1235 $NORMALIZER -b $NORMALIZEROPTS $TRACKFILES
1237 if [ "$RETURN" != "0" ]; then
1238 echo "batch-normalize: $NORMALIZER returned code $RETURN" >> errors
1240 for UTRACKNUM in $TRACKQUEUE
1242 echo normalizetrack-$UTRACKNUM >> status
1248 # do_batch_normalize
1250 # NORMALIZER, NORMALIZEROPTS
1251 do_batch_normalize ()
1253 # The commands here don't go through run_command because they're never supposed to be silenced
1254 echo "Batch normalizing tracks: $TRACKQUEUE"
1259 for UTRACKNUM in $TRACKQUEUE
1261 TRACKFILES="$TRACKFILES track$UTRACKNUM.wav"
1263 # XXX: Hard-coded batch option!
1264 $NORMALIZER -b $NORMALIZEROPTS $TRACKFILES
1266 if [ "$RETURN" != "0" ]; then
1267 echo "batch-normalize: $NORMALIZER returned code $RETURN" >> errors
1269 for UTRACKNUM in $TRACKQUEUE
1271 echo normalizetrack-$UTRACKNUM >> status
1277 # do_normalize [tracknumber]
1279 # TRACKS, TRACKNAME, NORMALIZER, NORMALIZEROPTS
1282 IN="$ABCDETEMPDIR/track$1.wav"
1283 if [ -e "$IN" ] ; then
1284 run_command '' echo "Normalizing track $1 of $TRACKS: $TRACKNAME..."
1285 run_command normalizetrack-$1 $NORMALIZER $NORMALIZEROPTS "$IN"
1287 if [ "$(checkstatus encode-output)" = "loud" ]; then
1288 echo "HEH! The file we were about to normalize disappeared:"
1291 run_command normalizetrack-$1 false "File $IN was not found"
1295 # do_move [tracknumber]
1296 # Deduces the outfile from environment variables
1297 # Creates directory if necessary
1299 # TRACKNUM, TRACKNAME, TRACKARTIST, DALBUM, OUTPUTFORMAT, CDGENRE, CDYEAR
1302 for TMPOUTPUT in $(echo $OUTPUTTYPE | tr , \ )
1304 # For now, set OUTPUT as TMPOUTPUT, and then change it once we have
1305 # defined the OUTPUTFILE:
1308 # Create ALBUMFILE, ARTISTFILE, TRACKFILE
1309 # Munge filenames as follows:
1314 # Eat control characters
1315 ALBUMFILE="$(mungefilename "$DALBUM")"
1316 ARTISTFILE="$(mungefilename "$TRACKARTIST")"
1317 TRACKFILE="$(mungefilename "$TRACKNAME")"
1318 GENRE="$(mungegenre "$GENRE")"
1319 YEAR=${CDYEAR:-$CDYEAR}
1320 # If we want to start the tracks with a given number, we need to modify
1321 # the TRACKNUM value before evaluation
1323 # Supported variables for OUTPUTFORMAT are GENRE, YEAR, ALBUMFILE,
1324 # ARTISTFILE, TRACKFILE, and TRACKNUM.
1325 if [ "$ONETRACK" = "y" ]; then
1326 if [ "$VARIOUSARTISTS" = "y" ]; then
1327 OUTPUTFILE="$(eval echo \""$VAONETRACKOUTPUTFORMAT"\")"
1329 OUTPUTFILE="$(eval echo \""$ONETRACKOUTPUTFORMAT"\")"
1332 if [ "$VARIOUSARTISTS" = "y" ]; then
1333 OUTPUTFILE="$(eval echo \""$VAOUTPUTFORMAT"\")"
1335 OUTPUTFILE="$(eval echo \""$OUTPUTFORMAT"\")"
1338 if checkerrors "tagtrack-$OUTPUT-$1"; then :; else
1339 # Once we know the specific output was successful, we can change
1340 # the OUTPUT to the value containing the container
1343 OUTPUT=$OGGOUTPUTCONTAINER
1346 OUTPUT=$FLACOUTPUTCONTAINER
1352 # Check that the directory for OUTPUTFILE exists, if it doesn't, create it
1353 OUTPUTFILEDIR="$(dirname "$OUTPUTDIR/$OUTPUTFILE")"
1356 if [ "$DOCLEAN" != "y" ] && [ "$FORCE" != "y" ]; then
1357 # FIXME # introduce warnings?
1360 # mkdir -p shouldn't return an error if the directory already exists
1361 mkdir -p "$OUTPUTFILEDIR"
1362 run_command movetrack-$1 mv "$ABCDETEMPDIR/track$1.$OUTPUT" "$OUTPUTDIR/$OUTPUTFILE.$OUTPUT"
1363 if checkstatus movetrack-output-$OUTPUT; then :; else
1364 run_command movetrack-output-$OUTPUT true
1369 # mkdir -p shouldn't return an error if the directory already exists
1370 mkdir -p "$OUTPUTFILEDIR"
1371 run_command movetrack-$1 mv "$ABCDETEMPDIR/track$1.$OUTPUT" "$OUTPUTDIR/$OUTPUTFILE.$OUTPUT"
1372 if checkstatus movetrack-output-$OUTPUT; then :; else
1373 run_command movetrack-output-$OUTPUT true
1377 # Lets move the cue file
1378 if CUEFILE=$(checkstatus cuefile) >/dev/null ; then
1379 if [ -r "$ABCDETEMPDIR/$CUEFILE" ]; then
1380 if checkstatus movecue-$OUTPUT; then :; else
1381 # Silence the Copying output since it overlaps with encoding processes...
1382 #run_command '' vecho "Copying cue file to its destination directory..."
1383 if checkstatus onetrack >/dev/null ; then
1386 if [ "$DOCLEAN" != "y" ] && [ "$FORCE" != "y" ]; then
1387 # We dont have the dir, since it was not created before.
1390 run_command movecue-$OUTPUT cp "$ABCDETEMPDIR/$CUEFILE" "$OUTPUTDIR/$OUTPUTFILE.cue"
1393 # NOTE: Creating a cue file with the 3-char-extension files is to comply with
1394 # http://brianvictor.tripod.com/mp3cue.htm#details
1395 [a-z0-9][a-z0-9][a-z0-9])
1396 run_command movecue-$OUTPUT cp "$ABCDETEMPDIR/$CUEFILE" "$OUTPUTDIR/$OUTPUTFILE.cue"
1399 run_command movecue-$OUTPUT cp "$ABCDETEMPDIR/$CUEFILE" "$OUTPUTDIR/$OUTPUTFILE.$OUTPUT.cue"
1403 run_command movecue-$OUTPUT cp "$ABCDETEMPDIR/$CUEFILE" "$OUTPUTFILEDIR/$CUEFILE"
1405 echo movecue-$OUTPUT >> "$ABCDETEMPDIR/status"
1414 # Create the playlist if wanted
1416 # PLAYLISTFORMAT, PLAYLISTDATAPREFIX, VAPLAYLISTFORMAT, VAPLAYLISTDATAPREFIX,
1417 # VARIOUSARTISTS, OUTPUTDIR
1420 for TMPOUTPUT in $(echo $OUTPUTTYPE | tr , \ )
1424 OUTPUT=$OGGOUTPUTCONTAINER
1427 OUTPUT=$FLACOUTPUTCONTAINER
1433 # Create a playlist file for the playlist data to go into.
1434 # We used to wipe it out if it existed. Now we request permision if interactive.
1435 for LASTTRACK in $TRACKQUEUE; do :; done
1436 ALBUMFILE="$(mungefilename "$DALBUM")"
1437 ARTISTFILE="$(mungefilename "$DARTIST")"
1438 GENRE="$(mungegenre "$GENRE")"
1439 YEAR=${CDYEAR:-$CDYEAR}
1440 if [ "$VARIOUSARTISTS" = "y" ] ; then
1441 PLAYLISTFILE="$(eval echo "$VAPLAYLISTFORMAT")"
1443 PLAYLISTFILE="$(eval echo "$PLAYLISTFORMAT")"
1445 FINALPLAYLISTDIR="$(dirname "$OUTPUTDIR/$PLAYLISTFILE")"
1446 mkdir -p "$FINALPLAYLISTDIR"
1447 if [ -s "$OUTPUTDIR/$PLAYLISTFILE" ]; then
1448 echo -n "Erase, Append to, or Keep the existing playlist file? [e/a/k] (e): " >&2
1449 if [ "$INTERACTIVE" = "y" ]; then
1450 while [ "$DONE" != "y" ]; do
1452 case $ERASEPLAYLIST in
1453 e|E|a|A|k|K) DONE=y ;;
1461 # Once we erase the playlist, we use append to create the new one.
1462 [ "$ERASEPLAYLIST" = "e" -o "$ERASEPLAYLIST" = "E" ] && rm -f "$OUTPUTDIR/$PLAYLISTFILE" && ERASEPLAYLIST=a
1464 # The playlist does not exist, so we can safelly use append to create the new list
1467 if [ "$ERASEPLAYLIST" = "a" -o "$ERASEPLAYLIST" = "A" ]; then
1468 touch "$OUTPUTDIR/$PLAYLISTFILE"
1469 for UTRACKNUM in $TRACKQUEUE
1471 # Shares some code with do_move since the filenames have to match
1472 CDDBTRACKNUM=$(expr $UTRACKNUM - 1)
1473 getcddbinfo TRACKNAME
1475 TRACKFILE="$(mungefilename "$TRACKNAME")"
1476 ARTISTFILE="$(mungefilename "$TRACKARTIST")"
1477 ALBUMFILE="$(mungefilename "$DALBUM")"
1478 # If we want to start the tracks with a given number, we need to modify the
1479 # TRACKNUM value before evaluation
1481 if [ "$VARIOUSARTISTS" = "y" ]; then
1482 OUTPUTFILE="$(eval echo \""$VAOUTPUTFORMAT\"")"
1484 OUTPUTFILE="$(eval echo \""$OUTPUTFORMAT\"")"
1486 if [ "$VARIOUSARTISTS" = "y" ]; then
1487 if [ "$VAPLAYLISTDATAPREFIX" ] ; then
1488 echo ${VAPLAYLISTDATAPREFIX}$OUTPUTFILE.$OUTPUT >> "$OUTPUTDIR/$PLAYLISTFILE"
1490 relpath "$PLAYLISTFILE", "$OUTPUTFILE.$OUTPUT" >> "$OUTPUTDIR/$PLAYLISTFILE"
1493 if [ "$PLAYLISTDATAPREFIX" ]; then
1494 echo ${PLAYLISTDATAPREFIX}$OUTPUTFILE.$OUTPUT >> "$OUTPUTDIR/$PLAYLISTFILE"
1496 relpath "$PLAYLISTFILE", "$OUTPUTFILE.$OUTPUT" >> "$OUTPUTDIR/$PLAYLISTFILE"
1501 ## this will convert the playlist to have CRLF line-endings, if specified
1502 ## (some hardware players insist on CRLF endings)
1503 if [ "$DOSPLAYLIST" = "y" ]; then
1504 awk '{substr("\r",""); printf "%s\r\n", $0}' "$OUTPUTDIR/$PLAYLISTFILE" > "$ABCDETEMPDIR/PLAYLISTFILE.tmp"
1505 # mv -f "$ABCDETEMPDIR/PLAYLISTFILE.tmp" "$OUTPUTDIR/$PLAYLISTFILE"
1506 cat "$ABCDETEMPDIR/PLAYLISTFILE.tmp" | sed 's/\//\\/' > "$OUTPUTDIR/$PLAYLISTFILE"
1508 echo "playlistcomplete" >> "$ABCDETEMPDIR/status"
1513 # This function reads a cuefile on stdin and writes an extended
1514 # cddb query on stdout. Any PREGAP for track 1 is properly
1515 # handled, although cue files embedded in FLAC files do not
1516 # appear to properly store the PREGAP setting. :(
1517 abcde.cue2discid () {
1522 while [ $val -gt 0 ] ; do
1523 ret=$(( $ret + ( $val % 10) ))
1524 val=$(( $val / 10 ))
1534 local first second third
1535 first=$(expr ${1} + 0 )
1536 second=$(expr ${2} + 0 )
1537 third=$(expr ${3} + 0 )
1539 echo $(( ((($first * 60) + $second) * 75) + $third ))
1549 while read line ; do
1552 TRACK) i=$(( i + 1 ))
1554 INDEX) if [ "$2" -eq 1 ] ; then
1556 START=$(( $LBA + $PREGAP + $OFFSET ))
1558 X=$(cddb_sum $(( $START / 75 )) )
1562 PREGAP) PREGAP=$(msf2lba $2)
1566 LEADOUT=$(( $4 / 588 ))
1569 LEADIN=$(( $3 / 588 ))
1578 LEADOUT=$(( $LEADOUT + $LEADIN ))
1580 LENGTH=$(( $LEADOUT/75 - $TRACK1/75 ))
1581 DISCID=$(( ( $N % 255 ) * 2**24 | $LENGTH * 2**8 | $TRACKS ))
1582 printf "%08x %i" $DISCID $TRACKS
1585 while [ $j -le $TRACKS ] ; do
1586 eval echo -n "\" \$TRACK$j\""
1589 echo " $(( $LEADOUT / 75 ))"
1593 # abcde.mkcue [--wholedisk]
1594 # This creates a cuefile directly from the extended discid information
1595 # The --wholedisk option controls whether we're ripping data from the
1596 # start of track one or from the start of the disk (usually, but not
1597 # always the same thing!)
1599 # Track one leadin/pregap (if any) handeling:
1600 # --wholedisk specified:
1603 # INDEX 01 <pregap value>
1604 # Remaining track index values unchanged from disc TOC
1606 # --wholedisk not specified
1608 # PREGAP <pregap value>
1610 # Remaining track index values offset by <pregap value>
1617 printf "$1%02i:%02i:%02i\n" $(($2/4500)) $((($2/75)%60)) $(($2%75))
1620 local MODE DISCID TRACKS
1624 if [ "$1" = --wholedisc ] ; then
1636 echo REM DISCID $DISCID
1637 echo FILE \"dummy.wav\" WAVE
1639 if [ $1 -ne 150 ] && [ $MODE = "PREGAP"] ; then
1646 while [ $i -le "$TRACKS" ] ; do
1647 LBA=$(( $1 - $OFFSET ))
1648 printf " TRACK %02i AUDIO\n" $i
1649 if [ $i -eq 1 -a $1 -ne 150 ] ; then
1650 if [ $MODE = PREGAP ] ; then
1651 echomsf " PREGAP " $(($OFFSET-150))
1653 echo " INDEX 00 00:00:00"
1656 echomsf " INDEX 01 " $LBA
1663 # This essentially the start of things
1666 # Query the CD to get the track info, unless the user specified -C
1667 # or we are using some actions which do not need the CDDB data at all
1668 #if [ ! X"$EXPACTIONS" = "X" ]; then
1670 #elif [ -z "$DISCID" ]; then
1671 if [ -z "$DISCID" ]; then
1672 vecho -n "Getting CD track info... "
1673 # In OSX, unmount the disc before a query
1674 if [ "$OSFLAVOUR" = "OSX" ]; then
1675 disktool -u ${CDROM#/dev/}
1677 case "$CDROMREADERSYNTAX" in
1679 if $METAFLAC $METAFLACOPTS --export-cuesheet-to=- "$CDROM" > /dev/null 2>&1 ; then
1680 case "$CUE2DISCID" in
1681 # FIXME # right now we have 2 cue2discid internal
1682 # implementations: builtin and abcde.cue2discid. Test
1683 # both of them and decide which one we want to use.
1685 #vecho "Using builtin cue2discid implementation..."
1686 CUESHEET="$(metaflac $METAFLACOPTS --export-cuesheet-to=- "$CDROM")"
1688 #TRACKS=$(echo $CUESHEET | egrep "TRACK \+[[:digit:]]\+ \+AUDIO" |wc -l)
1690 OFFSETTIMES=( $(echo "$CUESHEET" | sed -n -e's/\ *INDEX 01\ \+//p' ) )
1691 TRACKS=${#OFFSETTIMES[@]}
1693 #echo "processing offsetimes ${OFFSETTIMES[@]}"
1694 for OFFSETTIME in ${OFFSETTIMES[@]}; do
1695 OFFSETS="$OFFSETS $(( 10#${OFFSETTIME:0:2} * 4500 + 10#${OFFSETTIME:3:2} * 75 + 10#${OFFSETTIME:6:2} ))"
1696 #OFFSETS[${#OFFSETS[*]}]=$(( 10#${OFFSETTIME:0:2} * 4500 + 10#${OFFSETTIME:3:2} * 75 + 10#${OFFSETTIME:6:2} ))
1699 LEADOUT=$(( $(echo "$CUESHEET" | grep lead-out | get_last) / 44100 * 75 ))
1700 LEADIN=$(( $(echo "$CUESHEET" | grep lead-in | get_last) / 44100 * 75 ))
1704 #vecho "Using external python cue2discid implementation..."
1705 TRACKINFO=$($METAFLAC $METAFLACOPTS --export-cuesheet-to=- "$CDROM" | $CUE2DISCID)
1709 log error "the input flac file does not contain a cuesheet."
1714 # CDPARANOIAOUTPUT="$( $CDROMREADER -$CDPARANOIACDROMBUS "$CDROM" -Q --verbose 2>&1 )"
1716 # if [ ! "$RET" = "0" ];then
1717 # log warning "something went wrong while querying the CD... Maybe a DATA CD?"
1720 # TRACKS="$(echo "$CDPARANOIAOUTPUT" | egrep '^[[:space:]]+[[:digit:]]' | tail -n 1 | get_first | tr -d "." | tr '\n' ' ')"
1721 # CDPARANOIAAUDIOTRACKS="$TRACKS"
1723 # LEADOUT="$(echo "$CDPARANOIAOUTPUT" | egrep -o '^TOTAL[[:space:]]+([[:digit:]]+)' | get_last)"
1724 # OFFSETS="$(echo "$CDPARANOIAOUTPUT" | sed -n -e's/^ .* \([0-9]\+\) \[.*/\1/p')"
1728 case "$CDDBMETHOD" in
1729 cddb) TRACKINFO=$($CDDISCID "$CDROM") ;;
1730 # FIXME # musicbrainz needs a cleanup
1731 musicbrainz) TRACKINFO=$($MUSICBRAINZ -c "$CDROM" ) ;;
1735 # Make sure there's a CD in there by checking cd-discid's return code
1736 if [ ! "$?" = "0" ]; then
1737 if [ "$CDROMREADERSYNTAX" = "flac" ] ; then
1738 log error "cuesheet information from the flac file could not be read."
1739 log error "Perhaps the flac file does not contain a cuesheet?."
1742 log error "CD could not be read. Perhaps there's no CD in the drive?"
1746 # In OSX, remount the disc again
1747 if [ "$OSFLAVOUR" = "OSX" ]; then
1748 disktool -m ${CDROM#/dev/}
1751 DISCID=$(echo $TRACKINFO | cut -f1 -d' ')
1753 TRACKINFO=$(cat "$WAVOUTPUTDIR/abcde.$DISCID/discid")
1756 # Get a full enumeration of tracks, sort it, and put it in the TRACKQUEUE.
1757 # This needs to be done now because a section of the resuming code will need
1760 # get the number of digits to pad TRACKNUM with - we'll use this later
1761 # a CD can only hold 99 tracks, but since we support a feature for starting
1762 # numbering the tracks from a given number, we might need to set it as a
1763 # variable for the user to define... or obtain it somehow.
1764 if [ "$PADTRACKS" = "y" ] ; then
1768 ABCDETEMPDIR="$WAVOUTPUTDIR/abcde.$(echo $TRACKINFO | cut -f1 -d' ')"
1769 if [ -z "$TRACKQUEUE" ]; then
1770 if [ ! "$STRIPDATATRACKS" = "n" ]; then
1771 case "$CDROMREADERSYNTAX" in
1773 if [ "$WEHAVEACD" = "y" ]; then
1774 vecho "Querying the CD for audio tracks..."
1775 CDPARANOIAOUTPUT="$( $CDROMREADER -$CDPARANOIACDROMBUS "$CDROM" -Q --verbose 2>&1 )"
1777 if [ ! "$RET" = "0" ];then
1778 log warning "something went wrong while querying the CD... Maybe a DATA CD?"
1780 TRACKS="$(echo "$CDPARANOIAOUTPUT" | egrep '^[[:space:]]+[[:digit:]]' | tail -n 1 | get_first | tr -d "." | tr '\n' ' ')"
1781 CDPARANOIAAUDIOTRACKS="$TRACKS"
1783 # Previous versions of abcde would store the tracks on a file, instead of the status record.
1784 if [ -f "$ABCDETEMPDIR/cdparanoia-audio-tracks" ]; then
1785 echo cdparanoia-audio-tracks=$( cat "$ABCDETEMPDIR/cdparanoia-audio-tracks" ) >> "$ABCDETEMPDIR/status"
1786 rm -f "$ABCDETEMPDIR/cdparanoia-audio-tracks"
1788 if [ -f "$ABCDETEMPDIR/status" ] && TRACKS=$(checkstatus cdparanoia-audio-tracks); then :; else
1789 TRACKS=$(echo $TRACKINFO | cut -f2 -d' ')
1793 *) TRACKS=$(echo $TRACKINFO | cut -f2 -d' ') ;;
1796 TRACKS=$(echo $TRACKINFO | cut -f2 -d' ')
1798 if echo "$TRACKS" | grep "[[:digit:]]" > /dev/null 2>&1 ;then :;else
1799 log info "The disc does not contain any tracks. Giving up..."
1802 echo -n "Grabbing entire CD - tracks: "
1803 if [ ! "$PADTRACKS" = "y" ] ; then
1804 TRACKNUMPADDING=$(echo -n $TRACKS | wc -c | tr -d ' ')
1806 TRACKS=$(printf "%0.${TRACKNUMPADDING}d" $TRACKS)
1808 while [ "$X" -ne "$TRACKS" ]
1810 X=$(printf "%0.${TRACKNUMPADDING}d" $(expr $X + 1))
1811 TRACKQUEUE=$(echo $TRACKQUEUE $X)
1815 TRACKS=$(echo $TRACKINFO | cut -f2 -d' ')
1816 # User-supplied track queue.
1817 # Weed out non-numbers, whitespace, then sort and weed out duplicates
1818 TRACKQUEUE=$(echo $TRACKQUEUE | sed 's-[^0-9 ]--g' | tr ' ' '\n' | grep -v ^$ | sort -n | uniq | tr '\n' ' ' | sed 's- $--g')
1819 # Once cleaned, obtain the highest value in the trackqueue for number padding
1820 for LASTTRACK in $TRACKQUEUE; do :; done
1821 if [ ! "$PADTRACKS" = "y" ] ; then
1822 TRACKNUMPADDING=$(echo -n $LASTTRACK | wc -c | tr -d ' ')
1824 # Now we normalize the trackqueue
1825 for TRACK in $TRACKQUEUE ; do
1826 TRACKNUM=$(printf %0.${TRACKNUMPADDING}d $(expr ${TRACK} + 0 ))
1827 PADTRACKQUEUE=$(echo $PADTRACKQUEUE $TRACKNUM)
1829 TRACKQUEUE=$PADTRACKQUEUE
1830 echo Grabbing tracks: "$TRACKQUEUE"
1833 QUEUEDTRACKS=$(echo $TRACKQUEUE | wc -w | tr -d ' ')
1835 # We have the discid, create a temp directory after it to store all the temp
1838 if [ -e "$ABCDETEMPDIR" ]; then
1839 echo -n "abcde: attempting to resume from $ABCDETEMPDIR"
1840 # It already exists, see if it's a directory
1841 if [ ! -d "$ABCDETEMPDIR" ]; then
1842 # This is a file/socket/fifo/device/etc, not a directory
1845 echo "abcde: file $ABCDETEMPDIR already exists and does not belong to abcde." >&2
1846 echo "Please investigate, remove it, and rerun abcde." >&2
1850 # It's a directory, let's see if it's owned by us
1851 if [ ! -O "$ABCDETEMPDIR" ]; then
1852 # Nope, complain and exit
1854 echo "abcde: directory $ABCDETEMPDIR already exists and is not owned by you." >&2
1855 echo "Please investigate, remove it, and rerun abcde." >&2
1859 # See if it's populated
1860 if [ ! -f "$ABCDETEMPDIR/discid" ]; then
1861 # Wipe and start fresh
1862 echo "abcde: $ABCDETEMPDIR/discid not found. Abcde must remove and recreate" >&2
1863 echo -n "this directory to continue. Continue? [y/n] (n)" >&2
1864 if [ "$INTERACTIVE" = "y" ]; then
1870 if [ "$ANSWER" != "y" ]; then
1873 rm -rf "$ABCDETEMPDIR" || exit 1
1874 mkdir -p "$ABCDETEMPDIR"
1875 if [ "$?" -gt "0" ]; then
1876 # Directory already exists or could not be created
1877 echo "abcde: Temp directory $ABCDETEMPDIR could not be created." >&2
1881 # Everything is fine. Check for ^encodetracklocation-
1882 # and encode-output entries in the status file and
1883 # remove them. These are not relevant across sessions.
1884 if [ -f "$ABCDETEMPDIR/status" ]; then
1885 mv "$ABCDETEMPDIR/status" "$ABCDETEMPDIR/status.old"
1886 grep -v ^encodetracklocation- < "$ABCDETEMPDIR/status.old" \
1887 | grep -v ^encode-output > "$ABCDETEMPDIR/status"
1889 # Remove old error messages
1890 if [ -f "$ABCDETEMPDIR/errors" ]; then
1891 rm -f "$ABCDETEMPDIR/errors"
1895 # We are starting from scratch
1896 mkdir -p "$ABCDETEMPDIR"
1897 if [ "$?" -gt "0" ]; then
1898 # Directory already exists or could not be created
1899 echo "abcde: Temp directory $ABCDETEMPDIR could not be created." >&2
1902 cat /dev/null > "$ABCDETEMPDIR/status"
1903 # Store the abcde version in the status file.
1904 echo "abcde-version=$VERSION" >> "$ABCDETEMPDIR/status"
1906 if [ X"$DOCUE" = "Xy" -a X"$WEHAVEACD" = "Xy" ]; then
1907 if checkstatus cuefile > /dev/null 2>&1 ; then :; else
1908 CUEFILE=cue-$(echo "$TRACKINFO" | cut -f1 -d' ').txt
1909 vecho "Creating cue file..."
1910 case $CDROMREADERSYNTAX in
1912 if $METAFLAC --export-cuesheet-to=- "$CDROM" > "$ABCDETEMPDIR/$CUEFILE"; then
1913 echo cuefile=$CUEFILE >> "$ABCDETEMPDIR/status"
1915 log warning "the input flac file does not contain a cuesheet."
1919 if $CUEREADER $CUEREADEROPTS > "$ABCDETEMPDIR/$CUEFILE"; then
1920 echo cuefile=$CUEFILE >> "$ABCDETEMPDIR/status"
1922 log warning "reading the CUE sheet is still considered experimental"
1923 log warning "and there was a problem with the CD reading. abcde will continue,"
1924 log warning "but consider reporting the problem to the abcde author"
1930 # If we got the CDPARANOIA status and it is not recorded, save it now
1931 if [ -n "$CDPARANOIAAUDIOTRACKS" ]; then
1932 if checkstatus cdparanoia-audio-tracks > /dev/null 2>&1; then :; else
1933 echo cdparanoia-audio-tracks=$CDPARANOIAAUDIOTRACKS >> "$ABCDETEMPDIR/status"
1937 # Create the discid file
1938 echo "$TRACKINFO" > "$ABCDETEMPDIR/discid"
1939 if checkstatus cddbmethod > /dev/null 2>&1 ; then :; else
1940 echo "cddbmethod=$CDDBMETHOD" >> "$ABCDETEMPDIR/status"
1945 # Create a proper CUE file based on the CUE file we created before.
1948 if CUEFILE_IN="$ABCDETEMPDIR"/$(checkstatus cuefile); then
1949 CUEFILE_OUT=$CUEFILE_IN.out
1950 ### FIXME ### checkstatus cddb
1951 if [ -e "$CDDBDATA" ]; then
1952 vecho "Adding metadata to the cue file..."
1953 # FIXME It doesn't preserve spaces! Why?
1954 # FIXME parse $track into PERFORMER and TITLE - abcde already has code for this?
1956 echo "PERFORMER \"$DARTIST\"" >> "$CUEFILE_OUT"
1957 echo "TITLE \"$DALBUM\"" >> "$CUEFILE_OUT"
1958 # Set IFS to <newline> to prevent read from swallowing spaces and tabs
1962 cat "$CUEFILE_IN" | while read line
1964 if echo "$line" | grep "INDEX 01" > /dev/null 2>&1 ; then
1965 # FIXME # Possible patch: remove the line above, uncomment the 2 lines below.
1966 # echo "$line" >> "$CUEFILE_OUT"
1967 # if echo "$line" | grep "^[[:space:]]*TRACK" > /dev/null 2>&1 ; then
1968 eval track="\$TRACK$n"
1970 echo " TITLE \"$track\"" >> "$CUEFILE_OUT"
1972 # FIXME # If the lines above are uncommented, remove the line below.
1973 echo "$line" >> "$CUEFILE_OUT"
1976 mv "$CUEFILE_OUT" "$CUEFILE_IN"
1977 echo "cleancuefile" >> "$ABCDETEMPDIR/status"
1983 # Parses a CDDB file and outputs the title and the track names.
1984 # Variables: CDDBFILE
1988 # List out disc title/author and contents
1989 if [ "$ONETRACK" = "y" ]; then
1990 vecho "ONETRACK mode selected: displaying only the title of the CD..."
1992 echo "---- $(grep DTITLE "${CDDBPARSEFILE}" | cut '-d=' -f2- | tr -d \\r\\n ) ----"
1993 if [ X"$SHOWCDDBYEAR" = "Xy" ]; then
1994 PARSEDYEAR=$(grep DYEAR "${CDDBPARSEFILE}" | cut '-d=' -f2-)
1995 if [ ! X"$PARSEDYEAR" = "X" ]; then
1996 echo "Year: $PARSEDYEAR"
1999 if [ X"$SHOWCDDBGENRE" = "Xy" ]; then
2000 PARSEDGENRE=$(grep DGENRE "${CDDBPARSEFILE}" | cut '-d=' -f2-)
2001 if [ ! X"$PARSEDGENRE" = "X" ]; then
2002 echo "Genre: $PARSEDGENRE"
2005 if [ ! "$ONETRACK" = "y" ]; then
2006 for TRACK in $(f_seq_row 1 $TRACKS)
2008 echo $TRACK: "$(grep ^TTITLE$(expr $TRACK - 1)= "${CDDBPARSEFILE}" | cut -f2- -d= | tr -d \\r\\n)"
2014 # Check for a local CDDB file, and report success
2017 if checkstatus cddb-readcomplete && checkstatus cddb-choice >/dev/null; then :; else
2019 CDDBLOCALSTATUS="notfound"
2020 CDDBDISCID=$(echo $TRACKINFO | cut -d' ' -f1)
2023 if [ "$CDDBLOCALRECURSIVE" = "y" ]; then
2024 CDDBLOCALRESULTS="$(find ${CDDBLOCALDIR} -name "${CDDBDISCID}" -type f 2> /dev/null)"
2025 if [ ! "${CDDBLOCALRESULTS}" = "" ]; then
2026 if (( $(echo "${CDDBLOCALRESULTS}" | wc -l) == 1 )); then
2027 CDDBLOCALFILE="${CDDBLOCALRESULTS}"
2028 CDDBLOCALMATCH=single
2029 elif (( $(echo "${CDDBLOCALRESULTS}" | wc -l) > 1 )); then
2030 CDDBLOCALMATCH=multiple
2035 elif [ "$CDDBLOCALMATCH" = "none" ] && [ -r "${CDDBLOCALDIR}/${CDDBDISCID}" ]; then
2036 CDDBLOCALFILE="${CDDBLOCALDIR}/${CDDBDISCID}"
2037 CDDBLOCALMATCH=single
2042 # If the user has selected to check a local CDDB repo, we proceed with it
2043 case $CDDBLOCALMATCH in
2045 echo "Processing multiple matching CDDB entries..." > "$ABCDETEMPDIR/cddblocalchoices"
2047 echo "$CDDBLOCALRESULTS" | while read RESULT ; do
2049 # List out disc title/author and contents
2050 CDDBLOCALREAD="$ABCDETEMPDIR/cddblocalread.$X"
2051 cat "$RESULT" > "${CDDBLOCALREAD}"
2054 do_cddbparse "${CDDBLOCALREAD}"
2056 ##FIXME## QUICK HACK !!!!
2057 if [ ! "$INTERACTIVE" = "y" ]; then break ; fi
2058 } >> "$ABCDETEMPDIR/cddblocalchoices"
2060 if [ $(cat "$ABCDETEMPDIR/cddblocalchoices" | wc -l) -ge 24 ] && [ "$INTERACTIVE" = "y" ]; then
2061 page "$ABCDETEMPDIR/cddblocalchoices"
2063 # It's all going to fit in one page, cat it
2064 cat "$ABCDETEMPDIR/cddblocalchoices" >&2
2066 CDDBLOCALCHOICES=$( echo "$CDDBLOCALRESULTS" | wc -l )
2067 # Setting the choice to an impossible integer to avoid errors in the numeric comparisons
2068 CDDBLOCALCHOICENUM=-1
2069 if [ "$INTERACTIVE" = "y" ]; then
2070 while [ $CDDBLOCALCHOICENUM -lt 0 ] || [ $CDDBLOCALCHOICENUM -gt $CDDBLOCALCHOICES ]; do
2071 echo -n "Locally cached CDDB entries found. Which one would you like to use (0 for none)? [0-$CDDBLOCALCHOICES]: " >&2
2072 read CDDBLOCALCHOICE
2073 [ x"$CDDBLOCALCHOICE" = "x" ] && CDDBLOCALCHOICE="1"
2074 # FIXME # Introduce diff's
2075 if echo $CDDBLOCALCHOICE | egrep "[[:space:]]*[[:digit:]]+,[[:digit:]]+[[:space:]]*" > /dev/null 2>&1 ; then
2076 diffentries cddblocalread "$CDDBLOCALCHOICES" "$CDDBLOCALCHOICE"
2077 elif echo $CDDBLOCALCHOICE | egrep "[[:space:]]*[[:digit:]]+[[:space:]]*" > /dev/null 2>&1 ; then
2078 # Make sure we get a valid choice
2079 CDDBLOCALCHOICENUM=$(echo $CDDBLOCALCHOICE | xargs printf %d 2>/dev/null)
2080 if [ $CDDBLOCALCHOICENUM -lt 0 ] || [ $CDDBLOCALCHOICENUM -gt $CDDBLOCALCHOICES ]; then
2081 echo "Invalid selection. Please choose a number between 0 and $CDDBLOCALCHOICES." >&2
2087 #echo "Selected ..."
2089 CDDBLOCALCHOICENUM=1
2091 if [ ! "$CDDBLOCALCHOICENUM" = "0" ]; then
2092 #echo "Using local copy of CDDB data"
2093 echo "# DO NOT ERASE THIS LINE! Added by abcde to imitate cddb output" > "$ABCDETEMPDIR/cddbread.1"
2094 cat "$ABCDETEMPDIR/cddblocalread.$CDDBLOCALCHOICENUM" >> "$ABCDETEMPDIR/cddbread.1"
2095 echo 999 > "$ABCDETEMPDIR/cddbquery" # Assuming 999 isn't used by CDDB
2096 echo cddb-readcomplete >> "$ABCDETEMPDIR/status"
2097 do_cddbparse "$ABCDETEMPDIR/cddbread.1" > "$ABCDETEMPDIR/cddbchoices"
2098 echo cddb-choice=1 >> "$ABCDETEMPDIR/status"
2099 CDDBLOCALSTATUS="found"
2101 #echo "Not using local copy of CDDB data"
2102 CDDBLOCALSTATUS="notfound"
2106 # List out disc title/author and contents
2107 do_cddbparse "${CDDBLOCALFILE}"
2108 #if [ "$CDROMREADERSYNTAX" = "flac" ] ; then
2109 # echo -n "Embedded cuesheet entry found, use it? [y/n] (y): " >&2
2111 echo -n "Locally cached CDDB entry found, use it? [y/n] (y): " >&2
2113 if [ "$INTERACTIVE" = "y" ]; then
2115 while [ "$USELOCALRESP" != "y" ] && [ "$USELOCALRESP" != "n" ] && [ "$USELOCALRESP" != "" ] ; do
2116 echo -n 'Invalid selection. Please answer "y" or "n": ' >&2
2119 [ x"$USELOCALRESP" = "x" ] && USELOCALRESP="y"
2123 if [ "$USELOCALRESP" = "y" ]; then
2124 #echo "Using local copy of CDDB data"
2125 echo "# DO NOT ERASE THIS LINE! Added by abcde to imitate cddb output" > "$ABCDETEMPDIR/cddbread.1"
2126 cat "${CDDBLOCALFILE}" >> "$ABCDETEMPDIR/cddbread.1"
2127 echo 999 > "$ABCDETEMPDIR/cddbquery" # Assuming 999 isn't used by CDDB
2128 echo cddb-readcomplete >> "$ABCDETEMPDIR/status"
2129 do_cddbparse "${CDDBLOCALFILE}" > "$ABCDETEMPDIR/cddbchoices"
2130 echo cddb-choice=1 >> "$ABCDETEMPDIR/status"
2131 CDDBLOCALSTATUS="single"
2133 #echo "Not using local copy of CDDB data"
2134 CDDBLOCALSTATUS="notfound"
2138 CDDBLOCALSTATUS="notfound"
2144 do_musicbrainzstat ()
2151 # Use MBE_TOCGetCDIndexId on a perl query
2158 # Perform CDDB protocol version check if it hasn't already been done
2159 if checkstatus cddb-statcomplete; then :; else
2160 if [ "$CDDBAVAIL" = "n" ]; then
2162 echo 503 > "$ABCDETEMPDIR/cddbstat"
2165 CDDBUSER=$(echo $HELLOINFO | cut -f1 -d'@')
2166 CDDBHOST=$(echo $HELLOINFO | cut -f2- -d'@')
2167 while test $rc -eq 1 -a $CDDBPROTO -ge 3; do
2168 vecho "Checking CDDB server status..."
2169 $CDDBTOOL stat $CDDBURL $CDDBUSER $CDDBHOST $CDDBPROTO > "$ABCDETEMPDIR/cddbstat"
2170 RESPONSECODE=$(head -n 1 "$ABCDETEMPDIR/cddbstat" | cut -f1 -d' ')
2171 case "$RESPONSECODE" in
2172 210) # 210 OK, status information follows (until terminating `.')
2175 501|*) # 501 Illegal CDDB protocol level: <n>.
2176 CDDBPROTO=`expr $CDDBPROTO - 1`
2180 if test $rc -eq 1; then
2184 echo cddb-statcomplete >> "$ABCDETEMPDIR/status"
2192 CDDBDISCID=$(echo $TRACKINFO | cut -d' ' -f1)
2193 CDDBLOCALFILE="${CDDBLOCALDIR}/${CDDBDISCID}"
2195 # Perform CDDB query if it hasn't already been done
2196 if checkstatus cddb-querycomplete; then :; else
2197 if [ "$CDDBAVAIL" = "n" ]; then
2199 echo 503 > "$ABCDETEMPDIR/cddbquery"
2200 # The default CDDBLOCALSTATUS is "notfound"
2201 # This part will be triggered if the user CDDB repo does not
2202 # contain the entry, or if we are not trying to use the repo.
2204 vecho "Querying the CDDB server..."
2205 CDDBUSER=$(echo $HELLOINFO | cut -f1 -d'@')
2206 CDDBHOST=$(echo $HELLOINFO | cut -f2- -d'@')
2207 $CDDBTOOL query $CDDBURL $CDDBPROTO $CDDBUSER $CDDBHOST $TRACKINFO > "$ABCDETEMPDIR/cddbquery"
2213 # no match found in database,
2214 # wget/fetch error, or user requested not to use CDDB
2215 # Make up an error code (503) that abcde
2216 # will recognize in do_cddbread
2217 # and compensate by making a template
2218 echo 503 > "$ABCDETEMPDIR/cddbquery"
2220 *) # strange and unknown error
2221 echo ERRORCODE=$ERRORCODE
2222 echo "abcde: $CDDBTOOL returned unknown error code"
2226 echo cddb-querycomplete >> "$ABCDETEMPDIR/status"
2233 # If it's not to be used, generate a template.
2234 # Then, display it (or them) and let the user choose/edit it
2235 if checkstatus cddb-readcomplete; then :; else
2236 vecho "Obtaining CDDB results..."
2237 # If CDDB is to be used, interpret the query results and read all
2238 # the available entries.
2239 rm -f "$ABCDETEMPDIR/cddbchoices"
2240 CDDBCHOICES=1 # Overridden by multiple matches
2241 RESPONSECODE=$(head -n 1 "$ABCDETEMPDIR/cddbquery" | cut -f1 -d' ')
2242 case "$RESPONSECODE" in
2244 # One exact match, retrieve it
2245 # 200 [section] [discid] [artist] / [title]
2246 if checkstatus cddb-read-1-complete; then :; else
2247 echo -n "Retrieving 1 CDDB match..." >> "$ABCDETEMPDIR/cddbchoices"
2248 $CDDBTOOL read $CDDBURL $CDDBPROTO $CDDBUSER $CDDBHOST $(cut -f2,3 -d' ' "$ABCDETEMPDIR/cddbquery") > "$ABCDETEMPDIR/cddbread.1"
2249 echo "done." >> "$ABCDETEMPDIR/cddbchoices"
2250 echo cddb-read-1-complete >> "$ABCDETEMPDIR/status"
2251 echo cddb-choice=1 >> "$ABCDETEMPDIR/status"
2253 # List out disc title/author and contents
2254 echo ---- "$(cut '-d ' -f4- "$ABCDETEMPDIR/cddbquery")" ---- >> "$ABCDETEMPDIR/cddbchoices"
2255 for TRACK in $(f_seq_row 1 $TRACKS)
2257 echo $TRACK: "$(grep ^TTITLE$(expr $TRACK - 1)= "$ABCDETEMPDIR/cddbread.1" | cut -f2- -d= | tr -d \\r\\n)" >> "$ABCDETEMPDIR/cddbchoices"
2259 echo >> "$ABCDETEMPDIR/cddbchoices"
2263 case "$RESPONSECODE" in
2264 202) echo "No CDDB match." >> "$ABCDETEMPDIR/cddbchoices" ;;
2265 403|409) echo "CDDB entry is corrupt, or the handshake failed." >> "$ABCDETEMPDIR/cddbchoices" ;;
2266 503) echo "CDDB unavailable." >> "$ABCDETEMPDIR/cddbchoices" ;;
2268 $CDDBTOOL template $(cat "$ABCDETEMPDIR/discid") > "$ABCDETEMPDIR/cddbread.0"
2269 # List out disc title/author and contents of template
2270 echo ---- Unknown Artist / Unknown Album ---- >> "$ABCDETEMPDIR/cddbchoices"
2272 for TRACK in $(f_seq_row 1 $TRACKS)
2274 echo $TRACK: "$(grep ^TTITLE$(expr $TRACK - 1)= "$ABCDETEMPDIR/cddbread.0" | cut -f2- -d= | tr -d \\r\\n)" >> "$ABCDETEMPDIR/cddbchoices"
2276 echo >> "$ABCDETEMPDIR/cddbchoices"
2277 echo cddb-read-0-complete >> "$ABCDETEMPDIR/status"
2278 echo cddb-choice=0 >> "$ABCDETEMPDIR/status"
2281 # Multiple exact, (possibly multiple) inexact matches
2283 if [ "$RESPONSECODE" = "211" ]; then IN=in; fi
2284 if [ "$(wc -l < "$ABCDETEMPDIR/cddbquery" | tr -d ' ')" -eq 3 ]; then
2285 echo "One ${IN}exact match:" >> "$ABCDETEMPDIR/cddbchoices"
2286 tail -n +2 "$ABCDETEMPDIR/cddbquery" | head -n 1 >> "$ABCDETEMPDIR/cddbchoices"
2287 echo cddb-choice=1 >> "$ABCDETEMPDIR/status"
2289 echo "Multiple ${IN}exact matches:" >> "$ABCDETEMPDIR/cddbchoices"
2291 vecho -n "Retrieving multiple matches... "
2292 grep -v ^[.]$ "$ABCDETEMPDIR/cddbquery" | ( X=0
2293 read DISCINFO # eat top line
2297 if checkstatus cddb-read-$X-complete; then :; else
2298 $CDDBTOOL read $CDDBURL $CDDBPROTO $CDDBUSER $CDDBHOST $(echo $DISCINFO | cut -f1,2 -d' ') > "$ABCDETEMPDIR/cddbread.$X"
2299 echo cddb-read-$X-complete >> "$ABCDETEMPDIR/status"
2301 # List out disc title/author and contents
2302 echo \#$X: ---- "$DISCINFO" ---- >> "$ABCDETEMPDIR/cddbchoices"
2303 for TRACK in $(f_seq_row 1 $TRACKS)
2305 echo $TRACK: "$(grep ^TTITLE$(expr $TRACK - 1)= "$ABCDETEMPDIR/cddbread.$X" | cut -f2- -d= | tr -d \\r\\n)" >> "$ABCDETEMPDIR/cddbchoices"
2307 echo >> "$ABCDETEMPDIR/cddbchoices"
2310 CDDBCHOICES=$(expr $(cat "$ABCDETEMPDIR/cddbquery" | wc -l) - 2)
2314 for TRACK in $(f_seq_row 1 $TRACKS)
2316 echo $TRACK: "$(grep ^TTITLE$(expr $TRACK - 1)= "$ABCDETEMPDIR/cddbread.1" | cut -f2- -d= | tr -d \\r\\n)" >> "$ABCDETEMPDIR/cddbchoices"
2318 echo >> "$ABCDETEMPDIR/cddbchoices"
2319 echo cddb-read-1-complete >> "$ABCDETEMPDIR/status"
2320 echo cddb-choice=1 >> "$ABCDETEMPDIR/status"
2323 echo "cddb-readcomplete" >> "$ABCDETEMPDIR/status"
2330 if checkstatus cddb-edit >/dev/null; then
2331 CDDBDATA="$ABCDETEMPDIR/cddbread.$(checkstatus cddb-choice)"
2332 VARIOUSARTISTS="$(checkstatus variousartists)"
2333 VARIOUSARTISTSTYLE="$(checkstatus variousartiststyle)"
2336 if [ "$INTERACTIVE" = "y" ]; then
2337 # We should show the CDDB results both when we are not using the local CDDB repo
2338 # or when we are using it but we could not find a proper match
2339 if [ "$CDDBUSELOCAL" = "y" ] && [ "$CDDBLOCALSTATUS" = "notfound" ] || [ ! "$CDDBUSELOCAL" = "y" ]; then
2340 # Display the $ABCDETEMPDIR/cddbchoices file created above
2341 # Pick a pager so that if the tracks overflow the screen the user can still view everything
2342 if [ -r "$ABCDETEMPDIR/cddbchoices" ]; then
2343 CDDBCHOICES=$(expr $(cat "$ABCDETEMPDIR/cddbquery" | wc -l) - 2)
2344 CHOICE=$(checkstatus cddb-choice)
2345 if [ -n "$CHOICE" ] ; then
2346 case $CDDBCHOICES in
2347 -1) if head -1 "$ABCDETEMPDIR/cddbquery" | grep "^$" > /dev/null 2>&1 ; then
2348 log error "CDDB query failed!"
2351 cat "$ABCDETEMPDIR/cddbchoices"
2354 1) cat "$ABCDETEMPDIR/cddbchoices" ;;
2356 echo "Selected: #$CHOICE"
2357 do_cddbparse "$ABCDETEMPDIR/cddbread.$CHOICE"
2361 # The user has a choice to make, display the info in a pager if necessary
2362 if [ $(cat "$ABCDETEMPDIR/cddbchoices" | wc -l) -ge 24 ]; then
2363 page "$ABCDETEMPDIR/cddbchoices"
2365 # It's all going to fit in one page, cat it
2366 cat "$ABCDETEMPDIR/cddbchoices" >&2
2370 # Setting the choice to an impossible integer to avoid errors in the numeric comparisons
2372 # I'll take CDDB read #3 for $400, Alex
2373 while [ $CDCHOICENUM -lt 0 ] || [ $CDCHOICENUM -gt $CDDBCHOICES ]; do
2374 echo -n "Which entry would you like abcde to use (0 for none)? [0-$CDDBCHOICES]: " >&2
2376 [ X"$CDDBCHOICE" = "X" ] && CDDBCHOICE=1
2377 if echo $CDDBCHOICE | egrep "[[:space:]]*[[:digit:]]+,[[:digit:]]+[[:space:]]*" > /dev/null 2>&1 ; then
2378 if [ ! X"$DIFF" = "X" ]; then
2379 PARSECHOICE1=$(echo $CDDBCHOICE | cut -d"," -f1 | xargs printf %d 2>/dev/null)
2380 PARSECHOICE2=$(echo $CDDBCHOICE | cut -d"," -f2 | xargs printf %d 2>/dev/null)
2381 if [ $PARSECHOICE1 -lt 1 ] || [ $PARSECHOICE1 -gt $CDDBCHOICES ] || \
2382 [ $PARSECHOICE2 -lt 1 ] || [ $PARSECHOICE2 -gt $CDDBCHOICES ] || \
2383 [ $PARSECHOICE1 -eq $PARSECHOICE2 ]; then
2384 echo "Invalid diff range. Please select two coma-separated numbers between 1 and $CDDBCHOICES" >&2
2386 # We parse the 2 choices to diff, store them in temporary files and diff them.
2387 for PARSECHOICE in $(echo $CDDBCHOICE | tr , \ ); do
2388 do_cddbparse "$ABCDETEMPDIR/cddbread.$PARSECHOICE" > "$ABCDETEMPDIR/cddbread.parsechoice.$PARSECHOICE"
2390 echo "Showing diff between choices $PARSECHOICE1 and $PARSECHOICE2..." > "$ABCDETEMPDIR/cddbread.diff"
2391 $DIFF $DIFFOPTS "$ABCDETEMPDIR/cddbread.parsechoice.$PARSECHOICE1" "$ABCDETEMPDIR/cddbread.parsechoice.$PARSECHOICE2" >> "$ABCDETEMPDIR/cddbread.diff"
2392 if [ $(cat "$ABCDETEMPDIR/cddbread.diff" | wc -l) -ge 24 ]; then
2393 page "$ABCDETEMPDIR/cddbread.diff"
2395 cat "$ABCDETEMPDIR/cddbread.diff" >&2
2399 echo "The diff program was not found in your path. Please choose a number between 0 and $CDDBCHOICES." >&2
2401 elif echo $CDDBCHOICE | egrep "[[:space:]]*[[:digit:]]+[[:space:]]*" > /dev/null 2>&1 ; then
2402 # Make sure we get a valid choice
2403 CDCHOICENUM=$(echo $CDDBCHOICE | xargs printf %d 2>/dev/null)
2404 if [ $CDCHOICENUM -lt 0 ] || [ $CDCHOICENUM -gt $CDDBCHOICES ]; then
2405 echo "Invalid selection. Please choose a number between 0 and $CDDBCHOICES." >&2
2409 if [ "$CDCHOICENUM" = "0" ]; then
2410 vecho "Creating empty CDDB template..."
2412 $CDDBTOOL template $(cat "$ABCDETEMPDIR/discid") > "$ABCDETEMPDIR/cddbread.0"
2414 echo "Selected: #$CDCHOICENUM ($(grep ^DTITLE= "$ABCDETEMPDIR/cddbread.$CDCHOICENUM" | cut -f2- -d= | tr -d \\r\\n))" >&2
2415 do_cddbparse "$ABCDETEMPDIR/cddbread.$CDCHOICENUM"
2417 echo "cddb-choice=$CDCHOICENUM" >> "$ABCDETEMPDIR/status"
2421 # We need some code to show the selected option when local repository is selected and we have found a match
2422 vecho "Using cached CDDB match..." >&2
2423 # Display the $ABCDETEMPDIR/cddbchoices file created above
2424 # Pick a pager so that if the tracks overflow the screen the user can still view everything
2425 if [ -r "$ABCDETEMPDIR/cddbchoices" ]; then
2426 CDDBCHOICES=$(expr $(cat "$ABCDETEMPDIR/cddbquery" | wc -l) - 2)
2427 CHOICE=$(checkstatus cddb-choice)
2428 if [ "$USELOCALRESP" = "y" ]; then :; else
2429 if [ -n "$CHOICE" ] ; then
2430 case $CDDBCHOICES in
2433 echo "Selected template."
2435 1) cat "$ABCDETEMPDIR/cddbchoices" ;;
2437 echo "Selected: #$CHOICE"
2438 do_cddbparse "$ABCDETEMPDIR/cddbread.$CHOICE"
2446 # We're noninteractive - pick the first choice.
2447 # But in case we run a previous instance and selected a choice, use it.
2448 if [ -r "$ABCDETEMPDIR/cddbchoices" ]; then
2449 # Show the choice if we are not using the locally stored one
2450 # or when the local search failed to find a match.
2451 PREVIOUSCHOICE=$(checkstatus cddb-choice)
2452 if [ "$CDDBUSELOCAL" = "y" ] && [ "$CDDBLOCALSTATUS" = "notfound" ] || [ ! "$CDDBUSELOCAL" = "y" ]; then
2453 #if [ "$PREVIOUSCHOICE" ]; then
2454 cat "$ABCDETEMPDIR/cddbchoices"
2457 if [ ! -z "$PREVIOUSCHOICE" ] ; then
2458 CDCHOICENUM=$PREVIOUSCHOICE
2461 echo "cddb-choice=$CDCHOICENUM" >> "$ABCDETEMPDIR/status"
2463 echo "Selected: #$CDCHOICENUM ($(grep ^DTITLE= "$ABCDETEMPDIR/cddbread.$CDCHOICENUM" | cut -f2- -d= | tr -d \\r\\n))" >&2
2468 if checkstatus cddb-choice >/dev/null; then :; else
2469 echo "abcde: internal error: cddb-choice not recorded." >&2
2472 CDDBDATA="$ABCDETEMPDIR/cddbread.$(checkstatus cddb-choice)"
2473 echo -n "Edit selected CDDB data? [y/n] (" >&2
2474 if [ "$INTERACTIVE" = "y" ]; then
2475 if [ "$UNKNOWNDISK" = "y" ]; then
2478 [ "$EDITCDDB" != "n" ] && EDITCDDB=y
2487 if [ "$EDITCDDB" = "y" ]; then
2488 CDDBDATAMD5SUM=$($MD5SUM "$CDDBDATA" | cut -d " " -f 1);
2490 # Use the debian sensible-editor wrapper to pick the editor that the
2491 # user has requested via their $EDITOR environment variable
2492 if [ -x "/usr/bin/sensible-editor" ]; then
2493 /usr/bin/sensible-editor "$CDDBDATA"
2494 elif [ -n "$EDITOR" ]; then
2495 if [ -x $(which "${EDITOR%%\ *}") ]; then
2496 # That failed, try to load the preferred editor, starting
2497 # with their EDITOR variable
2498 eval $(echo "$EDITOR") \"$CDDBDATA\"
2500 # If that fails, check for a vi
2501 elif which vi >/dev/null 2>&1; then
2503 elif [ -x /usr/bin/vim ]; then
2504 /usr/bin/vim "$CDDBDATA"
2505 elif [ -x /usr/bin/vi ]; then
2506 /usr/bin/vi "$CDDBDATA"
2507 elif [ -x /bin/vi ]; then
2509 # nano should be on all (modern, i.e., sarge) debian systems
2510 elif which nano >/dev/null 2>&1 ; then
2512 elif [ -x /usr/bin/nano ]; then
2513 /usr/bin/nano "$CDDBDATA"
2514 # mg should be on all OpenBSD systems
2515 elif which mg >/dev/null 2>&1 ; then
2517 elif [ -x /usr/bin/mg ]; then
2518 /usr/bin/mg "$CDDBDATA"
2521 log warning "no editor available. Check your EDITOR environment variable."
2523 # delete editor backup file if it exists
2524 if [ -w "$CDDBDATA~" ]; then
2529 # Some heuristics first. Look at Disc Title, and if it starts with
2530 # "Various", then we'll assume Various Artists
2531 if [ "$(grep ^DTITLE= "$CDDBDATA" | cut -f2- -d= | egrep -ci '^(various|soundtrack|varios|sonora|ost)')" != "0" ]; then
2532 echo "Looks like a Multi-Artist CD" >&2
2535 echo -n "Is the CD multi-artist? [y/n] (n): " >&2
2536 if [ "$INTERACTIVE" = "y" ]; then
2543 if [ "$VARIOUSARTISTS" = "y" ] && [ ! "$ONETRACK" = "y" ]; then
2546 # Need NUMTRACKS before cddb-tool will return it:
2547 NUMTRACKS=$(egrep '^TTITLE[0-9]+=' "$CDDBDATA" | wc -l)
2548 if [ "$(grep -c "^TTITLE.*\/" "$CDDBDATA")" -gt "$(expr $NUMTRACKS / 2 )" ]; then
2549 # More than 1/2 tracks contain a "/", so guess forward
2551 elif [ "$(grep -c "^TTITLE.*\-" "$CDDBDATA")" -gt "$(expr $NUMTRACKS / 2 )" ]; then
2552 # More than 1/2 contain a "-", so guess forward-dash
2554 elif [ "$(grep -c "^TTITLE.*(.*)" "$CDDBDATA")" -gt "$(expr $NUMTRACKS / 2 )" ]; then
2555 # More than 1/2 contain something in parens, so guess trailing-paren
2559 echo "1) Artist / Title" >&2
2560 echo "2) Artist - Title" >&2
2561 echo "3) Title / Artist" >&2
2562 echo "4) Title - Artist" >&2
2563 echo "5) Artist: Title" >&2
2564 echo "6) Title (Artist)" >&2
2565 echo "7) This is a single-artist CD" >&2
2566 echo -n "Which style of multiple artist entries is it? [1-7] ($DEFAULTSTYLE): " >&2
2567 if [ "$INTERACTIVE" = "y" ]; then
2568 read VARIOUSARTISTSTYLE
2570 echo $DEFAULTSTYLE >&2
2571 VARIOUSARTISTSTYLE=$DEFAULTSTYLE
2573 VARIOUSARTISTSTYLE=$(echo 0$VARIOUSARTISTSTYLE | xargs printf %d)
2574 # If they press Enter, then the default style (0) was chosen
2575 while [ $VARIOUSARTISTSTYLE -lt 0 ] || [ $VARIOUSARTISTSTYLE -gt 7 ]; do
2576 echo "Invalid selection. Please choose a number between 1 and 7."
2577 echo -n "Selection [1-7]: "
2578 read VARIOUSARTISTSTYLE
2579 VARIOUSARTISTSTYLE=$(echo 0$VARIOUSARTISTSTYLE | xargs printf %d)
2581 if [ "$VARIOUSARTISTSTYLE" = "0" ]; then
2582 VARIOUSARTISTSTYLE=$DEFAULTSTYLE
2584 vecho "Selected: $VARIOUSARTISTSTYLE"
2585 case "$VARIOUSARTISTSTYLE" in
2587 VARIOUSARTISTSTYLE=forward
2590 VARIOUSARTISTSTYLE=forward-dash
2593 VARIOUSARTISTSTYLE=reverse
2596 VARIOUSARTISTSTYLE=reverse-dash
2599 VARIOUSARTISTSTYLE=colon
2602 VARIOUSARTISTSTYLE=trailing-paren
2610 echo "variousartists=$VARIOUSARTISTS" >> "$ABCDETEMPDIR/status"
2611 echo "variousartiststyle=$VARIOUSARTISTSTYLE" >> "$ABCDETEMPDIR/status"
2613 if [ "$EDITCDDB" = "y" ] && [ "$UNINTENTIONALLY_ANGER_THE_FREEDB_PEOPLE" = "y" ]; then
2614 if [ "$CDDBDATAMD5SUM" != "" ] && [ "$CDDBDATAMD5SUM" != "$($MD5SUM "$CDDBDATA" | cut -d " " -f 1)" ]; then
2615 # This works but does not have the necessary error checking
2616 # yet. If you are familiar with the CDDB spec
2617 # (see http://www.freedb.org/src/latest/DBFORMAT)
2618 # and can create an error-free entry on your own, then put
2619 # UNINTENTIONALLY_ANGER_THE_FREEDB_PEOPLE=y in your
2620 # abcde.conf to enable it. Put CDDBSUBMIT=email@address in
2621 # your abcde.conf to change the email address submissions are
2624 # submit the modified file, if they want
2625 if [ "$NOSUBMIT" != "y" ]; then
2626 echo -n "Do you want to submit this entry to $CDDBSUBMIT? [y/n] (n): "
2628 while [ "$YESNO" != "y" ] && [ "$YESNO" != "n" ] && [ "$YESNO" != "Y" ] && \
2629 [ "$YESNO" != "N" ] && [ "$YESNO" != "" ]
2631 echo -n 'Invalid selection. Please answer "y" or "n": '
2634 if [ "$YESNO" = "y" ] || [ "$YESNO" = "Y" ]; then
2635 echo -n "Sending..."
2636 $CDDBTOOL send "$CDDBDATA" $CDDBSUBMIT
2643 # User CDDBLOCALPOLICY to find out if we store the file or not...
2644 # Cache edited CDDB entry in the user's cddb dir
2645 if [ "$CDDBCOPYLOCAL" = "y" ]; then
2646 # Make sure the cache directory exists
2647 mkdir -p $CDDBLOCALDIR
2648 cat "$CDDBDATA" | tail -n $(expr $(cat "$CDDBDATA" | wc -l ) - 1 ) > ${CDDBLOCALDIR}/$(echo "$TRACKINFO" | cut -d' ' -f1)
2651 echo "cddb-edit" >> "$ABCDETEMPDIR/status"
2654 # do_cdread [tracknumber]
2655 # do_cdread onetrack [firsttrack] [lasttrack]
2659 # The commands here don't go through run_command because they're never supposed to be silenced
2660 # return codes need to be doublechecked anyway, however
2661 if [ "$1" = "onetrack" ]; then
2662 # FIXME # Add the possibility of grabbing ranges of tracks in onetrack
2663 # FIXME # Until then, we grab the whole CD in one track, no matter what
2665 # We need the first and last track for cdda2wav
2667 LASTTRACK=$(expr $3 + 0)
2668 UTRACKNUM=$FIRSTTRACK
2669 case "$CDROMREADERSYNTAX" in
2670 flac) READTRACKNUMS="$FIRSTTRACK.1-$(($LASTTRACK + 1)).0" ;;
2673 # Add a variable to check if tracks are provided in command line and if not, use "0-" to rip the tracks
2674 READTRACKNUMS="$FIRSTTRACK-$LASTTRACK" ;;
2675 cdda2wav) READTRACKNUMS="$FIRSTTRACK+$LASTTRACK" ;;
2676 *) echo "abcde error: $CDROMREADERSYNTAX does not support ONETRACK mode"
2682 CDDBTRACKNUM=$(expr $UTRACKNUM - 1)
2683 if [ "$USEPIPES" = "y" ]; then
2684 TEMPARG="PIPERIPPER_$CDROMREADERSYNTAX"
2685 FILEARG="$( eval echo "\$$TEMPARG" )"
2687 PIPE_MESSAGE="and encoding "
2689 WAVDATA="$ABCDETEMPDIR/track$UTRACKNUM.wav"
2690 case "$CDROMREADERSYNTAX" in
2691 ## FIXME ## Find the cases for dagrab and flac, to avoid exceptions
2693 FILEARG="--output-name=$WAVDATA"
2696 FILEARG="-f $WAVDATA"
2704 if [ "$1" = "onetrack" ]; then
2705 echo "Grabbing ${PIPE_MESSAGE}tracks $UTRACKNUM - $LASTTRACK as one track ..." >&2
2707 if [ -r "$CDDBDATA" ]; then
2708 getcddbinfo TRACKNAME
2709 echo "Grabbing ${PIPE_MESSAGE}track $UTRACKNUM: $TRACKNAME..." >&2
2711 echo "Grabbing ${PIPE_MESSAGE}track $UTRACKNUM..." >&2
2714 case "$CDROMREADERSYNTAX" in
2715 ### FIXME ### use an exception for flac, since it uses -o
2716 ### FIXME ### Shall we just use -o $FILEARG ??
2718 # Avoid problems wit math expressions by unpadding the given UTRACKNUM
2719 STRIPTRACKNUM=$(expr $UTRACKNUM + 0)
2720 nice $READNICE $FLAC -d -f --cue=${READTRACKNUMS:-$STRIPTRACKNUM.1-$(($STRIPTRACKNUM + 1)).0} "$FILEARG" "$CDROM" ;;
2722 nice $READNICE $CDROMREADER -$CDPARANOIACDROMBUS "$CDROM" ${READTRACKNUMS:-$UTRACKNUM} "$FILEARG" $REDIR ;;
2724 if [ "$OSFLAVOUR" = "OSX" ] ; then
2725 # Hei, we have to unmount the device before running anything like cdda2wav in OSX
2726 disktool -u ${CDROM#/dev/} 0
2727 # Also, in OSX the cdrom device for cdda2wav changes...
2728 CDDA2WAVCDROM="IODVDServices"
2729 elif [ "$OSFLAVOUR" = "FBSD" ] ; then
2730 CDDA2WAVCDROM="$CDROMID"
2732 if [ "$CDROMID" = "" ]; then
2733 CDDA2WAVCDROM="$CDROM"
2735 CDDA2WAVCDROM="$CDROMID"
2738 nice $READNICE $CDROMREADER -D $CDDA2WAVCDROM -t ${READTRACKNUMS:-$UTRACKNUM} "$FILEARG" $REDIR
2740 ## FIXME ## We have an exception for dagrab, since it uses -f
2741 ## FIXME ## Shall we just use -f $FILEARG ??
2742 dagrab) nice $READNICE $CDROMREADER -d "$CDROM" -v $UTRACKNUM "$FILEARG" $REDIR
2745 # Find the track's mounted path
2746 REALTRACKNUM=$(expr $UTRACKNUM + 0)
2747 FILEPATH=$(mount | grep "$CDROM on" | sed 's/^[^ ]* on \(.*\) (.*/\1/')
2748 FILEPATH=$(find "$FILEPATH" | grep "/$REALTRACKNUM ");
2749 # If the file exists, copy it
2750 if [ -e "$FILEPATH" ] ; then
2751 nice $READNICE $CDROMREADER "$FILEPATH" "$FILEARG" $REDIR
2755 debug) nice $READNICE $CDROMREADER -$CDPARANOIACDROMBUS "$CDROM" -w $UTRACKNUM-[:1] "$FILEARG" $REDIR
2759 # If we get some error or we get some missing wav
2760 # (as long as we dont use pipes)
2761 if [ "$RETURN" != "0" -o \( ! -s "$WAVDATA" -a X"$USEPIPES" != "Xy" \) ]; then
2762 # Thank goodness errors is only machine-parseable up to the
2763 # first colon, otherwise this woulda sucked
2764 if [ "$RETURN" = "0" -a ! -s "$WAVDATA" ]; then
2765 RETURN=73 # fake a return code as cdparanoia return 0 also on aborted reads
2767 if [ "$USEPIPES" = "y" ]; then
2768 echo "readencodetrack-$UTRACKNUM: $CDROMREADER returned code $RETURN" >> "$ABCDETEMPDIR/errors"
2770 echo "readtrack-$UTRACKNUM: $CDROMREADER returned code $RETURN" >> "$ABCDETEMPDIR/errors"
2774 if [ "$USEPIPES" = "y" ]; then
2775 echo readencodetrack-$UTRACKNUM >> "$ABCDETEMPDIR/status"
2777 echo readtrack-$UTRACKNUM >> "$ABCDETEMPDIR/status"
2779 if [ "$1" = "onetrack" ]; then
2780 echo onetrack >> "$ABCDETEMPDIR/status"
2786 # No values accepted, only uses env variables
2789 if "$CDSPEED" "$CDSPEEDOPTS" "$CDSPEEDVALUE" >/dev/null ; then
2790 vecho "Setting CD speed to ${CDSPEEDVALUE}x"
2792 echo "abcde: unable to set the device speed" >&2
2798 # vecho outputs a message if EXTRAVERBOSE is selected
2801 if [ x"$EXTRAVERBOSE" != "x" ]; then
2803 warning) shift ; log warning "$@" ;;
2811 # decho outputs a debug message if DEBUG is selected
2814 if [ x"$DEBUG" != "x" ]; then
2815 if echo $1 | grep "^\[" > /dev/null 2>&1 ; then
2816 DEBUGECHO=$(echo "$@" | tr -d '[]')
2817 echo "[DEBUG] $DEBUGECHO: `eval echo \\$${DEBUGECHO}`"
2824 # User-redefinable functions
2825 # Custom filename munging:
2828 #echo "$@" | sed s,:,\ -,g | tr \ /\* __+ | tr -d \'\"\?\[:cntrl:\]
2829 echo "$@" | sed s,:,\ -,g | tr \ / __ | tr -d \'\"\?\[:cntrl:\]
2832 # Custom genre munging:
2835 echo $CDGENRE | tr "[:upper:]" "[:lower:]"
2839 # Empty pre_read function, to be defined in the configuration file.
2846 # Empty post_read function, to be defined in the configuration file.
2852 ###############################################################################
2855 # Start of execution
2856 ###############################################################################
2861 # Defaults to FreeDB, but a python musicbrainz can be used
2863 CDDBURL="http://freedb.freedb.org/~cddb/cddb.cgi"
2864 CDDBSUBMIT=freedb-submit@freedb.org
2866 HELLOINFO="$(whoami)@$(hostname)"
2868 CDDBLOCALPOLICY="always"
2869 CDDBLOCALRECURSIVE="y"
2870 CDDBLOCALDIR="$HOME/.cddb"
2873 # List of fields we parse and show during the CDDB parsing...
2874 SHOWCDDBFIELDS="year,genre"
2877 #CDROMREADERSYNTAX=cdparanoia
2878 ENCODERSYNTAX=default
2880 MP3ENCODERSYNTAX=default
2881 OGGENCODERSYNTAX=default
2882 FLACENCODERSYNTAX=default
2883 SPEEXENCODERSYNTAX=default
2884 MPPENCODERSYNTAX=default
2885 AACENCODERSYNTAX=default
2886 NORMALIZERSYNTAX=default
2887 CUEREADERSYNTAX=default
2889 OUTPUTFORMAT='${ARTISTFILE}-${ALBUMFILE}/${TRACKNUM}.${TRACKFILE}'
2890 # Use the following VAOUTPUTFORMAT to revert to 2.0.x VA format:
2891 #VAOUTPUTFORMAT=${OUTPUTFORMAT}
2892 VAOUTPUTFORMAT='Various-${ALBUMFILE}/${TRACKNUM}.${ARTISTFILE}-${TRACKFILE}'
2893 ONETRACKOUTPUTFORMAT='${ARTISTFILE}-${ALBUMFILE}/${ALBUMFILE}'
2894 VAONETRACKOUTPUTFORMAT='Various-${ALBUMFILE}/${ALBUMFILE}'
2895 PLAYLISTFORMAT='${ARTISTFILE}-${ALBUMFILE}.${OUTPUT}.m3u'
2896 PLAYLISTDATAPREFIX=''
2897 VAPLAYLISTFORMAT='${ARTISTFILE}-${ALBUMFILE}.${OUTPUT}.m3u'
2898 VAPLAYLISTDATAPREFIX=''
2906 VARIOUSARTISTSTYLE=forward
2913 # If using scsi devices, cdda2wav needs a CDROMID, instead of a device node
2914 # i.e. CDROMID="1,0,0"
2916 # If we are using the IDE bus, we need CDPARANOIACDROMBUS defined as "d"
2917 # If we are using the ide-scsi emulation layer, we need to define a "g"
2918 CDPARANOIACDROMBUS="d"
2920 # program paths - defaults to checking your $PATH
2927 XINGMP3ENC=xingmp3enc
2944 CDPARANOIA=cdparanoia
2950 MUSICBRAINZ=musicbrainz-get-tracks
2954 VORBISCOMMENT=vorbiscomment
2956 NORMALIZE=normalize-audio
2958 VORBISGAIN=vorbisgain
2966 # Options for programs called from abcde
3001 VORBISCOMMENTOPTS="-R"
3002 METAFLACOPTS="--no-utf8-convert"
3005 # Default to one process if -j isn't specified
3008 # List of actions to perform - by default, run to completion
3009 ACTIONS=cddb,read,encode,tag,move,clean
3011 # This option is basicaly for Debian package dependencies:
3012 # List of prefered outputs - by default, run with whatever we have in the path
3013 DEFAULT_OUTPUT_BINARIES=vorbis:oggenc,flac:flac,mp3:toolame,mp3:lame,mp3:bladeenc,spx:speex,m4a:faac
3015 # List of prefered cdromreaders - by default, run whichever we have in the path
3016 DEFAULT_CDROMREADERS="cdparanoia cdda2wav"
3018 # List of quality levels associated with the encoders:
3019 DEFAULT_QUALITY_XLO="oggenc:-q -1,lame:-q 9,speex:--quality 1,m4a:"
3020 DEFAULT_QUALITY_LO="oggenc:-q 1,lame:-q 7,speex:--quality 5,m4a:"
3021 DEFAULT_QUALITY_HI="oggenc:-q 7,lame:--preset standard,speex:--quality 9,m4a:"
3022 DEFAULT_QUALITY_XHI="oggenc:-q 10,lame:--preset extreme,speex:--quality 10,m4a:"
3024 # Asume fetch if under FreeBSD. curl is used for Mac OS X. wget is used for
3025 # Linux/OpenBSD. ftp is user for NetBSD.
3026 # Let's use these checkings to determine the OS flavour, which will be used
3028 if [ X$(uname) = "XFreeBSD" ] ; then
3033 elif [ X$(uname) = "XDarwin" ] ; then
3036 # We should have disktool in OSX, but let's be sure...
3038 CDROMREADERSYNTAX=cddafs
3039 elif [ X$(uname) = "XOpenBSD" ] ; then
3043 elif [ X$(uname) = "XNetBSD" ] ; then
3047 elif [ X$(uname) = "SunOS" ] ; then
3055 # If CDDBAVAIL is set to n, no CDDB read is done
3056 # If USEID3 is set to n, no ID3 tagging is done
3062 # But before we get into business, let us chop off any GREP environmental
3067 if [ -z "$OUTPUTDIR" ]; then
3071 if [ -z "$WAVOUTPUTDIR" ]; then
3072 WAVOUTPUTDIR="$OUTPUTDIR"
3075 # Load system defaults
3076 if [ -r /etc/abcde.conf ]; then
3079 # Load user preference defaults
3080 if [ -r $HOME/.abcde.conf ]; then
3084 # By this time, we need some HTTPGETOPTS already defined.
3085 # If the user has defined a non-default HTTPGET method, we should not be empty.
3087 if [ "$HTTPGETOPTS" = "" ] ; then
3089 wget) HTTPGETOPTS="-q -nv -O -";;
3090 curl) HTTPGETOPTS="-f -s";;
3091 fetch)HTTPGETOPTS="-q -o -";;
3092 ftp) HTTPGETOPTS="-a -V -o - ";;
3093 *) log warning "HTTPGET in non-standard and HTTPGETOPTS are not defined." ;;
3097 # If the CDROM has not been set yet, find a suitable one.
3098 # If this is a devfs system, default to /dev/cdroms/cdrom0
3099 # instead of /dev/cdrom
3100 if [ "$CDROM" = "" ] ; then
3101 if [ -e /dev/cdroms/cdrom0 ]; then
3102 CDROM=/dev/cdroms/cdrom0
3103 elif [ -e /dev/cdrom ]; then
3105 elif [ -e /dev/cd0c ]; then
3107 elif [ -e /dev/acd0c ]; then
3109 elif [ -e /dev/disk1 ]; then
3114 # Parse command line options
3115 #while getopts 1a:bc:C:d:Dehj:klLmMnNo:pPq:r:Rs:S:t:T:vVxw:W: opt ; do
3116 while getopts 1a:bBc:C:d:Defghj:klLmMnNo:pPr:s:S:t:T:UvVxX:w:W:z opt ; do
3119 a) ACTIONS="$OPTARG" ;;
3120 A) EXPACTIONS="$OPTARG" ;;
3122 B) NOBATCHREPLAYGAIN=y ;;
3123 c) if [ -e "$OPTARG" ] ; then . "$OPTARG" ; else log error "config file \"$OPTARG\" cannot be found." ; exit 1 ; fi ;;
3124 C) DISCID="$( echo ${OPTARG#abcde.} | tr -d /)" ;;
3125 d) CDROM="$OPTARG" ;;
3128 e) ERASEENCODEDSTATUS=y ;;
3129 E) ENCODING="$OPTARG" ;;
3133 j) MAXPROCS="$OPTARG" ;;
3136 L) CDDBUSELOCAL=y ;;
3141 o) OUTPUTTYPE="$OPTARG" ;;
3144 q) QUALITYLEVEL="$OPTARG" ;;
3145 r) REMOTEHOSTS="$OPTARG" ;;
3146 R) CDDBLOCALRECURSIVE=y ;;
3147 s) SHOWCDDBFIELDS="$OPTARG" ;;
3148 S) CDSPEEDVALUE="$OPTARG" ;;
3149 t) STARTTRACKNUMBER="$OPTARG" ;;
3150 T) STARTTRACKNUMBER="$OPTARG" ; STARTTRACKNUMBERTAG="y" ;;
3153 echo "This is abcde v$VERSION."
3154 echo "Usage: abcde [options] [tracks]"
3155 echo "abcde -h for extra help"
3158 V) EXTRAVERBOSE="y" ;;
3160 X) CUE2DISCID="$OPTARG" ;;
3161 w) COMMENT="$OPTARG" ;;
3162 W) if echo $OPTARG | grep "[[:digit:]]" > /dev/null 2>&1 ; then
3163 STARTTRACKNUMBER="${OPTARG}01" ; STARTTRACKNUMBERTAG="y" ; COMMENT="CD${OPTARG}"
3165 log error "argument of -W must be integer"
3169 z) DEBUG=y ; CDROMREADERSYNTAX=debug ; EJECTCD="n" ;;
3174 shift $(($OPTIND - 1))
3176 # Here it comes the worse part&nb