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 # Copyright (c) 2015- Andrew Strong <andrew.david.strong@gmail.com>
7 # This code is hereby licensed for public consumption under either the
8 # GNU GPL v2 or greater, or Larry Wall's Artistic license - your choice.
10 # You should have received a copy of the GNU General Public License along
11 # with this program; if not, write to the Free Software Foundation, Inc.,
12 # 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
14 VERSION='2.8.2-UNRELEASED'
18 echo "This is abcde v$VERSION."
19 echo "Usage: abcde [options] [tracks]"
21 echo "-1 Encode the whole CD in a single file"
22 echo "-a <action1[,action2]...>"
23 echo " Actions to perform:"
24 echo " cddb,read,getalbumart,normalize,encode,tag,move,replaygain,playlist,clean"
25 #echo "-A Experimental actions (retag, transcode)"
26 echo "-b Enable batch normalization"
28 echo " Specify a configuration file (overrides system and user config files)"
30 echo " Specify discid to resume from (only needed if you no longer have the cd)"
32 echo " Specify CDROM device to grab (flac uses a single-track flac file)"
33 echo "-D Debugging mode (equivalent to sh -x abcde)"
34 echo "-e Erase encoded track information from status file"
35 echo "-f Force operations that otherwise are considered harmful. Read \"man abcde\""
36 echo "-g Use \"lame --nogap\" for MP3 encoding. Disables low disk and pipes flags"
37 echo "-G Get album art by using the 'getalbumart' action"
38 echo "-h This help information"
39 #echo "-i Tag files while encoding, when possible (local only) -NWY-"
40 echo "-j <#> Number of encoder processes to run at once (localhost)"
41 echo "-k Keep the wav tracks for later use"
42 echo "-l Use low disk space algorithm"
43 echo "-L Use local CDDB storage directory"
44 echo "-m Modify playlist to include CRLF endings, to comply with some players"
45 #echo " WARNING: Deprecated. Use \"cue\" action"
46 #echo "-M Create a CUE file"
47 echo "-n No lookup. Don't query CDDB, just create and use template"
48 echo "-N Noninteractive. Never prompt for anything"
49 echo "-o <type1[,type2]...>"
50 echo " Output file type(s) (vorbis,mp3,flac,spx,mpc,wav,m4a,opus,mka,wv,ape,mp2,tta). Defaults to vorbis"
51 echo "-p Pad track numbers with 0's (if less than 10 tracks)"
52 echo "-P Use UNIX pipes to read+encode without wav files"
53 echo "-r <host1[,host2]...>"
54 echo " Also encode on these remote hosts"
56 echo " Show fields from the CDDB info (year,genre)"
57 echo "-S <#> Set the CD speed"
58 echo "-t <#> Start the track numbering at a given number"
59 echo "-T <#> Same as -t but modifies tag numbering"
60 echo "-U Do NOT use UNICODE (UTF8) tags and comments"
61 echo "-v Show version number and exit"
62 echo "-V Be a bit more verbose about what is happening behind the scenes"
63 echo "-x Eject CD after all tracks are read"
65 echo " Add a comment to the CD tracks"
66 echo "-W <#> Concatenate CDs: -T #01 -w \"CD #\""
67 echo "-z Use debug CDROMREADERSYNTAX option (needs cdparanoia)"
69 echo "Tracks is a space-delimited list of tracks to grab."
70 echo "Ranges specified with hyphens are allowed (i.e., 1-5)."
72 #echo "Double hyphens are used to concatenate tracks"
77 echo "$@" >> "$ABCDETEMPDIR/status"
80 # log [level] [message]
82 # log outputs the right message in a common format
88 error) >&2 echo "[ERROR] abcde: $@" >&2 ;;
89 warning) >&2 echo "[WARNING] $@" >&2 ;;
90 info) >&4 echo "[INFO] $@" ;;
94 # Functions to replace the need of seq, which is too distribution dependent.
98 while [ $i -ne `expr $2 + 1` ]
108 if echo $i | grep "[[:digit:]]" > /dev/null 2>&1 ; then
109 while [ $i -ne `expr $2 + 1` ]
116 log error "syntax error while processing track numbers ($i)"
121 # Functions to replace the need of awk {print $1} and {print $NF}
124 if [ X"$1" = "X" ]; then
125 for first in `cat`; do
136 if [ X"$1" = "X" ]; then
137 for stdin in `cat`; do
141 for last in $@ ; do :; done
146 # checkstatus [blurb]
147 # Returns "0" if the blurb was found, returns 1 if it wasn't
148 # Puts the blurb content, if available, on stdout.
149 # Otherwise, returns "".
152 # Take the last line in the status file if there's multiple matches
154 BLURB=$(grep -E $PATTERN "$ABCDETEMPDIR/status" | tail -n 1)
156 if [ -z "$BLURB" ]; then
161 # See if there's a = in it
162 if [ "$(echo $BLURB | grep -c =)" != "0" ]; then
163 echo "$(echo $BLURB | cut -f2- -d=)"
169 # checkwarnings [blurb]
170 # Returns "0" if the blurb was found (meaning there was an warning),
171 # returns 1 if it wasn't (yes this is a little backwards).
172 # Does not print the blurb on stdout.
173 # Otherwise, returns "".
176 if [ -e "$ABCDETEMPDIR/warnings" ]; then :; else
179 # Take the last line in the status file if there's multiple matches
181 BLURB="$(grep -E $PATTERN "$ABCDETEMPDIR/warnings" | tail -n 1)"
183 if [ -z "$BLURB" ]; then
184 # negative, we did not have a negative...
187 # affirmative, we had a negative...
192 # checkerrors [blurb]
193 # Returns "0" if the blurb was found (meaning there was an error),
194 # returns 1 if it wasn't (yes this is a little backwards).
195 # Does not print the blurb on stdout.
196 # Otherwise, returns "".
199 if [ -e "$ABCDETEMPDIR/errors" ]; then :; else
202 # Take the last line in the status file if there's multiple matches
204 BLURB="$(grep -E $PATTERN "$ABCDETEMPDIR/errors" | tail -n 1)"
206 if [ -z "$BLURB" ]; then
207 # negative, we did not have a negative...
210 # affirmative, we had a negative...
216 # Finds the right pager in the system to display a file
220 # Use the debian sensible-pager wrapper to pick the pager
221 # user has requested via their $PAGER environment variable
222 if [ -x "/usr/bin/sensible-pager" ]; then
223 /usr/bin/sensible-pager "$PAGEFILE"
224 elif [ -x "$PAGER" ]; then
225 # That failed, try to load the preferred editor, starting
226 # with their PAGER variable
228 # If that fails, check for less
229 elif [ -x /usr/bin/less ]; then
230 /usr/bin/less -f "$PAGEFILE"
231 # more should be on all UNIX systems
232 elif [ -x /bin/more ]; then
233 /bin/more "$PAGEFILE"
235 # No bananas, just cat the thing
240 # run_command [blurb] [command...]
241 # Runs a command, silently if necessary, and updates the status file
247 # See if this is supposed to be silent
248 if [ "$(checkstatus encode-output)" = "loud" ]; then
252 # Special case for SMP, since
253 # encoder output is never displayed, don't mute echos
254 if [ -z "$BLURB" -a "$MAXPROCS" != "1" ]; then
263 normalize|normalize-audio)
264 if [ "$RETURN" = "2" ]; then
265 # File was already normalized.
270 if [ "$RETURN" != "0" ]; then
271 # Put an error in the errors file. For various reasons we
272 # can't capture a copy of the program's output but we can
273 # log what we attempted to execute and the error code
274 # returned by the program.
275 if [ "$BLURB" ]; then
278 echo "${TWEAK}returned code $RETURN: $@" >> "$ABCDETEMPDIR/errors"
279 return $RETURN # Do not pass go, do not update the status file
281 if [ "$BLURB" ]; then
282 echo $BLURB >> "$ABCDETEMPDIR/status"
286 # relpath() and slash() are Copyright (c) 1999 Stuart Ballard and
287 # distributed under the terms of the GNU GPL v2 or later, at your option
289 # Function to determine if a word contains a slash.
298 # Function to give the relative path from one file to another.
299 # Usage: relpath fromfile tofile
300 # eg relpath music/Artist/Album.m3u music/Artist/Album/Song.mp3
301 # (the result would be Album/Song.mp3)
302 # Output is relative path to $2 from $1 on stdout
304 # This code has the following restrictions:
305 # Multiple ////s are not collapsed into single /s, with strange effects.
306 # Absolute paths and ../s are handled wrong in FR (but they work in TO)
307 # If FR is a directory it must have a trailing /
315 /*) ;; # No processing is needed for absolute paths
317 # Loop through common prefixes, ignoring them.
318 while slash "$FR" && [ "$(echo "$FR" | cut -d/ -f1)" = "$(echo "$TO" | cut -d/ -f1)" ]
320 FR="$(echo "$FR" | cut -d/ -f2-)"
321 TO="$(echo "$TO" | cut -d/ -f2-)"
323 # Loop through directory portions left in FR, adding appropriate ../s.
326 FR="$(echo "$FR" | cut -d/ -f2-)"
337 if [ ! "$@" = "" ]; then
338 # Cut off any command-line option we added in
339 X=$(echo $@ | cut -d' ' -f2)
340 if [ "$(which $X)" = "" ]; then
342 elif [ ! -x $(which $X) ]; then
351 if [ ! "$@" = "" ]; then
352 # Cut off any command-line option we added in
353 X=$(echo $@ | cut -d' ' -f2)
354 # Test for built-in abcde.function
355 [ "$X" != "${X#abcde.}" ] && type $X >/dev/null 2>&1 && return
356 if [ "$(which $X)" = "" ]; then
357 log error "$X is not in your path." >&2
358 log info "Define the full path to the executable if it exists on your system." >&2
359 if [ -e /etc/debian_* ] ; then
361 oggenc) MISSING_PACKAGE=vorbis-tools ;;
362 lame|flac) MISSING_PACKAGE=$X ;;
364 log info "Hint: sudo apt-get install $MISSING_PACKAGE" >&2
367 elif [ ! -x "$(which $X)" ]; then
368 log error "$X is not executable." >&2
374 # diffentries <filename> <max_value> <entry1>,<entry2>
375 # max_value: the range of entries goes from 1 to <max_value>
380 local CDDBDIFFCHOICES=$1
382 local CDDBDIFFCHOICE="$@"
383 if [ ! X"$DIFF" = "X" ]; then
384 PARSECHOICE1=$(echo $CDDBDIFFCHOICE | cut -d"," -f1 | xargs printf %d 2>/dev/null)
385 PARSECHOICE2=$(echo $CDDBDIFFCHOICE | cut -d"," -f2 | xargs printf %d 2>/dev/null)
386 if [ $PARSECHOICE1 -lt 1 ] || [ $PARSECHOICE1 -gt $CDDBDIFFCHOICES ] || \
387 [ $PARSECHOICE2 -lt 1 ] || [ $PARSECHOICE2 -gt $CDDBDIFFCHOICES ] || \
388 [ $PARSECHOICE1 -eq $PARSECHOICE2 ]; then
389 echo "Invalid diff range. Please select two comma-separated numbers between 1 and $CDDBDIFFCHOICES" >&2
391 # We parse the 2 choices to diff, store them in temporary files and diff them.
392 for PARSECHOICE in $(echo $CDDBDIFFCHOICE | tr , \ ); do
393 do_cddbparse "$ABCDETEMPDIR/$FILENAME.$PARSECHOICE" > "$ABCDETEMPDIR/$FILENAME.parsechoice.$PARSECHOICE"
395 echo "Showing diff between choices $PARSECHOICE1 and $PARSECHOICE2..." > "$ABCDETEMPDIR/$FILENAME.diff"
396 $DIFF $DIFFOPTS "$ABCDETEMPDIR/$FILENAME.parsechoice.$PARSECHOICE1" "$ABCDETEMPDIR/$FILENAME.parsechoice.$PARSECHOICE2" >> "$ABCDETEMPDIR/$FILENAME.diff"
397 if [ $(cat "$ABCDETEMPDIR/$FILENAME.diff" | wc -l) -ge 24 ]; then
398 page "$ABCDETEMPDIR/$FILENAME.diff"
400 cat "$ABCDETEMPDIR/$FILENAME.diff" >&2
404 echo "The diff program was not found in your path. Please choose a number between 0 and $CDDBDIFFCHOICES." >&2
409 # Finds an specific field from cddbinfo
414 TRACKNAME="$(grep -a ^TTITLE$CDDBTRACKNUM= "$CDDBDATA" | head -n 1 | cut -f2- -d= | tr -d \[:cntrl:\] | sed 's/\ \+$//')"
417 TRACKNAME="$(grep -a ^TTITLE$CDDBTRACKNUM= "$CDDBDATA" | cut -f2- -d= | tr -d \[:cntrl:\] | sed 's/\ \+$//')"
420 grep -a ^EXTT$CDDBTRACKNUM= "$CDDBDATA" | cut -f2- -d= | tr -d \[:cntrl:\] | sed 's/\\n/\n/g'
426 # Get the track number we are going to use for different actions
429 if [ -n "$STARTTRACKNUMBER" ] ; then
430 # Get the trackpadding from the current track, also trim whitespace for MacOSX
431 CURRENTTRACKPADDING=$(echo -n $UTRACKNUM | wc -c | tr -d ' ')
432 TRACKNUM=$( printf %0.${CURRENTTRACKPADDING}d $(expr ${UTRACKNUM} + ${STARTTRACKNUMBER} - $FIRSTTRACK ))
434 TRACKNUM=${UTRACKNUM}
440 # Calculate cddb disc ids without requiring specialized helper programs.
441 # largely copied from cd-discid and musicbrainz examples. some of the steps
442 # don't make sense, but they're necessary to match the ids generated by other
445 ## FIXME ## Right now, we get 2 frames more than with cue2discid ??
446 # data@petit:~$ sh /tmp/cue2discid /home/data/tmp/flac/01.Roisin_Murphy--Ruby_Blue.flac
447 # 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
448 # 980b4b0c 12 150 21685 37687 53146 80061 97782 124071 144448 160603 173208 197438 201334 2895
449 # data@petit:~$ metaflac --export-cuesheet-to=- /home/data/tmp/flac/01.Roisin_Murphy--Ruby_Blue.flac| python /home/data/sources/abcde/trunk/examples/cue2discid
450 # 980b4b0c 12 150 21685 37687 53146 80061 97782 124071 144448 160603 173208 197438 201334 2893
452 # Variables: OFFSETS, TRACKS, LEADOUT, [LEADIN]
455 if [ X"$LEADOUT" = "X" ]; then
456 log warning "Error trying to calculate disc ids without lead-out information."
460 # default to a two second lead-in
462 LEADIN=${LEADIN:=150}
464 # number of cdframes per second
467 # reset cddb checksum for cddb disc-id calululation
471 for OFFSET in $(echo $OFFSETS)
473 COOKEDOFFSETS="${COOKEDOFFSETS} $(($OFFSET + $LEADIN))"
475 OFFSETTIME=$(( ($OFFSET + $LEADIN) / $CDFRAMES ))
476 while [ $OFFSETTIME -gt 0 ]; do
477 CDDBCKSUM=$(($CDDBCKSUM + $OFFSETTIME % 10))
478 OFFSETTIME=$(($OFFSETTIME / 10))
483 COOKEDOFFSETS="${COOKEDOFFSETS:1}" # eat the leading space
485 PREGAP=$(($(echo $OFFSETS | cut -f1 -d' ')))
486 TOTALTIME=$(( (($LEADOUT + $LEADIN + $PREGAP) / $CDFRAMES) - (($LEADIN + $PREGAP) / $CDFRAMES)))
488 case "$CDDBMETHOD" in
490 printf -v DISCID "%08lx" $(( ($CDDBCKSUM % 0xff) * 16777216 | $TOTALTIME * 256 | $TRACKS))
493 # FIXME: don't assume the first track is 1
494 echo "dasd: 1 $TRACKS $LEADIN $LEADOUT $OFFSETS "
495 DISCID=$($MUSICBRAINZ --command calcid --discinfo 1 $TRACKS $LEADIN $LEADOUT $OFFSETS)
499 TRACKINFO="${DISCID} $((TRACKS)) ${COOKEDOFFSETS} $((($LEADOUT + $LEADIN + $IDMAGICNUM) / $CDFRAMES))"
504 if checkstatus replaygain; then :; else
505 run_command "" echo "Adding replaygain information..."
506 for TMPOUTPUT in $( echo $OUTPUTTYPE | tr , \ )
510 OUTPUT=$OGGOUTPUTCONTAINER
513 OUTPUT=$OPUSOUTPUTCONTAINER
516 OUTPUT=$FLACOUTPUTCONTAINER
524 for UTRACKNUM in $TRACKQUEUE
526 CDDBTRACKNUM=$(expr $UTRACKNUM - 1)
527 getcddbinfo TRACKNAME
529 TRACKFILE="$(mungetrackname "$TRACKNAME")"
530 ARTISTFILE="$(mungeartistname "$TRACKARTIST")"
531 ALBUMFILE="$(mungealbumname "$DALBUM")"
532 GENRE="$(mungegenre "$GENRE")"
533 YEAR=${CDYEAR:-$CDYEAR}
535 if [ "$ONETRACK" = "y" ]; then
536 if [ "$VARIOUSARTISTS" = "y" ]; then
537 OUTPUTFILE="$(eval echo \""$VAONETRACKOUTPUTFORMAT"\")"
539 OUTPUTFILE="$(eval echo \""$ONETRACKOUTPUTFORMAT"\")"
542 if [ "$VARIOUSARTISTS" = "y" ]; then
543 OUTPUTFILE="$(eval echo \""$VAOUTPUTFORMAT"\")"
545 OUTPUTFILE="$(eval echo \""$OUTPUTFORMAT"\")"
548 OUTPUTFILES[$REPLAYINDEX]="$OUTPUTDIR/$OUTPUTFILE.$OUTPUT"
549 (( REPLAYINDEX = $REPLAYINDEX + 1 ))
553 run_command replaygain-flac nice $ENCNICE $METAFLAC $FLACGAINOPTS "${OUTPUTFILES[@]}"
554 #run_command replaygain-flac true
557 run_command replaygain-vorbis nice $ENCNICE $VORBISGAIN $VORBISGAINOPTS "${OUTPUTFILES[@]}"
560 run_command replaygain-mp3 nice $ENCNICE $MP3GAIN $MP3GAINOPTS "${OUTPUTFILES[@]}"
563 run_command replaygain-mpc nice $ENCNICE $MPCGAIN "${OUTPUTFILES[@]}"
566 run_command replaygain-wv nice $ENCNICE $WVGAIN $WVGAINOPTS "${OUTPUTFILES[@]}"
571 if checkerrors "replaygain-.{3,6}"; then :; else
572 run_command replaygain true
577 # This code splits the a Various Artist track name from one of the following
580 # forward: Artist / Track
581 # forward-dash: Artist - Track
582 # reverse: Track / Artist
583 # reverse-dash: Track - Artist
584 # colon: Artist: Track
585 # trailing-paren: Artist (Track)
588 # VARIOUSARTISTS, VARIOUSARTISTSTYLE, TRACKNAME, TRACKARTIST
591 if [ "$VARIOUSARTISTS" = "y" ] && [ ! "$ONETRACK" = "y" ]; then
592 case "$VARIOUSARTISTSTYLE" in
594 DTITLEARTIST="$(echo "$TRACKNAME" | sed 's- / -~-g')"
595 TRACKARTIST="$(echo "$DTITLEARTIST" | cut -f1 -d~)"
596 TRACKNAME="$(echo "$DTITLEARTIST" | cut -f2 -d~)"
599 DTITLEARTIST="$(echo "$TRACKNAME" | sed 's, - ,~,g')"
600 TRACKARTIST="$(echo "$DTITLEARTIST" | cut -f1 -d~)"
601 TRACKNAME="$(echo "$DTITLEARTIST" | cut -f2 -d~)"
604 DTITLEARTIST="$(echo "$TRACKNAME" | sed 's- / -~-g')"
605 TRACKARTIST="$(echo "$DTITLEARTIST" | cut -f2 -d~)"
606 TRACKNAME="$(echo "$DTITLEARTIST" | cut -f1 -d~)"
609 DTITLEARTIST="$(echo "$TRACKNAME" | sed 's, - ,~,g')"
610 TRACKARTIST="$(echo "$DTITLEARTIST" | cut -f2 -d~)"
611 TRACKNAME="$(echo "$DTITLEARTIST" | cut -f1 -d~)"
614 DTITLEARTIST="$(echo "$TRACKNAME" | sed 's-: -~-g')"
615 TRACKARTIST="$(echo "$DTITLEARTIST" | cut -f1 -d~)"
616 TRACKNAME="$(echo "$DTITLEARTIST" | cut -f2 -d~)"
619 DTITLEARTIST="$(echo "$TRACKNAME" | sed 's,^\(.*\) (\(.*\)),\1~\2,')"
620 TRACKARTIST="$(echo "$DTITLEARTIST" | cut -f2 -d~)"
621 TRACKNAME="$(echo "$DTITLEARTIST" | cut -f1 -d~)"
624 elif [ "$VARIOUSARTISTS" = "y" ] && [ "$ONETRACK" = "y" ]; then
625 TRACKARTIST="Various"
627 TRACKARTIST="$DARTIST"
632 local genre=$(echo "${@}" | tr '[A-Z]' '[a-z]')
636 "classic rock") id=1 ;;
654 "industrial") id=19 ;;
655 "alternative") id=20 ;;
657 "death metal") id=22 ;;
659 "soundtrack") id=24 ;;
660 "euro-techno") id=25 ;;
664 "jazz+funk") id=29 ;;
667 "classical") id=32 ;;
668 "instrumental") id=33 ;;
672 "sound clip") id=37 ;;
675 "alt. rock") id=40 ;;
680 "meditative") id=45 ;;
681 "instrum. pop") id=46 ;;
682 "instrum. rock") id=47 ;;
686 "techno-indust.") id=51 ;;
687 "electronic") id=52 ;;
689 "eurodance") id=54 ;;
691 "southern rock") id=56 ;;
696 "christian rap") id=61 ;;
697 "pop/funk"|"pop / funk") id=62 ;;
699 "native american") id=64 ;;
702 "psychadelic") id=67 ;;
704 "showtunes") id=69 ;;
708 "acid punk") id=73 ;;
709 "acid jazz") id=74 ;;
713 "rock & roll") id=78 ;;
714 "hard rock") id=79 ;;
716 "folk/rock") id=81 ;;
717 "national folk") id=82 ;;
724 "bluegrass") id=89 ;;
725 "avantgarde") id=90 ;;
726 "gothic rock") id=91 ;;
727 "progress. rock") id=92 ;;
728 "psychadel. rock") id=93 ;;
729 "symphonic rock") id=94 ;;
730 "slow rock") id=95 ;;
733 "easy listening") id=98 ;;
739 "chamber music") id=104 ;;
741 "symphony") id=106 ;;
742 "booty bass") id=107 ;;
744 "porn groove") id=109 ;;
746 "slow jam") id=111 ;;
750 "folklore") id=115 ;;
752 "power ballad") id=117 ;;
753 "rhythmic soul") id=118 ;;
754 "freestyle") id=119 ;;
756 "punk rock") id=121 ;;
757 "drum solo") id=122 ;;
758 "a capella") id=123 ;;
759 "euro-house") id=124 ;;
760 "dance hall") id=125 ;;
762 "drum & bass") id=127 ;;
763 "club-house") id=128 ;;
764 "hardcore") id=129 ;;
768 "negerpunk") id=133 ;;
769 "polsk punk") id=134 ;;
771 "christian gangsta rap") id=136 ;;
772 "heavy metal") id=137 ;;
773 "black metal") id=138 ;;
774 "crossover") id=139 ;;
775 "contemporary christian")id=140 ;;
776 "christian rock") id=141 ;;
777 "merengue") id=142 ;;
779 "thrash metal") id=144 ;;
782 "synthpop") id=147 ;;
783 "rock/pop"|"rock / pop") id=148 ;;
790 # do_tag [tracknumber]
791 # id3 tags a filename
793 # TRACKS, TRACKNAME, TRACKARTIST, TAGGER, TAGGEROPTS, VORBISCOMMENT, METAFLAC,
794 # COMMENT, DALBUM, DARTIST, CDYEAR, CDGENRE
797 COMMENTOUTPUT="$(eval echo ${COMMENT})"
798 if [ -z "$COMMENTOUTPUT" ]; then
799 COMMENTOUTPUT="$(getcddbinfo TRACK-INFO)"
801 if [ "$CDDBMETHOD" = "cddb" ]; then
802 CDDBDISCID=$(echo $TRACKINFO | cut -d' ' -f1)
804 run_command '' echo "Tagging track $1 of $TRACKS: $TRACKNAME..."
805 # If we want to start the tracks with a given number, we need to modify the
806 # TRACKNUM value before evaluation
807 if [ -n "$STARTTRACKNUMBERTAG" ] ; then
810 for OUTPUT in $(echo $OUTPUTTYPE | tr , \ )
814 # id3v2 v0.1.9 claims to have solved the -c bug, so we merge both id3 and id3v2
815 GENREID=$(do_getgenreid "${CDGENRE}")
816 # Set TPE2 in case we have a Various Artists rip.
818 if [ "$VARIOUSARTISTS" = "y" ]; then
824 run_command tagtrack-$OUTPUT-$1 nice $ENCNICE \
825 $TAGGER $TAGGEROPTS -c "$COMMENTOUTPUT" \
826 -A "$DALBUM" -a "$TRACKARTIST" -t "$TRACKNAME" \
827 -y "$CDYEAR" -g "$GENREID" \
828 -T "${TRACKNUM:-$1}" \
829 "$ABCDETEMPDIR/track$1.$OUTPUT"
832 # FIXME # track numbers in mp3 come with 1/10, so we cannot
833 # happily substitute them with $TRACKNUM
834 run_command tagtrack-$OUTPUT-$1 nice $ENCNICE \
835 $TAGGER $TAGGEROPTS -c "$COMMENTOUTPUT" \
836 -A "$DALBUM" -a "$TRACKARTIST" -t "$TRACKNAME" \
837 -y "$CDYEAR" -g "$GENREID" \
838 -T "${TRACKNUM:-$1}/$TRACKS" \
839 ${TPE2:+--TPE2 "$TPE2"} \
840 "$ABCDETEMPDIR/track$1.$OUTPUT"
843 # FIXME # track numbers in mp3 come with 1/10, so we cannot
844 # happily substitute them with $TRACKNUM
845 run_command tagtrack-$OUTPUT-$1 nice $ENCNICE \
846 $TAGGER $TAGGEROPTS -c "$COMMENTOUTPUT" \
847 -A "$DALBUM" -a "$TRACKARTIST" -s "$TRACKNAME" \
848 -y "$CDYEAR" -g "$GENREID" \
849 -t "${TRACKNUM:-$1}" ${TRACKNUM:+-T "$TRACKS"} \
850 "$ABCDETEMPDIR/track$1.$OUTPUT"
853 # FIXME # track numbers in mp3 come with 1/10, so we cannot
854 # happily substitute them with $TRACKNUM
856 eyed3_06) addopts=( \
857 ${ENCODING:+--set-encoding="$ENCODING"} \
858 ${TPE2:+--set-text-frame=TPE2:"$TPE2"} \
859 # We set 'recording-date' so the date tag will show
860 # in Audacious, vlc and friends... Andrew.
861 ${CDYEAR:+--set-text-frame="TDRC:$CDYEAR"} \
862 ${COMMENTOUTPUT:+--comment=::"$COMMENTOUTPUT"} \
865 ${ENCODING:+--encoding="$ENCODING"} \
866 ${TPE2:+--text-frame=TPE2:"$TPE2"} \
867 # We set 'recording-date' so the date tag will show
868 # in Audacious, vlc and friends... Andrew.
869 ${CDYEAR:+--text-frame="TDRC:$CDYEAR"} \
870 ${COMMENTOUTPUT:+--comment "$COMMENTOUTPUT"} \
873 run_command tagtrack-$OUTPUT-$1 nice $ENCNICE $TAGGER $TAGGEROPTS \
875 -a "$TRACKARTIST" -t "$TRACKNAME" \
876 -G "$GENREID" -n "${TRACKNUM:-$1}" \
877 ${TRACKNUM:+-N "$TRACKS"} \
879 "$ABCDETEMPDIR/track$1.$OUTPUT"
882 log error "Internal error: ID3SYNTAX has an illegal value"
888 case "$OGGENCODERSYNTAX" in
890 # vorbiscomment can't do in-place modification, mv the file first
891 if [ -f "$ABCDETEMPDIR/track$1.$OGGOUTPUTCONTAINER" -a ! -f "$ABCDETEMPDIR/track$1.uncommented.$OGGOUTPUTCONTAINER" ]; then
892 mv "$ABCDETEMPDIR/track$1.$OGGOUTPUTCONTAINER" "$ABCDETEMPDIR/track$1.uncommented.$OGGOUTPUTCONTAINER"
896 # https://www.xiph.org/vorbis/doc/v-comment.html
898 echo ARTIST="$TRACKARTIST"
900 echo TITLE="$TRACKNAME"
901 if [ -n "$CDYEAR" ]; then
904 if [ -n "$CDGENRE" ]; then
905 echo GENRE="$CDGENRE"
907 echo TRACKNUMBER=${TRACKNUM:-$1}
908 # TRACKTOTAL is not in the proposed, minimal list of standard field names from
909 # xiph.org: https://www.xiph.org/vorbis/doc/v-comment.html but is in common usage
910 # and read by mediainfo, ffprobe, vlc, Aqualung, ogg123, Foobar. And now abcde :)
911 # The tag is quietly ignored by Audacious, MPlayer, mpv, XMMS....
912 echo TRACKTOTAL="${TRACKS}"
913 if [ -n "$DISCNUMBER" ]; then
914 echo DISCNUMBER="$DISCNUMBER"
916 echo CDDB=$CDDBDISCID
917 if [ "$(eval echo ${COMMENT})" != "" ]; then
918 case "$COMMENTOUTPUT" in
919 *=*) echo "$COMMENTOUTPUT";;
920 *) echo COMMENT="$COMMENTOUTPUT";;
923 ) | run_command tagtrack-$OUTPUT-$1 nice $ENCNICE \
924 $VORBISCOMMENT $VORBISCOMMENTOPTS -w \
925 "$ABCDETEMPDIR/track$1.uncommented.$OGGOUTPUTCONTAINER" "$ABCDETEMPDIR/track$1.$OGGOUTPUTCONTAINER"
926 # Doublecheck that the commented file was created
927 # successfully before wiping the original
928 if [ -f "$ABCDETEMPDIR/track$1.$OGGOUTPUTCONTAINER" ]; then
929 rm -f "$ABCDETEMPDIR/track$1.uncommented.$OGGOUTPUTCONTAINER"
931 mv "$ABCDETEMPDIR/track$1.uncommented.$OGGOUTPUTCONTAINER" "$ABCDETEMPDIR/track$1.$OGGOUTPUTCONTAINER"
937 run_command tagtrack-$OUTPUT-$1 true
940 run_command tagtrack-$OUTPUT-$1 true
944 echo ARTIST="$TRACKARTIST"
946 echo TITLE="$TRACKNAME"
947 if [ -n "$CDYEAR" ]; then
950 if [ -n "$CDGENRE" ]; then
951 echo GENRE="$CDGENRE"
953 echo TRACKNUMBER="${TRACKNUM:-$1}"
954 # TRACKTOTAL is not in the proposed, minimal list of standard field names from
955 # xiph.org: https://www.xiph.org/vorbis/doc/v-comment.html but is in common usage
956 # and read by mediainfo, ffprobe, vlc, Aqualung, ogg123, Foobar. And now abcde :)
957 # The tag is quietly ignored by Audacious, MPlayer, mpv, XMMS....
958 echo TRACKTOTAL="${TRACKS}"
959 if [ -n "$DISCNUMBER" ]; then
960 echo DISCNUMBER="$DISCNUMBER"
962 echo CDDB="$CDDBDISCID"
963 if [ "$(eval echo ${COMMENT})" != "" ]; then
964 case "$COMMENTOUTPUT" in
965 *=*) echo "$COMMENTOUTPUT";;
966 *) echo COMMENT="$COMMENTOUTPUT";;
969 ) | run_command tagtrack-$OUTPUT-$1 nice $ENCNICE $METAFLAC $METAFLACOPTS ${IMPORTCUESHEET:+--import-cuesheet-from="$ABCDETEMPDIR/$CUEFILE"} \
970 --import-tags-from=- "$ABCDETEMPDIR/track$1.$FLACOUTPUTCONTAINER"
973 run_command tagtrack-$OUTPUT-$1 true
976 run_command tagtrack-$OUTPUT-$1 true
979 run_command tagtrack-$OUTPUT-$1 true
982 # This tagging syntax is suitable for Robert Muth's application 'apetag', the Monkey's Audio
983 # Console port (mac) used for encoding does not have the ability to tag.
984 run_command tagtrack-$OUTPUT-$1 nice $ENCNICE "$APETAG" -i "$ABCDETEMPDIR/track$1.ape" -m overwrite \
985 -p artist="$TRACKARTIST" -p album="$DALBUM" -p title="$TRACKNAME" -p track=${TRACKNUM:-$1} \
986 -p year="$CDYEAR" -p genre="$CDGENRE" ${COMMENTOUTPUT:+-p comment="$COMMENTOUTPUT"}
989 # Using Mutagen's mid3v2 for tagging with id3v2.4.0. Interesting enough vlc, MPlayer and XMMS ignore
990 # these tags but they are read by Audacious, Xine, Aqualung, mediainfo, ffplay, ffprobe. FFmpeg does
991 # not currently tag mp2 audio so twolame and FFmpeg will both use mid3v2...
992 run_command tagtrack-$OUTPUT-$1 nice $ENCNICE "$MID3V2" --verbose -A "$DALBUM" -a "$TRACKARTIST" -t "$TRACKNAME" \
993 -y "$CDYEAR" -g "$CDGENRE" -T "${TRACKNUM:-$1}/$TRACKS" ${TPE2:+--TPE2 "$TPE2"} ${COMMENTOUTPUT:+--comment="$COMMENTOUTPUT"} \
994 "$ABCDETEMPDIR/track$1.mp2"
997 run_command tagtrack-$OUTPUT-$1 true
1000 case "$AACENCODERSYNTAX" in
1002 # We will use inline tagging...
1003 run_command tagtrack-$OUTPUT-$1 true
1006 # Tag post encode with neroAacTag...
1007 run_command tagtrack-$OUTPUT-$1 nice $ENCNICE "$NEROAACTAG" "$ABCDETEMPDIR/track$1.m4a" \
1008 -meta:artist="$TRACKARTIST" -meta:album="$DALBUM" -meta:title="$TRACKNAME" -meta:track=${TRACKNUM:-$1} \
1009 -meta:year="$CDYEAR" -meta:genre="$CDGENRE" -meta:comment="$COMMENT"
1012 run_command tagtrack-$OUTPUT-$1 true
1015 run_command tagtrack-$OUTPUT-$1 true
1018 # Tag post encode with AtomicParsley. Note that previous problems with seg fault when using
1019 # 'overWrite' cannot be reproduced with newer versions: https://bitbucket.org/wez/atomicparsley
1020 run_command tagtrack-$OUTPUT-$1 nice $ENCNICE "$ATOMICPARSLEY" "$ABCDETEMPDIR/track$1.m4a" \
1021 --artist="$TRACKARTIST" --album="$DALBUM" --title="$TRACKNAME" --tracknum=${TRACKNUM:-$1} \
1022 --year="$CDYEAR" --genre="$CDGENRE" --comment="$COMMENT" $ATOMICPARSLEYOPTS --overWrite
1025 run_command tagtrack-$OUTPUT-$1 true
1030 # We use mid3v2 tagging for True Audio:
1031 run_command tagtrack-$OUTPUT-$1 nice $ENCNICE "$MID3V2" --verbose -A "$DALBUM" -a "$TRACKARTIST" -t "$TRACKNAME" \
1032 -y "$CDYEAR" -g "$CDGENRE" -T "${TRACKNUM:-$1}/$TRACKS" ${TPE2:+--TPE2 "$TPE2"} ${COMMENTOUTPUT:+--comment="$COMMENTOUTPUT"} \
1033 "$ABCDETEMPDIR/track$1.tta"
1036 run_command tagtrack-$OUTPUT-$1 true
1040 if checkerrors "tagtrack-(.{3,6})-$1"; then :; else
1041 run_command tagtrack-$1 true
1047 # OUTPUTTYPE, {FOO}ENCODERSYNTAX, ENCNICE, ENCODER, ENCODEROPTS
1050 # The commands here don't go through run_command because they're never
1051 # supposed to be silenced
1052 echo "Encoding gapless MP3 tracks: $TRACKQUEUE"
1053 for OUTPUT in $(echo $OUTPUTTYPE | tr , \ )
1057 case "$MP3ENCODERSYNTAX" in
1062 for UTRACKNUM in $TRACKQUEUE
1064 TRACKFILES="$TRACKFILES track$UTRACKNUM.wav"
1066 nice $ENCNICE $MP3ENCODER $MP3ENCODEROPTS --nogap $TRACKFILES
1068 if [ "$RETURN" != "0" ]; then
1069 echo "nogap-encode: $ENCODER returned code $RETURN" >> "$ABCDETEMPDIR/errors"
1071 for UTRACKNUM in $TRACKQUEUE
1073 run_command encodetrack-$OUTPUT-$UTRACKNUM true
1074 #run_command encodetrack-$UTRACKNUM true
1083 if checkerrors "nogap-encode"; then :; else
1084 if [ ! "$KEEPWAVS" = "y" ] ; then
1085 if [ ! "$KEEPWAVS" = "move" ] ; then
1090 # Other encoders fall through to normal encoding as the tracks have not
1091 # been entered in the status file.
1094 # do_encode [tracknumber] [hostname]
1095 # If no hostname is specified, encode locally
1097 # TRACKS, TRACKNAME, TRACKARTIST, DISTMP3, DISTMP3OPTS, {FOO}ENCODERSYNTAX, OUTPUTTYPE, ENCODEROPTS,
1098 # DALBUM, DARTIST, ENCNICE, CDYEAR, CDGENRE, COMMENT
1101 if [ "$USEPIPES" = "y" ]; then
1104 TEMPARG="PIPE_$MP3ENCODERSYNTAX"
1107 TEMPARG="PIPE_$OGGENCODERSYNTAX"
1110 TEMPARG="PIPE_$OPUSENCODERSYNTAX"
1113 TEMPARG="PIPE_$MKAENCODERSYNTAX"
1116 TEMPARG="PIPE_$FLACENCODERSYNTAX"
1119 TEMPARG="PIPE_$SPEEXENCODER"
1122 TEMPARG="PIPE_$MPCENCODER"
1125 TEMPARG="PIPE_$WVENCODERSYNTAX"
1128 TEMPARG="PIPE_$TTAENCODERSYNTAX"
1131 TEMPARG="PIPE_$AACENCODERSYNTAX"
1134 TEMPARG="PIPE_$AACENCODERSYNTAX"
1137 IN="$( eval echo "\$$TEMPARG" )"
1139 IN="$ABCDETEMPDIR/track$1.wav"
1141 # We need IN to proceed, if we are not using pipes.
1142 if [ -s "$IN" -o X"$USEPIPES" = "Xy" ] ; then
1143 for TMPOUTPUT in $(echo $OUTPUTTYPE | tr , \ )
1145 case "$TMPOUTPUT" in
1147 OUTPUT=$OGGOUTPUTCONTAINER
1150 OUTPUT=$OPUSOUTPUTCONTAINER
1153 OUTPUT=$MKAOUTPUTCONTAINER
1156 OUTPUT=$FLACOUTPUTCONTAINER
1162 OUT="$ABCDETEMPDIR/track$1.$OUTPUT"
1163 if [ "$NOGAP" = "y" ] && checkstatus encodetrack-$OUTPUT-$1 ; then
1166 if [ X"$USEPIPES" = "Xy" ]; then
1168 # We need a way to store the creation of the files when using PIPES
1169 RUN_COMMAND_PIPES="run_command encodetrack-$OUTPUT-$1 true"
1170 # When piping it does not make sense to have a higher nice for
1171 # reading than for encoding, since it will be hold by the
1172 # encoding process. Setting an effective nice, to calm down a
1173 # bit the reading process.
1174 EFFECTIVE_NICE=$READNICE
1176 run_command '' echo "Encoding track $1 of $TRACKS: $TRACKNAME..."
1177 RUN_COMMAND="run_command encodetrack-$OUTPUT-$1"
1178 EFFECTIVE_NICE=$ENCNICE
1184 case "$MP3ENCODERSYNTAX" in
1185 lame|gogo) $RUN_COMMAND nice $EFFECTIVE_NICE $MP3ENCODER $MP3ENCODEROPTS "$IN" "$OUT" ;;
1186 bladeenc) $RUN_COMMAND nice $EFFECTIVE_NICE $MP3ENCODER $MP3ENCODEROPTS -quit "$IN" "$OUT" ;;
1187 l3enc|xingmp3enc) $RUN_COMMAND nice $EFFECTIVE_NICE $MP3ENCODER "$IN" "$OUT" $MP3ENCODEROPTS ;;
1188 mp3enc) $RUN_COMMAND nice $EFFECTIVE_NICE $MP3ENCODER -if "$IN" -of "$OUT" $MP3ENCODEROPTS ;;
1192 $RUN_COMMAND nice $DISTMP3NICE $DISTMP3 $DISTMP3OPTS "$2" "$IN" "$OUT" >/dev/null 2>&1
1199 case "$OGGENCODERSYNTAX" in
1200 vorbize) $RUN_COMMAND nice $EFFECTIVE_NICE $OGGENCODER $OGGENCODEROPTS -w "$OUT" "$IN" ;;
1201 oggenc) $RUN_COMMAND nice $EFFECTIVE_NICE $OGGENCODER $OGGENCODEROPTS -o "$OUT" "$IN" ;;
1205 $RUN_COMMAND nice $DISTMP3NICE $DISTMP3 $DISTMP3OPTS "$2" "$IN" "$OUT" >/dev/null 2>&1
1212 case "$OPUSENCODERSYNTAX" in
1214 # Tag the file at encode time, as it can't be done after encoding.
1215 if [ "$DOTAG" = "y" ]; then
1216 $RUN_COMMAND nice $EFFECTIVE_NICE $OPUSENCODER $OPUSENCODEROPTS --artist "$TRACKARTIST" \
1217 --album "$DALBUM" --title "$TRACKNAME" --genre "$CDGENRE" --date "$CDYEAR" --comment TRACKNUMBER="$1" \
1218 ${COMMENT:+--comment COMMENT="$COMMENT"} "$IN" "$OUT"
1220 $RUN_COMMAND nice $EFFECTIVE_NICE $OPUSENCODER $OPUSENCODEROPTS "$IN" "$OUT"
1226 $RUN_COMMAND nice $DISTMP3NICE $DISTMP3 $DISTMP3OPTS "$2" "$IN" "$OUT" >/dev/null 2>&1
1231 case "$MKAENCODERSYNTAX" in
1233 if [ "$DOTAG" = "y" ]; then
1234 $RUN_COMMAND nice $EFFECTIVE_NICE $MKAENCODER -i "$IN" $MKAENCODEROPTS -metadata artist="$TRACKARTIST" \
1235 -metadata album="$DALBUM" -metadata title="$TRACKNAME" -metadata track=${TRACKNUM:-$1} -metadata date="$CDYEAR" \
1236 -metadata genre="$CDGENRE" -metadata comment="$COMMENT" "$OUT"
1238 $RUN_COMMAND nice $EFFECTIVE_NICE $MKAENCODER -i "$IN" $MKAENCODEROPTS "$OUT"
1246 case "$FLACENCODERSYNTAX" in
1247 flac) $RUN_COMMAND nice $EFFECTIVE_NICE $FLACENCODER -f $FLACENCODEROPTS -o "$OUT" "$IN" ;;
1252 vecho "$DISTMP3 $DISTMP3OPTS $2 $IN $OUT >/dev/null 2>&1"
1253 $RUN_COMMAND nice $DISTMP3NICE $DISTMP3 $DISTMP3OPTS "$2" "$IN" "$OUT" > /dev/null 2>&1
1258 if [ "$(eval echo ${COMMENT})" != "" ]; then
1261 *) COMMENT="COMMENT=$COMMENT" ;;
1264 # Tag the file at encode time, as it can't be done after encoding.
1265 if [ "$DOTAG" = "y" ]; then
1266 $RUN_COMMAND nice $EFFECTIVE_NICE $SPEEXENCODER $SPEEXENCODEROPTS --author "$TRACKARTIST" --title "$TRACKNAME" \
1267 ${COMMENT:+--comment "$COMMENT"} "$IN" "$OUT"
1269 $RUN_COMMAND nice $EFFECTIVE_NICE $SPEEXENCODER $SPEEXENCODEROPTS "$IN" "$OUT"
1273 # Tag the file inline at encode time.
1274 if [ "$DOTAG" = "y" ]; then
1275 $RUN_COMMAND nice $EFFECTIVE_NICE $MPCENCODER $MPCENCODEROPTS --artist "$TRACKARTIST" --album "$DALBUM" \
1276 --title "$TRACKNAME" --track "$1" --genre "$CDGENRE" --year "$CDYEAR" ${COMMENT:+--comment "$COMMENT"} "$IN" "$OUT"
1278 $RUN_COMMAND nice $EFFECTIVE_NICE $MPCENCODER $MPCENCODEROPTS "$IN" "$OUT"
1282 case "$TTAENCODERSYNTAX" in
1283 # tta is the newer version with a small syntax change...
1285 $RUN_COMMAND nice $EFFECTIVE_NICE $TTAENCODER -e $TTAENCODEROPTS "$IN" "$OUT"
1288 $RUN_COMMAND nice $EFFECTIVE_NICE $TTAENCODER -e $TTAENCODEROPTS "$IN" -o "$OUT"
1293 case "$WVENCODERSYNTAX" in
1295 if [ "$DOTAG" = "y" ]; then
1296 $RUN_COMMAND nice $EFFECTIVE_NICE $WVENCODER $WVENCODEROPTS -w Artist="$TRACKARTIST" -w Album="$DALBUM" \
1297 -w Title="$TRACKNAME" -w Track="$1" -w Genre="$CDGENRE" -w Year="$CDYEAR" ${COMMENT:+-w Comment="$COMMENT"} "$IN" -o "$OUT"
1299 $RUN_COMMAND nice $EFFECTIVE_NICE $WVENCODER $WVENCODEROPTS "$IN" -o "$OUT"
1303 if [ "$DOTAG" = "y" ]; then
1304 $RUN_COMMAND nice $EFFECTIVE_NICE $WVENCODER -i "$IN" $WVENCODEROPTS -metadata artist="$TRACKARTIST" \
1305 -metadata album="$DALBUM" -metadata title="$TRACKNAME" -metadata track=${TRACKNUM:-$1} -metadata date="$CDYEAR" \
1306 -metadata genre="$CDGENRE" -metadata comment="$COMMENT" "$OUT"
1308 $RUN_COMMAND nice $EFFECTIVE_NICE $WVENCODER -i "$IN" $WVENCODEROPTS "$OUT"
1314 $RUN_COMMAND nice $EFFECTIVE_NICE $APENCODER "$IN" "$OUT" $APENCODEROPTS
1317 case "$MP2ENCODERSYNTAX" in
1319 $RUN_COMMAND nice $EFFECTIVE_NICE $MP2ENCODER $MP2ENCODEROPTS "$IN" "$OUT"
1322 $RUN_COMMAND nice $EFFECTIVE_NICE $MP2ENCODER -i "$IN" $MP2ENCODEROPTS "$OUT"
1327 # aac container is only used to catch faac encoded files where faac
1328 # is compiled without mp4 support (with libmp4v2).
1329 $RUN_COMMAND nice $EFFECTIVE_NICE $AACENCODER $AACENCODEROPTS -o "$OUT" "$IN"
1332 case "$AACENCODERSYNTAX" in
1334 if [ "$DOTAG" = "y" ]; then
1335 $RUN_COMMAND nice $EFFECTIVE_NICE $AACENCODER $AACENCODEROPTS --artist "$TRACKARTIST" --album "$DALBUM" \
1336 --title "$TRACKNAME" --track ${TRACKNUM:-$1} --year "$CDYEAR" --genre "$CDGENRE" --comment "$COMMENT" -o "$OUT" "$IN"
1338 $RUN_COMMAND nice $EFFECTIVE_NICE $AACENCODER $AACENCODEROPTS -o "$OUT" "$IN"
1342 $RUN_COMMAND nice $EFFECTIVE_NICE $AACENCODER $AACENCODEROPTS -if "$IN" -of "$OUT"
1345 if [ "$DOTAG" = "y" ]; then
1346 $RUN_COMMAND nice $EFFECTIVE_NICE $AACENCODER $AACENCODEROPTS --artist "$TRACKARTIST" --album "$DALBUM" \
1347 --title "$TRACKNAME" --track "$1" --genre "$CDGENRE" --date "$CDYEAR" --comment "$COMMENT" "$IN" -o "$OUT"
1349 $RUN_COMMAND nice $EFFECTIVE_NICE $AACENCODER $AACENCODEROPTS "$IN" -o "$OUT"
1353 if [ "$DOTAG" = "y" ]; then
1354 $RUN_COMMAND nice $EFFECTIVE_NICE $WINE $AACENCODER $AACENCODEROPTS --artist "$TRACKARTIST" --album "$DALBUM" \
1355 --title "$TRACKNAME" --track ${TRACKNUM:-$1} --date "$CDYEAR" --genre "$CDGENRE" --comment "$COMMENT" -o "$OUT" "$IN"
1357 $RUN_COMMAND nice $EFFECTIVE_NICE $WINE $AACENCODER $AACENCODEROPTS -o "$OUT" "$IN"
1361 $RUN_COMMAND nice $EFFECTIVE_NICE $WINE $AACENCODER $AACENCODEROPTS "$IN" "$OUT"
1364 if [ "$DOTAG" = "y" ]; then
1365 $RUN_COMMAND nice $EFFECTIVE_NICE $AACENCODER -i "$IN" $AACENCODEROPTS -metadata artist="$TRACKARTIST" \
1366 -metadata album="$DALBUM" -metadata title="$TRACKNAME" -metadata track=${TRACKNUM:-$1} -metadata date="$CDYEAR" \
1367 -metadata genre="$CDGENRE" -metadata comment="$COMMENT" "$OUT"
1369 $RUN_COMMAND nice $EFFECTIVE_NICE $AACENCODER -i "$IN" $AACENCODEROPTS "$OUT"
1375 # In case of wav output we need nothing. Just keep the wavs.
1376 # But we need the following to allow full logging and subsequent
1377 # successful cleaning of $ABCDETEMPDIR.
1378 echo "encodetrack-$OUTPUT-$UTRACKNUM" >> "$ABCDETEMPDIR/status"
1383 # Only remove .wav if the encoding succeeded
1384 if checkerrors "encodetrack-(.{3,6})-$1"; then :; else
1385 run_command encodetrack-$1 true
1386 if [ ! "$KEEPWAVS" = "y" ] ; then
1387 if [ ! "$KEEPWAVS" = "move" ] ; then
1393 run_command "" echo "HEH! The file we were about to encode disappeared:"
1394 run_command "" echo ">> $IN"
1395 run_command encodetrack-$1 false
1399 # do_preprocess [tracknumber]
1401 # TRACKS, TRACKNAME, TRACKARTIST, DISTMP3, DISTMP3OPTS, {FOO}ENCODERSYNTAX, OUTPUTTYPE, ENCODEROPTS, DALBUM, DARTIST, ENCNICE, CDYEAR, CDGENRE, COMMENT
1404 # IN="$ABCDETEMPDIR/track$1.wav"
1405 # # We need IN to proceed.
1406 # if [ -s "$IN" ] ; then
1407 # for OUTPUT in $(echo $OUTPUTTYPE | tr , \ )
1409 # #OUT="$ABCDETEMPDIR/track$1.$OUTPUT"
1410 # run_command '' echo "Pre-processing track $1 of $TRACKS..."
1411 # case "$POSTPROCESSFORMAT" in
1413 # run_command preprocess-$OUTPUT-$1 nice $PRENICE $WAV_PRE $IF $OF ;;
1415 # run_command preprocess-$OUTPUT-$1 nice $PRENICE $MP3_PRE $IF $OF ;;
1417 # run_command preprocess-$OUTPUT-$1 nice $PRENICE $OGG_PRE $IF $OF ;;
1419 # run_command preprocess-$OUTPUT-$1 nice $PRENICE $FLAC_PRE $IF $OF ;;
1421 # run_command preprocess-$OUTPUT-$1 nice $PRENICE $SPX_PRE $IF $OF ;;
1424 # # Only remove .wav if the encoding succeeded
1425 # if checkerrors "preprocess-(.{3,4})-$1"; then
1426 # run_command preprocess-$1 false
1428 # run_command preprocess-$1 true
1431 # if [ "$(checkstatus encode-output)" = "loud" ]; then
1432 # echo "HEH! The file we were about to pre-process disappeared:"
1435 # run_command preprocess-$1 false
1440 # do_postprocess [tracknumber]
1442 # TRACKS, TRACKNAME, TRACKARTIST, DISTMP3, DISTMP3OPTS, {FOO}ENCODERSYNTAX, OUTPUTTYPE, ENCODEROPTS, DALBUM, DARTIST, ENCNICE, CDYEAR, CDGENRE, COMMENT
1445 # for POSTPROCESSFORMAT in $(echo $POSTPROCESSFORMATS | tr , \ )
1447 # IN="$ABCDETEMPDIR/track$1.$POSTPROCESSFORMAT"
1448 # # We need IN to proceed.
1449 # if [ -s "$IN" ] ; then
1450 # #OUT="$ABCDETEMPDIR/track$1.$OUTPUT"
1451 # run_command '' echo "Post-processing track $1 of $TRACKS..."
1452 # case "$POSTPROCESSFORMAT" in
1454 # run_command postprocess-$OUTPUT-$1 nice $POSTNICE $MP3_POST $IF $OF ;;
1456 # run_command postprocess-$OUTPUT-$1 nice $POSTNICE $OGG_POST $IF $OF ;;
1458 # run_command postprocess-$OUTPUT-$1 nice $POSTNICE $FLAC_POST $IF $OF ;;
1460 # run_command postprocess-$OUTPUT-$1 nice $POSTNICE $SPX_POST $IF $OF ;;
1462 # # Only remove .wav if the encoding succeeded
1463 # if checkerrors "postprocess-(.{3,4})-$1"; then
1464 # run_command postprocess-$1 false
1466 # run_command postprocess-$1 true
1469 # if [ "$(checkstatus encode-output)" = "loud" ]; then
1470 # echo "HEH! The file we were about to post-process disappeared:"
1473 # run_command postprocess-$1 false
1488 # MP3GAIN, MP3GAINOPTS, VORBISGAIN, VORBISGAINOPTS, MPCGAIN
1492 # The commands here don't go through run_command because they're never supposed to be silenced
1493 echo "Batch analizing gain in tracks: $TRACKQUEUE"
1498 for UTRACKNUM in $TRACKQUEUE
1500 MP3FILES="$TRACKFILES track$UTRACKNUM.mp3"
1502 # FIXME # Hard-coded batch option!
1503 $NORMALIZER -b $NORMALIZEROPTS $TRACKFILES
1505 if [ "$RETURN" != "0" ]; then
1506 echo "batch-normalize: $NORMALIZER returned code $RETURN" >> "$ABCDETEMPDIR/errors"
1508 for UTRACKNUM in $TRACKQUEUE
1510 echo "normalizetrack-$UTRACKNUM" >> "$ABCDETEMPDIR/status"
1516 # do_batch_normalize
1518 # NORMALIZER, NORMALIZEROPTS
1519 do_batch_normalize ()
1521 # The commands here don't go through run_command because they're never supposed to be silenced
1522 echo "Batch normalizing tracks: $TRACKQUEUE"
1527 for UTRACKNUM in $TRACKQUEUE
1529 TRACKFILES="$TRACKFILES track$UTRACKNUM.wav"
1531 # XXX: Hard-coded batch option!
1532 $NORMALIZER -b $NORMALIZEROPTS $TRACKFILES
1534 if [ "$RETURN" != "0" ]; then
1535 echo "batch-normalize: $NORMALIZER returned code $RETURN" >> "$ABCDETEMPDIR/errors"
1537 for UTRACKNUM in $TRACKQUEUE
1539 echo "normalizetrack-$UTRACKNUM" >> "$ABCDETEMPDIR/status"
1545 # do_normalize [tracknumber]
1547 # TRACKS, TRACKNAME, NORMALIZER, NORMALIZEROPTS
1550 IN="$ABCDETEMPDIR/track$1.wav"
1551 if [ -e "$IN" ] ; then
1552 run_command '' echo "Normalizing track $1 of $TRACKS: $TRACKNAME..."
1553 run_command normalizetrack-$1 $NORMALIZER $NORMALIZEROPTS "$IN"
1555 if [ "$(checkstatus encode-output)" = "loud" ]; then
1556 echo "HEH! The file we were about to normalize disappeared:"
1559 run_command normalizetrack-$1 false "File $IN was not found"
1563 # do_move [tracknumber]
1564 # Deduces the outfile from environment variables
1565 # Creates directory if necessary
1567 # TRACKNUM, TRACKNAME, TRACKARTIST, DALBUM, OUTPUTFORMAT, CDGENRE, CDYEAR
1570 for TMPOUTPUT in $(echo $OUTPUTTYPE | tr , \ )
1572 # For now, set OUTPUT as TMPOUTPUT, and then change it once we have
1573 # defined the OUTPUTFILE:
1576 # Create ALBUMFILE, ARTISTFILE, TRACKFILE
1577 ALBUMFILE="$(mungealbumname "$DALBUM")"
1578 ARTISTFILE="$(mungeartistname "$TRACKARTIST")"
1579 TRACKFILE="$(mungetrackname "$TRACKNAME")"
1580 GENRE="$(mungegenre "$GENRE")"
1581 YEAR=${CDYEAR:-$CDYEAR}
1582 # If we want to start the tracks with a given number, we need to modify
1583 # the TRACKNUM value before evaluation
1585 # Supported variables for OUTPUTFORMAT are GENRE, YEAR, ALBUMFILE,
1586 # ARTISTFILE, TRACKFILE, and TRACKNUM.
1587 if [ "$ONETRACK" = "y" ]; then
1588 if [ "$VARIOUSARTISTS" = "y" ]; then
1589 OUTPUTFILE="$(eval echo \""$VAONETRACKOUTPUTFORMAT"\")"
1591 OUTPUTFILE="$(eval echo \""$ONETRACKOUTPUTFORMAT"\")"
1594 if [ "$VARIOUSARTISTS" = "y" ]; then
1595 OUTPUTFILE="$(eval echo \""$VAOUTPUTFORMAT"\")"
1597 OUTPUTFILE="$(eval echo \""$OUTPUTFORMAT"\")"
1600 if checkerrors "tagtrack-$OUTPUT-$1"; then :; else
1601 # Once we know the specific output was successful, we can change
1602 # the OUTPUT to the value containing the container
1605 OUTPUT=$OGGOUTPUTCONTAINER
1608 OUTPUT=$OPUSOUTPUTCONTAINER
1611 OUTPUT=$MKAOUTPUTCONTAINER
1614 OUTPUT=$FLACOUTPUTCONTAINER
1620 # Check that the directory for OUTPUTFILE exists, if it doesn't, create it
1621 OUTPUTFILEDIR="$(dirname "$OUTPUTDIR/$OUTPUTFILE")"
1624 if [ "$DOCLEAN" != "y" ] && [ "$FORCE" != "y" ]; then
1625 # FIXME # introduce warnings?
1628 # mkdir -p shouldn't return an error if the directory already exists
1629 mkdir -p "$OUTPUTFILEDIR"
1630 run_command movetrack-$1 mv "$ABCDETEMPDIR/track$1.$OUTPUT" "$OUTPUTDIR/$OUTPUTFILE.$OUTPUT"
1631 if checkstatus movetrack-output-$OUTPUT; then :; else
1632 run_command movetrack-output-$OUTPUT true
1637 # mkdir -p shouldn't return an error if the directory already exists
1638 mkdir -p "$OUTPUTFILEDIR"
1639 run_command movetrack-$1 mv "$ABCDETEMPDIR/track$1.$OUTPUT" "$OUTPUTDIR/$OUTPUTFILE.$OUTPUT"
1640 if checkstatus movetrack-output-$OUTPUT; then :; else
1641 run_command movetrack-output-$OUTPUT true
1645 # Lets move the cue file
1646 if CUEFILE=$(checkstatus cuefile) >/dev/null ; then
1647 if [ -r "$ABCDETEMPDIR/$CUEFILE" ]; then
1648 if checkstatus movecue-$OUTPUT; then :; else
1649 # Silence the Copying output since it overlaps with encoding processes...
1650 #run_command '' vecho "Copying cue file to its destination directory..."
1651 if checkstatus onetrack >/dev/null ; then
1654 if [ "$DOCLEAN" != "y" ] && [ "$FORCE" != "y" ]; then
1655 # We dont have the dir, since it was not created before.
1658 run_command movecue-$OUTPUT cp "$ABCDETEMPDIR/$CUEFILE" "$OUTPUTDIR/$OUTPUTFILE.cue"
1661 # NOTE: Creating a cue file with the 3-char-extension files is to comply with
1662 # http://brianvictor.tripod.com/mp3cue.htm#details
1663 [a-z0-9][a-z0-9][a-z0-9])
1664 run_command movecue-$OUTPUT cp "$ABCDETEMPDIR/$CUEFILE" "$OUTPUTDIR/$OUTPUTFILE.cue"
1667 run_command movecue-$OUTPUT cp "$ABCDETEMPDIR/$CUEFILE" "$OUTPUTDIR/$OUTPUTFILE.$OUTPUT.cue"
1671 run_command movecue-$OUTPUT cp "$ABCDETEMPDIR/$CUEFILE" "$OUTPUTFILEDIR/$CUEFILE"
1673 echo movecue-$OUTPUT >> "$ABCDETEMPDIR/status"
1682 # Create the playlist if wanted
1684 # PLAYLISTFORMAT, PLAYLISTDATAPREFIX, VAPLAYLISTFORMAT, VAPLAYLISTDATAPREFIX,
1685 # VARIOUSARTISTS, OUTPUTDIR
1688 for TMPOUTPUT in $(echo $OUTPUTTYPE | tr , \ )
1692 OUTPUT=$OGGOUTPUTCONTAINER
1695 OUTPUT=$OPUSOUTPUTCONTAINER
1698 OUTPUT=$MKAOUTPUTCONTAINER
1701 OUTPUT=$FLACOUTPUTCONTAINER
1707 # Create a playlist file for the playlist data to go into.
1708 # We used to wipe it out if it existed. Now we request permission if interactive.
1709 for LASTTRACK in $TRACKQUEUE; do :; done
1710 ALBUMFILE="$(mungealbumname "$DALBUM")"
1711 ARTISTFILE="$(mungeartistname "$DARTIST")"
1712 GENRE="$(mungegenre "$GENRE")"
1713 YEAR=${CDYEAR:-$CDYEAR}
1714 if [ "$VARIOUSARTISTS" = "y" ] ; then
1715 PLAYLISTFILE="$(eval echo "$VAPLAYLISTFORMAT")"
1717 PLAYLISTFILE="$(eval echo "$PLAYLISTFORMAT")"
1719 FINALPLAYLISTDIR="$(dirname "$OUTPUTDIR/$PLAYLISTFILE")"
1720 mkdir -p "$FINALPLAYLISTDIR"
1721 if [ -s "$OUTPUTDIR/$PLAYLISTFILE" ]; then
1722 echo -n "Erase, Append to, or Keep the existing playlist file? [e/a/k] (e): " >&2
1723 if [ "$INTERACTIVE" = "y" ]; then
1724 while [ "$DONE" != "y" ]; do
1726 case $ERASEPLAYLIST in
1727 e|E|a|A|k|K) DONE=y ;;
1728 "") ERASEPLAYLIST=e ; DONE=y ;;
1736 # Once we erase the playlist, we use append to create the new one.
1737 [ "$ERASEPLAYLIST" = "e" -o "$ERASEPLAYLIST" = "E" ] && rm -f "$OUTPUTDIR/$PLAYLISTFILE" && ERASEPLAYLIST=a
1739 # The playlist does not exist, so we can safelly use append to create the new list
1742 if [ "$ERASEPLAYLIST" = "a" -o "$ERASEPLAYLIST" = "A" ]; then
1743 touch "$OUTPUTDIR/$PLAYLISTFILE"
1744 for UTRACKNUM in $TRACKQUEUE
1746 # Shares some code with do_move since the filenames have to match
1747 CDDBTRACKNUM=$(expr $UTRACKNUM - 1)
1748 getcddbinfo TRACKNAME
1750 TRACKFILE="$(mungetrackname "$TRACKNAME")"
1751 ARTISTFILE="$(mungeartistname "$TRACKARTIST")"
1752 ALBUMFILE="$(mungealbumname "$DALBUM")"
1753 # If we want to start the tracks with a given number, we need to modify the
1754 # TRACKNUM value before evaluation
1756 if [ "$VARIOUSARTISTS" = "y" ]; then
1757 OUTPUTFILE="$(eval echo \""$VAOUTPUTFORMAT\"")"
1759 OUTPUTFILE="$(eval echo \""$OUTPUTFORMAT\"")"
1761 if [ "$VARIOUSARTISTS" = "y" ]; then
1762 if [ "$VAPLAYLISTDATAPREFIX" ] ; then
1763 echo ${VAPLAYLISTDATAPREFIX}$OUTPUTFILE.$OUTPUT >> "$OUTPUTDIR/$PLAYLISTFILE"
1765 relpath "$PLAYLISTFILE", "$OUTPUTFILE.$OUTPUT" >> "$OUTPUTDIR/$PLAYLISTFILE"
1768 if [ "$PLAYLISTDATAPREFIX" ]; then
1769 echo ${PLAYLISTDATAPREFIX}$OUTPUTFILE.$OUTPUT >> "$OUTPUTDIR/$PLAYLISTFILE"
1771 relpath "$PLAYLISTFILE", "$OUTPUTFILE.$OUTPUT" >> "$OUTPUTDIR/$PLAYLISTFILE"
1776 ## this will convert the playlist to have CRLF line-endings, if specified
1777 ## (some hardware players insist on CRLF endings)
1778 if [ "$DOSPLAYLIST" = "y" ]; then
1779 awk '{sub("\r$",""); printf "%s\r\n", $0}' "$OUTPUTDIR/$PLAYLISTFILE" > "$ABCDETEMPDIR/PLAYLISTFILE.tmp"
1780 # mv -f "$ABCDETEMPDIR/PLAYLISTFILE.tmp" "$OUTPUTDIR/$PLAYLISTFILE"
1781 cat "$ABCDETEMPDIR/PLAYLISTFILE.tmp" | sed 's/\//\\/' > "$OUTPUTDIR/$PLAYLISTFILE"
1783 echo "playlistcomplete" >> "$ABCDETEMPDIR/status"
1788 # This function reads a cuefile on stdin and writes an extended
1789 # cddb query on stdout. Any PREGAP for track 1 is properly
1790 # handled, although cue files embedded in FLAC files do not
1791 # appear to properly store the PREGAP setting. :(
1792 abcde.cue2discid () {
1797 while [ $val -gt 0 ] ; do
1798 ret=$(( $ret + ( $val % 10) ))
1799 val=$(( $val / 10 ))
1809 local first second third
1810 first=$(expr ${1} + 0 )
1811 second=$(expr ${2} + 0 )
1812 third=$(expr ${3} + 0 )
1814 echo $(( ((($first * 60) + $second) * 75) + $third ))
1824 while read line ; do
1827 TRACK) i=$(( i + 1 ))
1829 INDEX) if [ "$2" -eq 1 ] ; then
1831 START=$(( $LBA + $PREGAP + $OFFSET ))
1833 X=$(cddb_sum $(( $START / 75 )) )
1837 PREGAP) PREGAP=$(msf2lba $2)
1841 LEADOUT=$(( $4 / 588 ))
1844 LEADIN=$(( $3 / 588 ))
1853 LEADOUT=$(( $LEADOUT + $LEADIN ))
1855 LENGTH=$(( $LEADOUT/75 - $TRACK1/75 ))
1856 DISCID=$(( ( $N % 255 ) * 2**24 | $LENGTH * 2**8 | $TRACKS ))
1857 printf "%08x %i" $DISCID $TRACKS
1860 while [ $j -le $TRACKS ] ; do
1861 eval echo -n "\" \$TRACK$j\""
1864 echo " $(( $LEADOUT / 75 ))"
1868 # abcde.mkcue [--wholedisk]
1869 # This creates a cuefile directly from the extended discid information
1870 # The --wholedisk option controls whether we're ripping data from the
1871 # start of track one or from the start of the disk (usually, but not
1872 # always the same thing!)
1874 # Track one leadin/pregap (if any) handeling:
1875 # --wholedisk specified:
1878 # INDEX 01 <pregap value>
1879 # Remaining track index values unchanged from disc TOC
1881 # --wholedisk not specified
1883 # PREGAP <pregap value>
1885 # Remaining track index values offset by <pregap value>
1892 printf "$1%02i:%02i:%02i\n" $(($2/4500)) $((($2/75)%60)) $(($2%75))
1895 local MODE DISCID TRACKS
1899 if [ "$1" = --wholedisc ] ; then
1905 vecho "One track is $ONETRACK"
1906 TRACKFILE="$(mungetrackname "$TRACKNAME")"
1907 ARTISTFILE="$(mungeartistname "$TRACKARTIST")"
1908 ALBUMFILE="$(mungealbumname "$DALBUM")"
1909 if [ "$ONETRACK" = "y" ]; then
1910 if [ "$VARIOUSARTISTS" = "y" ]; then
1911 CUEWAVFILE="$(eval echo \""$VAONETRACKOUTPUTFORMAT"\" | sed -e 's@^.*/@@').$OUTPUT"
1913 CUEWAVFILE="$(eval echo \""$ONETRACKOUTPUTFORMAT"\" | sed -e 's@^.*/@@').$OUTPUT"
1915 vecho "Cue wav file is $CUEWAVFILE"
1917 CUEWAVFILE="dummy.wav"
1926 echo REM DISCID $DISCID
1927 echo FILE \""$CUEWAVFILE"\" WAVE
1929 if [ $1 -ne 150 ] && [ $MODE = "PREGAP" ] ; then
1936 while [ $i -le "$TRACKS" ] ; do
1937 LBA=$(( $1 - $OFFSET ))
1938 printf " TRACK %02i AUDIO\n" $i
1939 if [ $i -eq 1 -a $1 -ne 150 ] ; then
1940 if [ $MODE = PREGAP ] ; then
1941 echomsf " PREGAP " $(($OFFSET-150))
1943 echo " INDEX 00 00:00:00"
1946 echomsf " INDEX 01 " $LBA
1953 # This essentially the start of things
1956 # Query the CD to get the track info, unless the user specified -C
1957 # or we are using some actions which do not need the CDDB data at all
1958 #if [ ! X"$EXPACTIONS" = "X" ]; then
1960 #elif [ -z "$DISCID" ]; then
1961 if [ -z "$DISCID" ]; then
1962 vecho -n "Getting CD track info... "
1963 # In OSX, unmount the disc before a query
1964 if [ "$OSFLAVOUR" = "OSX" ]; then
1965 diskutil unmount ${CDROM#/dev/}
1967 case "$CDROMREADERSYNTAX" in
1969 if $METAFLAC $METAFLACOPTS --export-cuesheet-to=- "$CDROM" > /dev/null 2>&1 ; then
1970 case "$CUE2DISCID" in
1971 # FIXME # right now we have 2 cue2discid internal
1972 # implementations: builtin and abcde.cue2discid. Test
1973 # both of them and decide which one we want to use.
1975 #vecho "Using builtin cue2discid implementation..."
1976 CUESHEET="$(metaflac $METAFLACOPTS --export-cuesheet-to=- "$CDROM")"
1978 #TRACKS=$(echo $CUESHEET | grep -E "TRACK \+[[:digit:]]\+ \+AUDIO" |wc -l)
1980 OFFSETTIMES=( $(echo "$CUESHEET" | sed -n -e's/\ *INDEX 01\ \+//p' ) )
1981 TRACKS=${#OFFSETTIMES[@]}
1983 #echo "processing offsetimes ${OFFSETTIMES[@]}"
1984 for OFFSETTIME in ${OFFSETTIMES[@]}; do
1985 OFFSETS="$OFFSETS $(( 10#${OFFSETTIME:0:2} * 4500 + 10#${OFFSETTIME:3:2} * 75 + 10#${OFFSETTIME:6:2} ))"
1986 #OFFSETS[${#OFFSETS[*]}]=$(( 10#${OFFSETTIME:0:2} * 4500 + 10#${OFFSETTIME:3:2} * 75 + 10#${OFFSETTIME:6:2} ))
1989 LEADOUT=$(( $(echo "$CUESHEET" | grep lead-out | get_last) * 75 / 44100 ))
1990 LEADIN=$(( $(echo "$CUESHEET" | grep lead-in | get_last) * 75 / 44100 ))
1994 #vecho "Using external python cue2discid implementation..."
1995 TRACKINFO=$($METAFLAC $METAFLACOPTS --export-cuesheet-to=- "$CDROM" | $CUE2DISCID)
1999 log error "the input flac file does not contain a cuesheet."
2004 CDPARANOIAOUTPUT="$( $CDROMREADER -$CDPARANOIACDROMBUS "$CDROM" -Q --verbose 2>&1 )"
2006 if [ ! "$RET" = "0" ];then
2007 log warning "something went wrong while querying the CD... Maybe a DATA CD?"
2010 TRACKS="$(echo "$CDPARANOIAOUTPUT" | grep -E '^[[:space:]]+[[:digit:]]' | tail -n 1 | get_first | tr -d "." | tr '\n' ' ')"
2011 CDPARANOIAAUDIOTRACKS="$TRACKS"
2013 LEADOUT="$(echo "$CDPARANOIAOUTPUT" | grep -Eo '^TOTAL[[:space:]]+([[:digit:]]+)' | get_last)"
2014 OFFSETS="$(echo "$CDPARANOIAOUTPUT" | sed -n -e's/^ .* \([0-9]\+\) \[.*/\1/p')"
2018 case "$CDDBMETHOD" in
2019 cddb) TRACKINFO=$($CDDISCID "$CDROM") ;;
2020 musicbrainz) TRACKINFO=$($MUSICBRAINZ --command id --device "$CDROM") ;;
2024 # Make sure there's a CD in there by checking cd-discid's return code
2025 if [ ! "$?" = "0" ]; then
2026 if [ "$CDROMREADERSYNTAX" = "flac" ] ; then
2027 log error "cuesheet information from the flac file could not be read."
2028 log error "Perhaps the flac file does not contain a cuesheet?."
2031 log error "CD could not be read. Perhaps there's no CD in the drive?"
2035 # In OSX, remount the disc again
2036 if [ "$OSFLAVOUR" = "OSX" ]; then
2037 diskutil mount ${CDROM#/dev/}
2040 DISCID=$(echo $TRACKINFO | cut -f1 -d' ')
2042 TRACKINFO=$(cat "$WAVOUTPUTDIR/abcde.$DISCID/discid")
2045 # Get a full enumeration of tracks, sort it, and put it in the TRACKQUEUE.
2046 # This needs to be done now because a section of the resuming code will need
2049 # get the number of digits to pad TRACKNUM with - we'll use this later
2050 # a CD can only hold 99 tracks, but since we support a feature for starting
2051 # numbering the tracks from a given number, we might need to set it as a
2052 # variable for the user to define... or obtain it somehow.
2053 if [ "$PADTRACKS" = "y" ] ; then
2057 ABCDETEMPDIR="$WAVOUTPUTDIR/abcde.$(echo $TRACKINFO | cut -f1 -d' ')"
2058 if [ -z "$TRACKQUEUE" ]; then
2059 if [ ! "$STRIPDATATRACKS" = "n" ]; then
2060 case "$CDROMREADERSYNTAX" in
2061 cdparanoia|libcdio|debug)
2062 if [ "$WEHAVEACD" = "y" ]; then
2063 vecho "Querying the CD for audio tracks..."
2064 CDPARANOIAOUTPUT="$( $CDROMREADER -$CDPARANOIACDROMBUS "$CDROM" -Q --verbose 2>&1 )"
2066 if [ ! "$RET" = "0" ];then
2067 log warning "something went wrong while querying the CD... Maybe a DATA CD?"
2069 TRACKS="$(echo "$CDPARANOIAOUTPUT" | grep -E '^[[:space:]]+[[:digit:]]' | tail -n 1 | get_first | tr -d "." | tr '\n' ' ')"
2070 CDPARANOIAAUDIOTRACKS="$TRACKS"
2072 # Previous versions of abcde would store the tracks on a file, instead of the status record.
2073 if [ -f "$ABCDETEMPDIR/cdparanoia-audio-tracks" ]; then
2074 echo cdparanoia-audio-tracks=$( cat "$ABCDETEMPDIR/cdparanoia-audio-tracks" ) >> "$ABCDETEMPDIR/status"
2075 rm -f "$ABCDETEMPDIR/cdparanoia-audio-tracks"
2077 if [ -f "$ABCDETEMPDIR/status" ] && TRACKS=$(checkstatus cdparanoia-audio-tracks); then :; else
2078 TRACKS=$(echo $TRACKINFO | cut -f2 -d' ')
2082 *) TRACKS=$(echo $TRACKINFO | cut -f2 -d' ') ;;
2085 TRACKS=$(echo $TRACKINFO | cut -f2 -d' ')
2087 if echo "$TRACKS" | grep "[[:digit:]]" > /dev/null 2>&1 ;then :;else
2088 log info "The disc does not contain any tracks. Giving up..."
2091 echo -n "Grabbing entire CD - tracks: "
2092 if [ ! "$PADTRACKS" = "y" ] ; then
2093 TRACKNUMPADDING=$(echo -n $TRACKS | wc -c | tr -d ' ')
2095 TRACKS=$(printf "%0.${TRACKNUMPADDING}d" $TRACKS)
2097 while [ "$X" -ne "$TRACKS" ]
2099 X=$(printf "%0.${TRACKNUMPADDING}d" $(expr $X + 1))
2100 TRACKQUEUE=$(echo $TRACKQUEUE $X)
2104 TRACKS=$(echo $TRACKINFO | cut -f2 -d' ')
2105 # User-supplied track queue.
2106 # Weed out non-numbers, whitespace, then sort and weed out duplicates
2107 TRACKQUEUE=$(echo $TRACKQUEUE | sed 's-[^0-9 ]--g' | tr ' ' '\n' | grep -v ^$ | sort -n | uniq | tr '\n' ' ' | sed 's- $--g')
2108 # Once cleaned, obtain the highest value in the trackqueue for number padding
2109 for LASTTRACK in $TRACKQUEUE; do :; done
2110 if [ ! "$PADTRACKS" = "y" ] ; then
2111 TRACKNUMPADDING=$(echo -n $LASTTRACK | wc -c | tr -d ' ')
2113 # Now we normalize the trackqueue
2114 for TRACK in $TRACKQUEUE ; do
2115 TRACKNUM=$(printf %0.${TRACKNUMPADDING}d $(expr ${TRACK} + 0 ))
2116 PADTRACKQUEUE=$(echo $PADTRACKQUEUE $TRACKNUM)
2118 TRACKQUEUE=$PADTRACKQUEUE
2119 echo Grabbing tracks: "$TRACKQUEUE"
2122 QUEUEDTRACKS=$(echo $TRACKQUEUE | wc -w | tr -d ' ')
2124 # We have the discid, create a temp directory after it to store all the temp
2127 if [ -e "$ABCDETEMPDIR" ]; then
2128 echo -n "abcde: attempting to resume from $ABCDETEMPDIR"
2129 # It already exists, see if it's a directory
2130 if [ ! -d "$ABCDETEMPDIR" ]; then
2131 # This is a file/socket/fifo/device/etc, not a directory
2134 echo "abcde: file $ABCDETEMPDIR already exists and does not belong to abcde." >&2
2135 echo "Please investigate, remove it, and rerun abcde." >&2
2139 # It's a directory, let's see if it's writable by us
2140 if [ ! -r "$ABCDETEMPDIR" ] || [ ! -w "$ABCDETEMPDIR" ] || [ ! -x "$ABCDETEMPDIR" ]; then
2141 # Nope, complain and exit
2143 echo "abcde: directory $ABCDETEMPDIR already exists and is not writeable." >&2
2144 echo "Please investigate, remove it, and rerun abcde." >&2
2148 # See if it's populated
2149 if [ ! -f "$ABCDETEMPDIR/discid" ]; then
2150 # Wipe and start fresh
2151 echo "abcde: $ABCDETEMPDIR/discid not found. Abcde must remove and recreate" >&2
2152 echo -n "this directory to continue. Continue [y/N]? " >&2
2153 if [ "$INTERACTIVE" = "y" ]; then
2159 if [ "$ANSWER" != "y" ]; then
2162 rm -rf "$ABCDETEMPDIR" || exit 1
2163 mkdir -p "$ABCDETEMPDIR"
2164 if [ "$?" -gt "0" ]; then
2165 # Directory already exists or could not be created
2166 echo "abcde: Temp directory $ABCDETEMPDIR could not be created." >&2
2170 # Everything is fine. Check for ^encodetracklocation-
2171 # and encode-output entries in the status file and
2172 # remove them. These are not relevant across sessions.
2173 if [ -f "$ABCDETEMPDIR/status" ]; then
2174 mv "$ABCDETEMPDIR/status" "$ABCDETEMPDIR/status.old"
2175 grep -v ^encodetracklocation- < "$ABCDETEMPDIR/status.old" \
2176 | grep -v ^encode-output > "$ABCDETEMPDIR/status"
2178 # Remove old error messages
2179 if [ -f "$ABCDETEMPDIR/errors" ]; then
2180 rm -f "$ABCDETEMPDIR/errors"
2184 # We are starting from scratch
2185 mkdir -p "$ABCDETEMPDIR"
2186 if [ "$?" -gt "0" ]; then
2187 # Directory already exists or could not be created
2188 echo "abcde: Temp directory $ABCDETEMPDIR could not be created." >&2
2191 cat /dev/null > "$ABCDETEMPDIR/status"
2192 # Store the abcde version in the status file.
2193 echo "abcde-version=$VERSION" >> "$ABCDETEMPDIR/status"
2195 if [ X"$DOCUE" = "Xy" -a X"$WEHAVEACD" = "Xy" ]; then
2196 if checkstatus cuefile > /dev/null 2>&1 ; then :; else
2197 CUEFILE=cue-$(echo "$TRACKINFO" | cut -f1 -d' ').txt
2198 vecho "Creating cue file..."
2199 case $CDROMREADERSYNTAX in
2201 if $METAFLAC --export-cuesheet-to=- "$CDROM" > "$ABCDETEMPDIR/$CUEFILE"; then
2202 echo cuefile=$CUEFILE >> "$ABCDETEMPDIR/status"
2204 log warning "the input flac file does not contain a cuesheet."
2208 if $CUEREADER $CUEREADEROPTS > "$ABCDETEMPDIR/$CUEFILE"; then
2209 echo cuefile=$CUEFILE >> "$ABCDETEMPDIR/status"
2211 log warning "reading the CUE sheet is still considered experimental"
2212 log warning "and there was a problem with the CD reading. abcde will continue,"
2213 log warning "but consider reporting the problem to the abcde author"
2219 # If we got the CDPARANOIA status and it is not recorded, save it now
2220 if [ -n "$CDPARANOIAAUDIOTRACKS" ]; then
2221 if checkstatus cdparanoia-audio-tracks > /dev/null 2>&1; then :; else
2222 echo cdparanoia-audio-tracks=$CDPARANOIAAUDIOTRACKS >> "$ABCDETEMPDIR/status"
2226 # Create the discid file
2227 echo "$TRACKINFO" > "$ABCDETEMPDIR/discid"
2228 if checkstatus cddbmethod > /dev/null 2>&1 ; then :; else
2229 echo "cddbmethod=$CDDBMETHOD" >> "$ABCDETEMPDIR/status"
2234 # Create a proper CUE file based on the CUE file we created before.
2237 if CUEFILE_IN="$ABCDETEMPDIR"/$(checkstatus cuefile); then
2238 CUEFILE_OUT=$CUEFILE_IN.out
2239 ### FIXME ### checkstatus cddb
2240 if [ -e "$CDDBDATA" ]; then
2241 vecho "Adding metadata to the cue file..."
2242 # FIXME It doesn't preserve spaces! Why?
2243 # FIXME parse $track into PERFORMER and TITLE - abcde already has code for this?
2245 echo "PERFORMER \"$DARTIST\"" >> "$CUEFILE_OUT"
2246 echo "TITLE \"$DALBUM\"" >> "$CUEFILE_OUT"
2247 # Set IFS to <newline> to prevent read from swallowing spaces and tabs
2251 cat "$CUEFILE_IN" | while read line
2253 if echo "$line" | grep "INDEX 01" > /dev/null 2>&1 ; then
2254 # FIXME # Possible patch: remove the line above, uncomment the 2 lines below.
2255 # echo "$line" >> "$CUEFILE_OUT"
2256 # if echo "$line" | grep "^[[:space:]]*TRACK" > /dev/null 2>&1 ; then
2257 eval track="\$TRACK$n"
2259 echo " TITLE \"$track\"" >> "$CUEFILE_OUT"
2260 # When making a single-track rip, put the
2261 # actual file name into the file declaration
2262 # in the cue file so that it is usable by
2263 # music players and the like
2264 elif [ "$ONETRACK" = "y" ] &&
2265 echo "$line" | grep '^FILE "dummy.wav" WAVE' > /dev/null 2>&1 ; then
2267 TRACKFILE="$(mungetrackname "$TRACKNAME")"
2268 ARTISTFILE="$(mungeartistname "$TRACKARTIST")"
2269 ALBUMFILE="$(mungealbumname "$DALBUM")"
2271 if [ "$VARIOUSARTISTS" = "y" ]; then
2272 OUTPUTFILE="$(eval echo \""$VAONETRACKOUTPUTFORMAT"\" | sed -e 's@^.*/@@').$OUTPUT"
2274 OUTPUTFILE="$(eval echo \""$ONETRACKOUTPUTFORMAT"\" | sed -e 's@^.*/@@').$OUTPUT"
2277 echo "FILE \"$OUTPUTFILE\" WAVE" >> "$CUEFILE_OUT"
2280 # FIXME # If the lines above are uncommented, remove the line below.
2281 echo "$line" >> "$CUEFILE_OUT"
2284 mv "$CUEFILE_OUT" "$CUEFILE_IN"
2285 echo "cleancuefile" >> "$ABCDETEMPDIR/status"
2291 # Parses a CDDB file and outputs the title and the track names.
2292 # Variables: CDDBFILE
2296 # List out disc title/author and contents
2297 if [ "$ONETRACK" = "y" ]; then
2298 vecho "ONETRACK mode selected: displaying only the title of the CD..."
2300 echo "---- $(grep -a DTITLE "${CDDBPARSEFILE}" | cut '-d=' -f2- | tr -d \\r\\n ) ----"
2301 if [ X"$SHOWCDDBYEAR" = "Xy" ]; then
2302 PARSEDYEAR=$(grep -a DYEAR "${CDDBPARSEFILE}" | cut '-d=' -f2-)
2303 if [ ! X"$PARSEDYEAR" = "X" ]; then
2304 echo "Year: $PARSEDYEAR"
2307 if [ X"$SHOWCDDBGENRE" = "Xy" ]; then
2308 PARSEDGENRE=$(grep -a DGENRE "${CDDBPARSEFILE}" | cut '-d=' -f2-)
2309 if [ ! X"$PARSEDGENRE" = "X" ]; then
2310 echo "Genre: $PARSEDGENRE"
2313 if [ ! "$ONETRACK" = "y" ]; then
2314 for TRACK in $(f_seq_row 1 $TRACKS)
2316 echo $TRACK: "$(grep -a ^TTITLE$(expr $TRACK - 1)= "${CDDBPARSEFILE}" | cut -f2- -d= | tr -d \\r\\n)"
2322 # Check for a local CDDB file, and report success
2325 if checkstatus cddb-readcomplete && checkstatus cddb-choice >/dev/null; then :; else
2327 CDDBLOCALSTATUS="notfound"
2328 CDDBDISCID=$(echo $TRACKINFO | cut -d' ' -f1)
2331 if [ "$CDDBLOCALRECURSIVE" = "y" ]; then
2332 CDDBLOCALRESULTS="$(find ${CDDBLOCALDIR} -name "${CDDBDISCID}" -type f 2> /dev/null)"
2333 if [ ! "${CDDBLOCALRESULTS}" = "" ]; then
2334 if (( $(echo "${CDDBLOCALRESULTS}" | wc -l) == 1 )); then
2335 CDDBLOCALFILE="${CDDBLOCALRESULTS}"
2336 CDDBLOCALMATCH=single
2337 elif (( $(echo "${CDDBLOCALRESULTS}" | wc -l) > 1 )); then
2338 CDDBLOCALMATCH=multiple
2343 elif [ "$CDDBLOCALMATCH" = "none" ] && [ -r "${CDDBLOCALDIR}/${CDDBDISCID}" ]; then
2344 CDDBLOCALFILE="${CDDBLOCALDIR}/${CDDBDISCID}"
2345 CDDBLOCALMATCH=single
2350 # If the user has selected to check a local CDDB repo, we proceed with it
2351 case $CDDBLOCALMATCH in
2353 echo "Processing multiple matching CDDB entries..." > "$ABCDETEMPDIR/cddblocalchoices"
2355 echo "$CDDBLOCALRESULTS" | while read RESULT ; do
2357 # List out disc title/author and contents
2358 CDDBLOCALREAD="$ABCDETEMPDIR/cddblocalread.$X"
2359 cat "$RESULT" > "${CDDBLOCALREAD}"
2362 do_cddbparse "${CDDBLOCALREAD}"
2364 ##FIXME## QUICK HACK !!!!
2365 if [ ! "$INTERACTIVE" = "y" ]; then break ; fi
2366 } >> "$ABCDETEMPDIR/cddblocalchoices"
2368 if [ $(cat "$ABCDETEMPDIR/cddblocalchoices" | wc -l) -ge 24 ] && [ "$INTERACTIVE" = "y" ]; then
2369 page "$ABCDETEMPDIR/cddblocalchoices"
2371 # It's all going to fit in one page, cat it
2372 cat "$ABCDETEMPDIR/cddblocalchoices" >&2
2374 CDDBLOCALCHOICES=$( echo "$CDDBLOCALRESULTS" | wc -l )
2375 # Setting the choice to an impossible integer to avoid errors in the numeric comparisons
2376 CDDBLOCALCHOICENUM=-1
2377 if [ "$INTERACTIVE" = "y" ]; then
2378 while [ $CDDBLOCALCHOICENUM -lt 0 ] || [ $CDDBLOCALCHOICENUM -gt $CDDBLOCALCHOICES ]; do
2379 echo -n "Locally cached CDDB entries found. Which one would you like to use (0 for none)? [0-$CDDBLOCALCHOICES]: " >&2
2380 read CDDBLOCALCHOICE
2381 [ x"$CDDBLOCALCHOICE" = "x" ] && CDDBLOCALCHOICE="1"
2382 # FIXME # Introduce diff's
2383 if echo $CDDBLOCALCHOICE | grep -E "[[:space:]]*[[:digit:]]+,[[:digit:]]+[[:space:]]*" > /dev/null 2>&1 ; then
2384 diffentries cddblocalread "$CDDBLOCALCHOICES" "$CDDBLOCALCHOICE"
2385 elif echo $CDDBLOCALCHOICE | grep -E "[[:space:]]*[[:digit:]]+[[:space:]]*" > /dev/null 2>&1 ; then
2386 # Make sure we get a valid choice
2387 CDDBLOCALCHOICENUM=$(echo $CDDBLOCALCHOICE | xargs printf %d 2>/dev/null)
2388 if [ $CDDBLOCALCHOICENUM -lt 0 ] || [ $CDDBLOCALCHOICENUM -gt $CDDBLOCALCHOICES ]; then
2389 echo "Invalid selection. Please choose a number between 0 and $CDDBLOCALCHOICES." >&2
2395 #echo "Selected ..."
2397 CDDBLOCALCHOICENUM=1
2399 if [ ! "$CDDBLOCALCHOICENUM" = "0" ]; then
2400 #echo "Using local copy of CDDB data"
2401 echo "# DO NOT ERASE THIS LINE! Added by abcde to imitate cddb output" > "$ABCDETEMPDIR/cddbread.1"
2402 cat "$ABCDETEMPDIR/cddblocalread.$CDDBLOCALCHOICENUM" >> "$ABCDETEMPDIR/cddbread.1"
2403 echo 999 > "$ABCDETEMPDIR/cddbquery" # Assuming 999 isn't used by CDDB
2404 echo cddb-readcomplete >> "$ABCDETEMPDIR/status"
2405 do_cddbparse "$ABCDETEMPDIR/cddbread.1" > "$ABCDETEMPDIR/cddbchoices"
2406 echo cddb-choice=1 >> "$ABCDETEMPDIR/status"
2407 CDDBLOCALSTATUS="found"
2409 #echo "Not using local copy of CDDB data"
2410 CDDBLOCALSTATUS="notfound"
2414 # List out disc title/author and contents
2415 do_cddbparse "${CDDBLOCALFILE}"
2416 #if [ "$CDROMREADERSYNTAX" = "flac" ] ; then
2417 # echo -n "Embedded cuesheet entry found, use it [Y/n]? " >&2
2419 echo -n "Locally cached CDDB entry found, use it [Y/n]? " >&2
2421 if [ "$INTERACTIVE" = "y" ]; then
2423 while [ "$USELOCALRESP" != "y" ] && [ "$USELOCALRESP" != "n" ] && [ "$USELOCALRESP" != "" ] ; do
2424 echo -n 'Invalid selection. Please answer "y" or "n": ' >&2
2427 [ x"$USELOCALRESP" = "x" ] && USELOCALRESP="y"
2431 if [ "$USELOCALRESP" = "y" ]; then
2432 #echo "Using local copy of CDDB data"
2433 echo "# DO NOT ERASE THIS LINE! Added by abcde to imitate cddb output" > "$ABCDETEMPDIR/cddbread.1"
2434 cat "${CDDBLOCALFILE}" >> "$ABCDETEMPDIR/cddbread.1"
2435 echo 999 > "$ABCDETEMPDIR/cddbquery" # Assuming 999 isn't used by CDDB
2436 echo cddb-readcomplete >> "$ABCDETEMPDIR/status"
2437 do_cddbparse "${CDDBLOCALFILE}" > "$ABCDETEMPDIR/cddbchoices"
2438 echo cddb-choice=1 >> "$ABCDETEMPDIR/status"
2439 CDDBLOCALSTATUS="single"
2441 #echo "Not using local copy of CDDB data"
2442 CDDBLOCALSTATUS="notfound"
2446 CDDBLOCALSTATUS="notfound"
2453 # Try to read CD-Text from the drive using icedax / cdda2wav
2456 if new_checkexec icedax; then
2457 CDTEXT_READER=icedax
2458 elif new_checkexec cdda2wav; then
2459 CDTEXT_READER=cdda2wav
2461 # Didn't find either, bail
2465 if [ "$OSFLAVOUR" = "OSX" ] ; then
2466 # Hei, we have to unmount the device before running anything like cdda2wav/icedax in OSX
2467 diskutil unmount ${CDROM#/dev/}
2468 # Also, in OSX the cdrom device for cdda2wav/icedax changes...
2469 CDDA2WAVCDROM="IODVDServices"
2470 elif [ "$OSFLAVOUR" = "FBSD" ] ; then
2471 CDDA2WAVCDROM="$CDROMID"
2473 if [ "$CDROMID" = "" ]; then
2474 CDDA2WAVCDROM="$CDROM"
2476 CDDA2WAVCDROM="$CDROMID"
2480 # Do we have CD-Text on the disc (and can the drive read it?)
2482 cd "$ABCDETEMPDIR" && rm -f audio.* audio_*
2483 ${CDTEXT_READER} -J -v titles -D ${CDDA2WAVCDROM} > "$ABCDETEMPDIR/cd-text" 2>&1
2485 grep -a -q '^CD-Text: detected' "$ABCDETEMPDIR/cd-text"
2487 if [ $ERRORCODE -ne 0 ]; then
2488 # No CD-Text found, bail
2492 rm -f "$ABCDETEMPDIR/cddbchoices"
2494 # Make an empty template
2495 $CDDBTOOL template $(cat "$ABCDETEMPDIR/discid") > "$ABCDETEMPDIR/cddbread.1"
2496 echo -n "Retrieved 1 CD-Text match..." >> "$ABCDETEMPDIR/cddbchoices"
2497 echo "done." >> "$ABCDETEMPDIR/cddbchoices"
2498 echo cddb-read-1-complete >> "$ABCDETEMPDIR/status"
2499 echo cddb-choice=1 >> "$ABCDETEMPDIR/status"
2500 #ATITLE=$(grep -ae '^Album title:' "${ABCDETEMPDIR}/cd-text" | cut -c14- | sed "s~'\(.*\)'.*\[from \(.*\)]$~\2 / \1~")
2501 ATITLE=$(grep -ae '^DTITLE=' "${ABCDETEMPDIR}/audio.cddb" | cut -c8-)
2502 echo "200 none ${ATITLE}" >> "$ABCDETEMPDIR/cddbquery"
2503 # List out disc title/author and contents
2504 echo "---- ${ATITLE} ----" >> "$ABCDETEMPDIR/cddbchoices"
2505 sed -n 's~^Track \(..:\) .\(.*\).$~\1 \2~gp;' "$ABCDETEMPDIR/cd-text" >>"$ABCDETEMPDIR/cddbchoices"
2506 rm -f "$ABCDETEMPDIR/cddbread.1"
2507 # XXX FIXME - this is a hack and should be replaced by proper
2508 # character set tracking for the CDDB data we have.
2509 if test "$CDDBPROTO" -ge 6 ; then
2510 # convert to Unicode
2511 iconv -f iso-8859-1 -t utf-8 <"$ABCDETEMPDIR/audio.cddb" >"$ABCDETEMPDIR/cddbread.1"
2513 # copy verbatim, assuming CD-TEXT is in ISO-8859-1 format
2514 # apparently icedax/cdda2wav have no support for 16-bit
2515 # characters yet, either
2516 cp -p "$ABCDETEMPDIR/audio.cddb" "$ABCDETEMPDIR/cddbread.1"
2518 ( cd "$ABCDETEMPDIR" && rm -f audio_* audio.* )
2519 echo >> "$ABCDETEMPDIR/cddbchoices"
2520 echo "cdtext-readcomplete" >> "$ABCDETEMPDIR/status"
2524 # Work with the musicbrainz WS API, then transform the results here so
2525 # they look (very) like the results from CDDB. Maybe not the best way
2526 # to go, but it Works For Me (TM)
2530 if checkstatus musicbrainz-readcomplete; then :; else
2531 vecho "Obtaining Musicbrainz results..."
2532 # If MB is to be used, interpret the query results and read all
2533 # the available entries.
2534 rm -f "$ABCDETEMPDIR/cddbchoices"
2535 CDDBCHOICES=1 # Overridden by multiple matches
2536 MBDISCID=$(echo $TRACKINFO | cut -d' ' -f1)
2537 ${MUSICBRAINZ} --command data --discid "$MBDISCID" --workdir "$ABCDETEMPDIR"
2539 # The helper script will write disc matches out to
2540 # cddbread.*. Count how many we have
2541 if [ ! -f "${ABCDETEMPDIR}/cddbread.1" ] ; then
2542 if [ $CDDBLASTMETHOD = "y" ]
2544 # We're the end of the line.
2546 # No matches. Use the normal cddb template for the user to
2548 vecho "Unable to find a match with ${CDDBMETHCHOICE}, generating CDDB template."
2549 echo "No Musicbrainz match." >> "$ABCDETEMPDIR/cddbchoices"
2550 $CDDBTOOL template $(cat "$ABCDETEMPDIR/discid") > "$ABCDETEMPDIR/cddbread.0"
2551 # List out disc title/author and contents of template
2552 echo ---- Unknown Artist / Unknown Album ---- >> "$ABCDETEMPDIR/cddbchoices"
2554 for TRACK in $(f_seq_row 1 $TRACKS)
2556 echo $TRACK: "$(grep -a ^TTITLE$(expr $TRACK - 1)= "$ABCDETEMPDIR/cddbread.0" | cut -f2- -d= | tr -d \\r\\n)" >> "$ABCDETEMPDIR/cddbchoices"
2558 echo >> "$ABCDETEMPDIR/cddbchoices"
2559 echo cddb-read-0-complete >> "$ABCDETEMPDIR/status"
2560 echo cddb-choice=0 >> "$ABCDETEMPDIR/status"
2561 echo 503 > "$ABCDETEMPDIR/cddbquery"
2563 # Neat, we'll let the next guy take care of this CDDB
2565 vecho "Unable to find a match with ${CDDBMETHCHOICE}, moving on to the next option."
2568 # We have some matches
2569 NUM_RESPONSES=$(echo "${ABCDETEMPDIR}"/cddbread.* | wc -w)
2570 if [ "$NUM_RESPONSES" -eq 1 ] ; then
2572 echo -n "Retrieved 1 Musicbrainz match..." >> "$ABCDETEMPDIR/cddbchoices"
2573 echo "done." >> "$ABCDETEMPDIR/cddbchoices"
2574 echo cddb-read-1-complete >> "$ABCDETEMPDIR/status"
2575 echo cddb-choice=1 >> "$ABCDETEMPDIR/status"
2576 ATITLE=$(grep -a -e '^DTITLE=' "${ABCDETEMPDIR}/cddbread.1" | cut -c8- )
2577 echo "200 none ${ATITLE}" >> "$ABCDETEMPDIR/cddbquery"
2578 # List out disc title/author and contents
2579 echo ---- ${ATITLE} ---- >> "$ABCDETEMPDIR/cddbchoices"
2580 for TRACK in $(f_seq_row 1 $TRACKS)
2582 echo $TRACK: "$(grep -a ^TTITLE$(expr $TRACK - 1)= "$ABCDETEMPDIR/cddbread.1" | cut -f2- -d= | tr -d \\r\\n)" >> "$ABCDETEMPDIR/cddbchoices"
2584 echo >> "$ABCDETEMPDIR/cddbchoices"
2586 echo "210 Found exact matches, list follows (until terminating .)" > "$ABCDETEMPDIR/cddbquery"
2587 echo "Multiple Musicbrainz matches:" >> "$ABCDETEMPDIR/cddbchoices"
2588 for file in "$ABCDETEMPDIR"/cddbread.*
2590 X=$(echo $file | sed 's/^.*cddbread\.//g')
2591 echo cddb-read-$X-complete >> "$ABCDETEMPDIR/status"
2592 ATITLE=$(grep -a -e '^DTITLE=' "${ABCDETEMPDIR}"/cddbread.$X | cut -c8- )
2593 echo "none ${ATITLE}" >> "$ABCDETEMPDIR/cddbquery"
2594 # List out disc title/author and contents
2595 echo "#$X: ---- ${ATITLE} ----" >> "$ABCDETEMPDIR/cddbchoices"
2596 for TRACK in $(f_seq_row 1 $TRACKS)
2598 echo $TRACK: "$(grep -a ^TTITLE$(expr $TRACK - 1)= "$ABCDETEMPDIR/cddbread.$X" | cut -f2- -d= | tr -d \\r\\n)" >> "$ABCDETEMPDIR/cddbchoices"
2600 echo >> "$ABCDETEMPDIR/cddbchoices"
2602 echo "." >> "$ABCDETEMPDIR/cddbquery"
2605 echo "musicbrainz-readcomplete" >> "$ABCDETEMPDIR/status"
2612 # Perform CDDB protocol version check if it hasn't already been done
2613 if checkstatus cddb-statcomplete; then :; else
2614 if [ "$CDDBAVAIL" = "n" ]; then
2616 echo 503 > "$ABCDETEMPDIR/cddbstat"
2619 CDDBUSER=$(echo $HELLOINFO | cut -f1 -d'@')
2620 CDDBHOST=$(echo $HELLOINFO | cut -f2- -d'@')
2621 while test $rc -eq 1 -a $CDDBPROTO -ge 3; do
2622 vecho "Checking CDDB server status..."
2623 $CDDBTOOL stat $CDDBURL $CDDBUSER $CDDBHOST $CDDBPROTO > "$ABCDETEMPDIR/cddbstat"
2624 RESPONSECODE=$(head -n 1 "$ABCDETEMPDIR/cddbstat" | cut -f1 -d' ')
2625 case "$RESPONSECODE" in
2626 210) # 210 OK, status information follows (until terminating `.')
2629 501) # 501 Illegal CDDB protocol level: <n>.
2630 CDDBPROTO=`expr $CDDBPROTO - 1`
2632 *) # Try a cddb query, since freedb2.org doesn't support the stat or ver commands
2633 # FreeDB TESTCD disc-id is used for query
2634 $CDDBTOOL query $CDDBURL $CDDBPROTO $CDDBUSER $CDDBHOST 03015501 1 296 344 > "$ABCDETEMPDIR/cddbstat"
2635 RESPONSECODE=$(head -n 1 "$ABCDETEMPDIR/cddbstat" | cut -f1 -d' ')
2636 case "$RESPONSECODE" in
2637 2??) # Server responded, everything seems OK
2647 if test $rc -eq 1; then
2651 echo cddb-statcomplete >> "$ABCDETEMPDIR/status"
2659 CDDBDISCID=$(echo $TRACKINFO | cut -d' ' -f1)
2660 CDDBLOCALFILE="${CDDBLOCALDIR}/${CDDBDISCID}"
2662 # Perform CDDB query if it hasn't already been done
2663 if checkstatus cddb-querycomplete; then :; else
2664 if [ "$CDDBAVAIL" = "n" ]; then
2666 echo 503 > "$ABCDETEMPDIR/cddbquery"
2667 # The default CDDBLOCALSTATUS is "notfound"