2 # Copyright (c) 1998-2001 Robert Woodcock <rcw@debian.org>
3 # Copyright (c) 2003-2004 Jesus Climent <jesus.climent@hispalinux.es>
4 # This code is hereby licensed for public consumption under either the
5 # GNU GPL v2 or greater, or Larry Wall's Artistic license - your choice.
7 # You should have received a copy of the GNU General Public License
8 # along with this program; if not, write to the Free Software
9 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
11 # Copyright for this work is to expire January 1, 2010, after which it
12 # shall be public domain.
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 (cddb,read,normalize,encode,tag,move,playlist,clean)"
24 #echo "-A Experimental actions (retag, transcode)"
25 echo "-b Batch mode: enable album normalization and nogap encoding"
27 echo " Specify a configuration file (overrides system and user config files)"
29 echo " Specify discid to resume from (only needed if you no longer have the cd)"
31 echo " Specify CDROM device to grab"
32 echo "-D Debugging mode (equivalent to sh -x abcde)"
33 echo "-e Erase encoded track information from status file"
34 echo "-h This help information"
35 #echo "-i Tag files while encoding, when possible (local only) -NWY-"
36 echo "-j <#> Number of encoder processes to run at once (localhost)"
37 echo "-k Keep the wav tracks for later use"
38 echo "-l Use low disk space algorithm"
39 echo "-L Use local CDDB storage directory"
40 echo "-n No lookup. Don't query CDDB, just create and use template"
41 echo "-N Noninteractive. Never prompt for anything"
42 echo "-m Modify playlist to include CRLF endings, to comply with some players"
43 echo "-M Create a CUE file"
44 echo "-o <type1[,type2]...>"
45 echo " Output file type(s) (ogg,mp3,flac,spx,mpc). Defaults to ogg"
46 echo "-p Pad track numbers with 0's (if less than 10 tracks)"
47 echo "-P Use UNIX pipes to read+encode without wav files"
48 echo "-r <host1[,host2]...>"
49 echo " Also encode on these remote hosts"
50 echo "-R Add replaygain values to the tag info (only for ogg,flac)"
51 echo "-S <#> Set the CD speed"
52 #echo "-t File types to preprocess (wav)"
53 #echo "-T Set postprocessing options"
54 echo "-t <#> Start the track numbering at a given number"
55 echo "-T <#> Same as -t but modifies tag numbering"
56 echo "-v Show version number and exit"
57 echo "-V Be a bit more verbose about what is happening behind the scenes"
58 echo "-x Eject CD after all tracks are read"
60 echo " Add a comment to the CD tracks"
61 echo "-W <#> Contatenate CDs: -T #01 -w \"CD #\""
63 echo "Tracks is a space-delimited list of tracks to grab."
64 echo "Ranges specified with hyphens are allowed."
65 #echo "Double hyphens are used to concatenate tracks"
68 # Funtions to replace the need of seq, which is too distribution dependant.
72 while [ $i -ne `expr $2 + 1` ]
82 while [ $i -ne `expr $2 + 1` ]
90 # Functions to replace the need of awk {print $1} and {print $NF}
93 if [ X
"$1" = "X" ]; then
94 for first
in `cat`; do
105 if [ X
"$1" = "X" ]; then
106 for stdin
in `cat`; do
110 for last
in $@
; do :; done
115 # checkstatus [blurb]
116 # Returns "0" if the blurb was found, returns 1 if it wasn't
117 # Puts the blurb content, if available, on stdout.
118 # Otherwise, returns "".
121 # Take the last line in the status file if there's multiple matches
123 BLURB
=$
(egrep $PATTERN "$ABCDETEMPDIR/status" |
tail -n 1)
125 if [ -z "$BLURB" ]; then
130 # See if there's a = in it
131 if [ "$(echo $BLURB | grep -c =)" != "0" ]; then
132 echo "$(echo $BLURB | cut -f2- -d=)"
138 # checkerrors [blurb]
139 # Returns "0" if the blurb was found (meaning there was an error),
140 # returns 1 if it wasn't (yes this is a little backwards).
141 # Does not print the blurb on stdout.
142 # Otherwise, returns "".
145 if [ -e "$ABCDETEMPDIR/errors" ]; then :; else
148 # Take the last line in the status file if there's multiple matches
150 BLURB
="$(egrep $PATTERN $ABCDETEMPDIR/errors | tail -n 1)"
152 if [ -z "$BLURB" ]; then
153 # negative, we did not have a negative...
156 # affirmative, we had a negative...
161 # run_command [blurb] [command...]
162 # Runs a command, silently if necessary, and updates the status file
167 # See if this is supposed to be silent
168 if [ "$(checkstatus encode-output)" = "loud" ]; then
172 # Special case for SMP, since
173 # encoder output is never displayed, don't mute echos
174 if [ -z "$BLURB" -a "$MAXPROCS" != "1" ]; then
184 if [ "$RETURN" = "2" ]; then
185 # File was already normalized.
190 if [ "$RETURN" != "0" ]; then
191 # Put an error in the errors file. For various reasons we
192 # can't capture a copy of the program's output but we can
193 # log what we attempted to execute and the error code
194 # returned by the program.
195 if [ "$BLURB" ]; then
198 echo "${TWEAK}returned code $RETURN: $@" >> "$ABCDETEMPDIR/errors"
199 return $RETURN # Do not pass go, do not update the status file
201 if [ "$BLURB" ]; then
202 echo $BLURB >> "$ABCDETEMPDIR/status"
206 # relpath() and slash() are Copyright (c) 1999 Stuart Ballard and
207 # distributed under the terms of the GNU GPL v2 or later, at your option
209 # Function to determine if a word contains a slash.
218 # Function to give the relative path from one file to another.
219 # Usage: relpath fromfile tofile
220 # eg relpath music/Artist/Album.m3u music/Artist/Album/Song.mp3
221 # (the result would be Album/Song.mp3)
222 # Output is relative path to $2 from $1 on stdout
224 # This code has the following restrictions:
225 # Multiple ////s are not collapsed into single /s, with strange effects.
226 # Absolute paths and ../s are handled wrong in FR (but they work in TO)
227 # If FR is a directory it must have a trailing /
235 /*) ;; # No processing is needed for absolute paths
237 # Loop through common prefixes, ignoring them.
238 while slash
"$FR" && [ "$(echo "$FR" | cut -d/ -f1)" = "$(echo "$TO" | cut -d/ -f1)" ]
240 FR
="$(echo "$FR" | cut -d/ -f2-)"
241 TO
="$(echo "$TO" | cut -d/ -f2-)"
243 # Loop through directory portions left in FR, adding appropriate ../s.
246 FR
="$(echo "$FR" | cut -d/ -f2-)"
255 # This code splits the a Various Artist track name from one of the following
258 # forward: Artist / Track
259 # forward-dash: Artist - Track
260 # reverse: Track / Artist
261 # reverse-dash: Track - Artist
262 # colon: Artist: Track
263 # trailing-paren: Artist (Track)
266 # VARIOUSARTISTS, VARIOUSARTISTSTYLE, TRACKNAME, TRACKARTIST
269 if [ "$VARIOUSARTISTS" = "y" ] && [ ! "$ONETRACK" = "y" ]; then
270 case "$VARIOUSARTISTSTYLE" in
272 DTITLEARTIST
=$
(echo "$TRACKNAME" |
sed 's- / -~-g')
273 TRACKARTIST
=$
(echo "$DTITLEARTIST" | cut
-f1 -d~
)
274 TRACKNAME
=$
(echo "$DTITLEARTIST" | cut
-f2 -d~
)
277 DTITLEARTIST
=$
(echo "$TRACKNAME" |
sed 's, - ,~,g')
278 TRACKARTIST
=$
(echo "$DTITLEARTIST" | cut
-f1 -d~
)
279 TRACKNAME
=$
(echo "$DTITLEARTIST" | cut
-f2 -d~
)
282 DTITLEARTIST
=$
(echo "$TRACKNAME" |
sed 's- / -~-g')
283 TRACKARTIST
=$
(echo "$DTITLEARTIST" | cut
-f2 -d~
)
284 TRACKNAME
=$
(echo "$DTITLEARTIST" | cut
-f1 -d~
)
287 DTITLEARTIST
=$
(echo "$TRACKNAME" |
sed 's, - ,~,g')
288 TRACKARTIST
=$
(echo "$DTITLEARTIST" | cut
-f2 -d~
)
289 TRACKNAME
=$
(echo "$DTITLEARTIST" | cut
-f1 -d~
)
292 DTITLEARTIST
=$
(echo "$TRACKNAME" |
sed 's-: -~-g')
293 TRACKARTIST
=$
(echo "$DTITLEARTIST" | cut
-f1 -d~
)
294 TRACKNAME
=$
(echo "$DTITLEARTIST" | cut
-f2 -d~
)
297 DTITLEARTIST
=$
(echo "$TRACKNAME" |
sed 's,^\(.*\) (\(.*\)),\1~\2,')
298 TRACKARTIST
=$
(echo "$DTITLEARTIST" | cut
-f2 -d~
)
299 TRACKNAME
=$
(echo "$DTITLEARTIST" | cut
-f1 -d~
)
302 elif [ "$ONETRACK" = "y" ]; then
303 TRACKARTIST
="Various"
305 TRACKARTIST
="$DARTIST"
310 local genre
=$
(echo "${@}" |
tr '[A-Z]' '[a-z]')
314 "classic rock") id
=1 ;;
332 "industrial") id
=19 ;;
333 "alternative") id
=20 ;;
335 "death metal") id
=22 ;;
337 "soundtrack") id
=24 ;;
338 "euro-techno") id
=25 ;;
342 "jazz+funk") id
=29 ;;
345 "classical") id
=32 ;;
346 "instrumental") id
=33 ;;
350 "sound clip") id
=37 ;;
353 "alt. rock") id
=40 ;;
358 "meditative") id
=45 ;;
359 "instrum. pop") id
=46 ;;
360 "instrum. rock") id
=47 ;;
364 "techno-indust.") id
=51 ;;
365 "electronic") id
=52 ;;
367 "eurodance") id
=54 ;;
369 "southern rock") id
=56 ;;
374 "christian rap") id
=61 ;;
377 "native american") id
=64 ;;
380 "psychadelic") id
=67 ;;
382 "showtunes") id
=69 ;;
386 "acid punk") id
=73 ;;
387 "acid jazz") id
=74 ;;
391 "rock & roll") id
=78 ;;
392 "hard rock") id
=79 ;;
394 "folk/rock") id
=81 ;;
395 "national folk") id
=82 ;;
402 "bluegrass") id
=89 ;;
403 "avantgarde") id
=90 ;;
404 "gothic rock") id
=91 ;;
405 "progress. rock") id
=92 ;;
406 "psychadel. rock") id
=93 ;;
407 "symphonic rock") id
=94 ;;
408 "slow rock") id
=95 ;;
411 "easy listening") id
=98 ;;
417 "chamber music") id
=104 ;;
419 "symphony") id
=106 ;;
420 "booty bass") id
=107 ;;
422 "porn groove") id
=109 ;;
424 "slow jam") id
=111 ;;
428 "folklore") id
=115 ;;
430 "power ballad") id
=117 ;;
431 "rhythmic soul") id
=118 ;;
432 "freestyle") id
=119 ;;
434 "punk rock") id
=121 ;;
435 "drum solo") id
=122 ;;
436 "a capella") id
=123 ;;
437 "euro-house") id
=124 ;;
438 "dance hall") id
=125 ;;
440 "drum & bass") id
=127 ;;
441 "club-house") id
=128 ;;
442 "hardcore") id
=129 ;;
446 "negerpunk") id
=133 ;;
447 "polsk punk") id
=134 ;;
449 "christian gangsta rap") id
=136 ;;
450 "heavy metal") id
=137 ;;
451 "black metal") id
=138 ;;
452 "crossover") id
=139 ;;
453 "contemporary christian")id
=140 ;;
454 "christian rock") id
=141 ;;
455 "merengue") id
=142 ;;
457 "thrash metal") id
=144 ;;
460 "synthpop") id
=147 ;;
467 # do_tag [tracknumber]
468 # id3 tags a filename
470 # TRACKS, TRACKNAME, TRACKARTIST, TAGGER, TAGGEROPTS, VORBISCOMMENT, METAFLAC,
471 # COMMENT, DALBUM, DARTIST, CDYEAR, CDGENRE (and temporarily) ID3TAGV
474 COMMENTOUTPUT
="$(eval echo ${COMMENT})"
475 run_command
'' echo "Tagging track $1 of $TRACKS: $TRACKNAME..."
476 # If we want to start the tracks with a given number, we need to modify the
477 # TRACKNUM value before evaluation
478 if [ -n "$STARTTRACKNUMBER" -a -n "$STARTTRACKNUMBERTAG" ] ; then
479 # Get the trackpadding from the current track
480 CURRENTTRACKPADDING
=$
(echo -n $UTRACKNUM |
wc -c)
481 TRACKNUM
=$
( printf %0.
${CURRENTTRACKPADDING}d $(expr ${UTRACKNUM} + ${STARTTRACKNUMBER} - $FIRSTTRACK ))
483 for OUTPUT
in $
(echo $OUTPUTTYPE |
tr , \
)
487 # id3v2 v0.1.9 claims to have solved the -c bug, so we merge both id3 and id3v2
488 GENREID
=$
(do_getgenreid
"${CDGENRE}")
490 # FIXME # track numbers in mp3 come with 1/10, so we cannot happily substitute them with $TRACKNUM
491 run_command tagtrack-
$1 $TAGGER $TAGGEROPTS -c "$COMMENTOUTPUT" \
492 -A "$DALBUM" -a "$TRACKARTIST" -t "$TRACKNAME" -y "$CDYEAR" \
493 -g "$GENREID" -T "${TRACKNUM:-$1/$TRACKS}" \
494 "$ABCDETEMPDIR/track$1.$OUTPUT"
497 case "$OGGENCODERSYNTAX" in
499 # vorbiscomment can't do in-place modification, mv the file first
500 if [ -f "$ABCDETEMPDIR/track$1.$OUTPUT" -a ! -f "$ABCDETEMPDIR/track$1.uncommented.$OUTPUT" ]; then
501 mv "$ABCDETEMPDIR/track$1.$OUTPUT" "$ABCDETEMPDIR/track$1.uncommented.$OUTPUT"
504 # These are from http://www.xiph.org/ogg/vorbis/doc/v-comment.html
505 echo ARTIST
="$TRACKARTIST"
507 echo TITLE
="$TRACKNAME"
508 if [ -n "$CDYEAR" ]; then
511 if [ -n "$CDGENRE" ]; then
512 echo GENRE
="$CDGENRE"
514 echo TRACKNUMBER
=${TRACKNUM:-$1}
515 echo CDDB
=$CDDBDISCID
516 if [ "$(eval echo ${COMMENT})" != "" ]; then
517 case "$COMMENTOUTPUT" in
518 *=*) echo "$COMMENTOUTPUT";;
519 *) echo COMMENT
="$COMMENTOUTPUT";;
522 ) | run_command tagtrack-
$1 $VORBISCOMMENT $VORBISCOMMENTOPTS -w \
523 "$ABCDETEMPDIR/track$1.uncommented.$OUTPUT" "$ABCDETEMPDIR/track$1.$OUTPUT"
524 # Doublecheck that the commented file was created successfully before wiping the original
525 if [ -f "$ABCDETEMPDIR/track$1.$OUTPUT" ]; then
526 rm -f "$ABCDETEMPDIR/track$1.uncommented.$OUTPUT"
528 mv "$ABCDETEMPDIR/track$1.uncommented.$OUTPUT" "$ABCDETEMPDIR/track$1.$OUTPUT"
534 ## FIXME ## [ "$FLACONOGG" = "y" ] && OUTPUT=ogg
536 echo ARTIST
="$TRACKARTIST"
538 echo TITLE
="$TRACKNAME"
539 if [ -n "$CDYEAR" ]; then
542 if [ -n "$CDGENRE" ]; then
543 echo GENRE
="$CDGENRE"
545 echo TRACKNUMBER
=${TRACKNUM:-$1}
546 echo CDDB
=$CDDBDISCID
547 if [ "$(eval echo ${COMMENT})" != "" ]; then
548 case "$COMMENTOUTPUT" in
549 *=*) echo "$COMMENTOUTPUT";;
550 *) echo COMMENT
="$COMMENTOUTPUT";;
553 ) | run_command tagtrack-
$1 $METAFLAC $METAFLACOPTS --import-tags-from=- "$ABCDETEMPDIR/track$1.$OUTPUT"
556 run_command tagtrack-
$1 true
559 run_command tagtrack-
$1 true
567 # OUTPUTTYPE, {FOO}ENCODERSYNTAX, ENCNICE, ENCODER, ENCODEROPTS
570 # The commands here don't go through run_command because they're never supposed to be silenced
571 echo "Batch encoding tracks: $TRACKQUEUE"
572 OUTPUT
=$
(echo $OUTPUTTYPE |
grep "mp3" )
575 case "$MP3ENCODERSYNTAX" in
580 for UTRACKNUM
in $TRACKQUEUE
582 TRACKFILES
="$TRACKFILES track$UTRACKNUM.wav"
584 nice
$ENCNICE $MP3ENCODER $MP3ENCODEROPTS --nogap $TRACKFILES
586 if [ "$RETURN" != "0" ]; then
587 echo "batch-encode: $ENCODER returned code $RETURN" >> errors
589 for UTRACKNUM
in $TRACKQUEUE
591 echo encodetrack-
$UTRACKNUM >> status
599 # Other encoders fall through to normal encoding as the tracks
600 # have not been entered in the status file.
603 # do_encode [tracknumber] [hostname]
604 # If no hostname is specified, encode locally
606 # TRACKS, TRACKNAME, TRACKARTIST, DISTMP3, DISTMP3OPTS, {FOO}ENCODERSYNTAX, OUTPUTTYPE, ENCODEROPTS, DALBUM, DARTIST, ENCNICE, CDYEAR, CDGENRE, COMMENT
609 if [ "$USEPIPES" = "y" ]; then
612 TEMPARG
="PIPE_$MP3ENCODERSYNTAX"
615 TEMPARG
="PIPE_$OGGENCODERSYNTAX"
618 TEMPARG
="PIPE_$FLACENCODERSYNTAX"
621 TEMPARG
="PIPE_$SPEEXENCODER"
624 TEMPARG
="PIPE_$MPPENCODER"
629 IN
="$ABCDETEMPDIR/track$1.wav"
632 case "$MP3ENCODERSYNTAX" in
633 # FIXME # check if mp3enc needs -if for pipes
647 # We need IN to proceed, if we are not using pipes.
648 if [ -s "$IN" -o X
"$USEPIPES" = "Xy" ] ; then
649 for OUTPUT
in $
(echo $OUTPUTTYPE |
tr , \
)
651 OUT
="$ABCDETEMPDIR/track$1.$OUTPUT"
652 if [ X
"$USEPIPES" = "Xy" ]; then
655 run_command
'' echo "Encoding track $1 of $TRACKS: $TRACKNAME..."
656 RUN_COMMAND
="run_command encodetrack-$OUTPUT-$1"
662 case "$MP3ENCODERSYNTAX" in
663 lame|gogo
) $RUN_COMMAND nice
$ENCNICE $MP3ENCODER $MP3ENCODEROPTS "$IN" "$OUT" ;;
664 bladeenc
) $RUN_COMMAND nice
$ENCNICE $MP3ENCODER $MP3ENCODEROPTS -quit "$IN" ;;
665 l3enc|xingmp3enc
) $RUN_COMMAND nice
$ENCNICE $MP3ENCODER "$IN" "$OUT" $MP3ENCODEROPTS ;;
666 # FIXME # Relates to the previous FIXME since it might need the "-if" removed.
667 mp3enc
) $RUN_COMMAND nice
$ENCNICE $MP3ENCODER -if "$IN" -of "$OUT" $MP3ENCODEROPTS ;;
671 $RUN_COMMAND nice
$DISTMP3NICE $DISTMP3 $DISTMP3OPTS "$2" "$IN" "$OUT" >/dev
/null
2>&1
678 case "$OGGENCODERSYNTAX" in
679 vorbize
) $RUN_COMMAND nice
$ENCNICE $OGGENCODER $OGGENCODEROPTS -w "$OUT" "$IN" ;;
680 oggenc
) $RUN_COMMAND nice
$ENCNICE $OGGENCODER $OGGENCODEROPTS -o "$OUT" "$IN" ;;
684 $RUN_COMMAND nice
$DISTMP3NICE $DISTMP3 $DISTMP3OPTS "$2" "$IN" "$OUT" >/dev
/null
2>&1
691 case "$FLACENCODERSYNTAX" in
692 flac
) $RUN_COMMAND nice
$ENCNICE $FLACENCODER $FLACENCODEROPTS -o "$OUT" "$IN" ;;
698 echo "$DISTMP3 $DISTMP3OPTS $2 $IN $OUT >/dev/null 2>&1"
699 $RUN_COMMAND nice
$DISTMP3NICE $DISTMP3 $DISTMP3OPTS "$2" "$IN" "$OUT" > /dev
/null
2>&1
704 if [ "$(eval echo ${COMMENT})" != "" ]; then
707 *) COMMENT
="COMMENT=$COMMENT" ;;
709 COMMENT
="--comment \"$COMMENT\""
711 # Quick hack to avoid tagging Ogg/Speex, since there is no other way to tag than inline tagging
712 if [ ! "$DOTAG" = "y" ]; then
713 $RUN_COMMAND nice
$ENCNICE $SPEEXENCODER $SPEEXENCODEROPTS --author "$TRACKARTIST" --title "$TRACKNAME" "$COMMENT" "$IN" "$OUT"
715 $RUN_COMMAND nice
$ENCNICE $SPEEXENCODER $SPEEXENCODEROPTS "$IN" "$OUT"
719 # MPP/MP+(Musepack) format (.mpc) is done locally, with inline
721 # I tried compiling the mppenc from corecodecs.org and got some
722 # errors, so I have not tried it myself.
723 ## FIXME ## Needs some cleanup to determine if an empty tag sent
724 ## FIXME ## to the encoder ends up empty.
725 $RUN_COMMAND nice
$ENCNICE $MPPENCODER $MPPENCODEROPTS --artist "$TRACKARTIST" --album "$DALBUM" --title "$TRACKNAME" --track "$1" --genre "$CDGENRE" --year "$CDYEAR" --comment "$COMMENT" "$IN" "$OUT"
729 # Only remove .wav if the encoding succeeded
730 if checkerrors
"encodetrack-(.{3,4})-$1"; then
731 run_command encodetrack-
$1 false
733 run_command encodetrack-
$1 true
734 if [ ! "$KEEPWAVS" = "y" ] ; then
739 if [ "$(checkstatus encode-output)" = "loud" ]; then
740 echo "HEH! The file we were about to encode disappeared:"
743 run_command encodetrack-
$1 false
747 # do_preprocess [tracknumber]
749 # TRACKS, TRACKNAME, TRACKARTIST, DISTMP3, DISTMP3OPTS, {FOO}ENCODERSYNTAX, OUTPUTTYPE, ENCODEROPTS, DALBUM, DARTIST, ENCNICE, CDYEAR, CDGENRE, COMMENT
752 # IN="$ABCDETEMPDIR/track$1.wav"
753 # # We need IN to proceed.
754 # if [ -s "$IN" ] ; then
755 # for OUTPUT in $(echo $OUTPUTTYPE | tr , \ )
757 # #OUT="$ABCDETEMPDIR/track$1.$OUTPUT"
758 # run_command '' echo "Pre-processing track $1 of $TRACKS..."
759 # case "$POSTPROCESSFORMAT" in
761 # run_command preprocess-$OUTPUT-$1 nice $PRENICE $WAV_PRE $IF $OF ;;
763 # run_command preprocess-$OUTPUT-$1 nice $PRENICE $MP3_PRE $IF $OF ;;
765 # run_command preprocess-$OUTPUT-$1 nice $PRENICE $OGG_PRE $IF $OF ;;
767 # run_command preprocess-$OUTPUT-$1 nice $PRENICE $FLAC_PRE $IF $OF ;;
769 # run_command preprocess-$OUTPUT-$1 nice $PRENICE $SPX_PRE $IF $OF ;;
772 # # Only remove .wav if the encoding succeeded
773 # if checkerrors "preprocess-(.{3,4})-$1"; then
774 # run_command preprocess-$1 false
776 # run_command preprocess-$1 true
779 # if [ "$(checkstatus encode-output)" = "loud" ]; then
780 # echo "HEH! The file we were about to pre-process disappeared:"
783 # run_command preprocess-$1 false
788 # do_postprocess [tracknumber]
790 # TRACKS, TRACKNAME, TRACKARTIST, DISTMP3, DISTMP3OPTS, {FOO}ENCODERSYNTAX, OUTPUTTYPE, ENCODEROPTS, DALBUM, DARTIST, ENCNICE, CDYEAR, CDGENRE, COMMENT
793 # for POSTPROCESSFORMAT in $(echo $POSTPROCESSFORMATS | tr , \ )
795 # IN="$ABCDETEMPDIR/track$1.$POSTPROCESSFORMAT"
796 # # We need IN to proceed.
797 # if [ -s "$IN" ] ; then
798 # #OUT="$ABCDETEMPDIR/track$1.$OUTPUT"
799 # run_command '' echo "Post-processing track $1 of $TRACKS..."
800 # case "$POSTPROCESSFORMAT" in
802 # run_command postprocess-$OUTPUT-$1 nice $POSTNICE $MP3_POST $IF $OF ;;
804 # run_command postprocess-$OUTPUT-$1 nice $POSTNICE $OGG_POST $IF $OF ;;
806 # run_command postprocess-$OUTPUT-$1 nice $POSTNICE $FLAC_POST $IF $OF ;;
808 # run_command postprocess-$OUTPUT-$1 nice $POSTNICE $SPX_POST $IF $OF ;;
810 # # Only remove .wav if the encoding succeeded
811 # if checkerrors "postprocess-(.{3,4})-$1"; then
812 # run_command postprocess-$1 false
814 # run_command postprocess-$1 true
817 # if [ "$(checkstatus encode-output)" = "loud" ]; then
818 # echo "HEH! The file we were about to post-process disappeared:"
821 # run_command postprocess-$1 false
836 # MP3GAIN, MP3GAINOPTS, VORBISGAIN, VORBISGAINOPTS
840 # The commands here don't go through run_command because they're never supposed to be silenced
841 echo "Batch analizing gain in tracks: $TRACKQUEUE"
846 for UTRACKNUM
in $TRACKQUEUE
848 MP3FILES
="$TRACKFILES track$UTRACKNUM.mp3"
850 # XXX: Hard-coded batch option!
851 $NORMALIZER -b $NORMALIZEROPTS $TRACKFILES
853 if [ "$RETURN" != "0" ]; then
854 echo "batch-normalize: $NORMALIZER returned code $RETURN" >> errors
856 for UTRACKNUM
in $TRACKQUEUE
858 echo normalizetrack-
$UTRACKNUM >> status
866 # NORMALIZER, NORMALIZEROPTS
867 do_batch_normalize
()
869 # The commands here don't go through run_command because they're never supposed to be silenced
870 echo "Batch normalizing tracks: $TRACKQUEUE"
875 for UTRACKNUM
in $TRACKQUEUE
877 TRACKFILES
="$TRACKFILES track$UTRACKNUM.wav"
879 # XXX: Hard-coded batch option!
880 $NORMALIZER -b $NORMALIZEROPTS $TRACKFILES
882 if [ "$RETURN" != "0" ]; then
883 echo "batch-normalize: $NORMALIZER returned code $RETURN" >> errors
885 for UTRACKNUM
in $TRACKQUEUE
887 echo normalizetrack-
$UTRACKNUM >> status
893 # do_normalize [tracknumber]
895 # TRACKS, TRACKNAME, NORMALIZER, NORMALIZEROPTS
898 IN
="$ABCDETEMPDIR/track$1.wav"
899 if [ -e "$IN" ] ; then
900 run_command
'' echo "Normalizing track $1 of $TRACKS: $TRACKNAME..."
901 run_command normalizetrack-
$1 $NORMALIZER $NORMALIZEROPTS "$IN"
903 if [ "$(checkstatus encode-output)" = "loud" ]; then
904 echo "HEH! The file we were about to normalize disappeared:"
907 run_command normalizetrack-
$1 false
"File $IN was not found"
911 # do_move [tracknumber]
912 # Deduces the outfile from environment variables
913 # Creates directory if necessary
915 # TRACKNUM, TRACKNAME, TRACKARTIST, DALBUM, OUTPUTFORMAT, CDGENRE, CDYEAR
918 for OUTPUT
in $
(echo $OUTPUTTYPE |
tr , \
)
920 # Create ALBUMFILE, ARTISTFILE, TRACKFILE
921 # Munge filenames as follows:
926 # Eat control characters
927 ALBUMFILE
=$
(mungefilename
"$DALBUM")
928 ARTISTFILE
=$
(mungefilename
"$TRACKARTIST")
929 TRACKFILE
=$
(mungefilename
"$TRACKNAME")
930 GENRE
=$
(mungegenre
"$GENRE")
932 # If we want to start the tracks with a given number, we need to modify the
933 # TRACKNUM value before evaluation
934 if [ -n "$STARTTRACKNUMBER" ] ; then
935 # Get the trackpadding from the current track
936 CURRENTTRACKPADDING
=$
(echo -n $UTRACKNUM |
wc -c)
937 TRACKNUM
=$
( printf %0.
${CURRENTTRACKPADDING}d $(expr ${UTRACKNUM} + ${STARTTRACKNUMBER} - $FIRSTTRACK ))
939 TRACKNUM
=${UTRACKNUM}
941 # Supported variables for OUTPUTFORMAT are GENRE, ALBUMFILE, ARTISTFILE,
942 # TRACKFILE, and TRACKNUM.
943 if [ "$VARIOUSARTISTS" = "y" ]; then
944 OUTPUTFILE
=$
(eval echo $VAOUTPUTFORMAT)
946 OUTPUTFILE
=$
(eval echo $OUTPUTFORMAT)
948 # Check that the directory for OUTPUTFILE exists, if it doesn't, create it
949 OUTPUTFILEDIR
=$
(dirname "$OUTPUTDIR/$OUTPUTFILE")
950 # mkdir -p shouldn't return an error if the directory already exists
951 mkdir
-p "$OUTPUTFILEDIR"
952 run_command movetrack-
$1 mv "$ABCDETEMPDIR/track$1.$OUTPUT" "$OUTPUTDIR/$OUTPUTFILE.$OUTPUT"
957 # Create the playlist if wanted
959 # PLAYLISTFORMAT, PLAYLISTDATAPREFIX, VAPLAYLISTFORMAT, VAPLAYLISTDATAPREFIX,
960 # VARIOUSARTISTS, OUTPUTDIR
963 for OUTPUT
in $
(echo $OUTPUTTYPE |
tr , \
)
965 # Create a playlist file for the playlist data to go into.
966 # We used to wipe it out if it existed. Now we request permision if interactive.
967 for LASTTRACK
in $TRACKQUEUE; do :; done
968 ALBUMFILE
=$
(mungefilename
"$DALBUM")
969 ARTISTFILE
=$
(mungefilename
"$DARTIST")
970 GENRE
=$
(mungegenre
"$GENRE")
971 if [ "$VARIOUSARTISTS" = "y" ] ; then
972 PLAYLISTFILE
=$
(eval echo $VAPLAYLISTFORMAT)
974 PLAYLISTFILE
=$
(eval echo $PLAYLISTFORMAT)
976 FINALPLAYLISTDIR
=$
(dirname "$OUTPUTDIR/$PLAYLISTFILE")
977 mkdir
-p "$FINALPLAYLISTDIR"
978 if [ -s "$OUTPUTDIR/$PLAYLISTFILE" ]; then
979 echo -n "Erase, Append to, or Keep the existing playlist file? [e/a/k] (e): " >&2
980 if [ "$INTERACTIVE" = "y" ]; then
981 while [ "$DONE" != "y" ]; do
983 case $ERASEPLAYLIST in
984 e|E|a|A|k|K
) DONE
=y
;;
992 # Once we erase the playlist, we use append to create the new one.
993 [ "$ERASEPLAYLIST" = "e" -o "$ERASEPLAYLIST" = "E" ] && rm -f "$OUTPUTDIR/$PLAYLISTFILE" && ERASEPLAYLIST
=a
995 # The playlist does not exist, so we can safelly use append to create the new list
998 if [ "$ERASEPLAYLIST" = "a" -o "$ERASEPLAYLIST" = "A" ]; then
999 touch "$OUTPUTDIR/$PLAYLISTFILE"
1000 for UTRACKNUM
in $TRACKQUEUE
1002 # Shares some code with do_move since the filenames have to match
1003 CDDBTRACKNUM
=$
(expr $UTRACKNUM - 1)
1004 TRACKNAME
=$
(grep ^TTITLE
$CDDBTRACKNUM= "$CDDBDATA" | cut
-f2 -d= |
tr -d \
[:cntrl
:\
] |
sed 's/\ \+$//')
1006 TRACKFILE
=$
(mungefilename
"$TRACKNAME")
1007 ARTISTFILE
=$
(mungefilename
"$TRACKARTIST")
1008 # If we want to start the tracks with a given number, we need to modify the
1009 # TRACKNUM value before evaluation
1010 if [ -n "$STARTTRACKNUMBER" ] ; then
1011 # Get the trackpadding from the current track
1012 CURRENTTRACKPADDING
=$
(echo -n $UTRACKNUM |
wc -c)
1013 TRACKNUM
=$
( printf %0.
${CURRENTTRACKPADDING}d $(expr ${UTRACKNUM} + ${STARTTRACKNUMBER} - $FIRSTTRACK ))
1015 TRACKNUM
=${UTRACKNUM}
1017 if [ "$VARIOUSARTISTS" = "y" ]; then
1018 OUTPUTFILE
=$
(eval echo $VAOUTPUTFORMAT)
1020 OUTPUTFILE
=$
(eval echo $OUTPUTFORMAT)
1022 if [ "$VARIOUSARTISTS" = "y" ]; then
1023 if [ "$VAPLAYLISTDATAPREFIX" ] ; then
1024 echo ${VAPLAYLISTDATAPREFIX}$OUTPUTFILE.
$OUTPUT >> "$OUTPUTDIR/$PLAYLISTFILE"
1026 relpath
"$PLAYLISTFILE", "$OUTPUTFILE.$OUTPUT" >> "$OUTPUTDIR/$PLAYLISTFILE"
1029 if [ "$PLAYLISTDATAPREFIX" ]; then
1030 echo ${PLAYLISTDATAPREFIX}$OUTPUTFILE.
$OUTPUT >> "$OUTPUTDIR/$PLAYLISTFILE"
1032 relpath
"$PLAYLISTFILE", "$OUTPUTFILE.$OUTPUT" >> "$OUTPUTDIR/$PLAYLISTFILE"
1037 ## this will convert the playlist to have CRLF line-endings, if specified
1038 ## (some hardware players insist on CRLF endings)
1039 if [ "$DOSPLAYLIST" = "y" ]; then
1040 awk '{substr("\r",""); printf "%s\r\n", $0}' "$OUTPUTDIR/$PLAYLISTFILE" > "$ABCDETEMPDIR/PLAYLISTFILE.tmp"
1041 # mv -f "$ABCDETEMPDIR/PLAYLISTFILE.tmp" "$OUTPUTDIR/$PLAYLISTFILE"
1042 cat "$ABCDETEMPDIR/PLAYLISTFILE.tmp" |
sed 's/\//\\/' > "$OUTPUTDIR/$PLAYLISTFILE"
1044 echo "playlistcomplete" >> "$ABCDETEMPDIR/status"
1049 # This essentially the start of things
1052 # Query the CD to get the track info, unless the user specified -C
1053 # or we are using some actions which do not need the CDDB data at all
1054 #if [ ! X"$EXPACTIONS" = "X" ]; then
1056 #elif [ -z "$DISCID" ]; then
1057 if [ -z "$DISCID" ]; then
1058 vecho
-n "Getting CD track info... "
1059 if [ "$OSFLAVOUR" = "OSX" ]; then
1060 disktool
-u ${CDROM#/dev/}
1062 TRACKINFO
=$
($CDDISCID $CDROM)
1063 if [ "$OSFLAVOUR" = "OSX" ]; then
1064 disktool
-m ${CDROM#/dev/}
1066 # Make sure there's a CD in there by checking cd-discid's return code
1067 if [ "$?" = "1" ]; then
1068 echo "abcde error: CD could not be read. Perhaps there's no CD in the drive?" >&2
1073 TRACKINFO
=$
(cat "$WAVOUTPUTDIR/abcde.$DISCID/discid")
1076 # Get a full enumeration of tracks, sort it, and put it in the TRACKQUEUE.
1077 # This needs to be done now because a section of the resuming code will need
1080 # get the number of digits to pad TRACKNUM with - we'll use this later
1081 # a CD can only hold 99 tracks, but since we support a feature for starting
1082 # numbering the tracks from a given number, we might need to set it as a
1083 # variable for the user to define... or obtain it somehow.
1084 if [ "$PADTRACKS" = "y" ] ; then
1088 ABCDETEMPDIR
="$WAVOUTPUTDIR/abcde.$(echo $TRACKINFO | cut -f1 -d' ')"
1089 if [ -z "$TRACKQUEUE" ]; then
1090 if [ ! "$STRIPDATATRACKS" = "y" ]; then
1091 case "$CDROMREADERSYNTAX" in
1093 if [ "$WEHAVEACD" = "y" ]; then
1094 vecho
"Querying the CD for audio tracks..."
1095 CDPARANOIAOUTPUT
="$( $CDROMREADER -d $CDROM -Q --verbose 2>&1 )"
1097 if [ ! "$RET" = "0" ];then
1098 echo "Warning: Something went wrong while querying the CD... Maybe a DATA CD?"
1100 TRACKS
="$( echo "$CDPARANOIAOUTPUT" | egrep '^[[:space:]]+[[:digit:]]' | tail -n 1 | get_first | tr -d ".
" | tr '\n' ' ' )"
1101 CDPARANOIAAUDIOTRACKS
="$TRACKS"
1103 if [ -f "$ABCDETEMPDIR/status" ] && checkstatus cdparanoia-audio-tracks
; then
1104 TRACKS
=$
( cat $ABCDETEMPDIR/cdparanoia-audio-tracks
)
1106 TRACKS
=$
(echo $TRACKINFO | cut
-f2 -d' ')
1110 *) TRACKS
=$
(echo $TRACKINFO | cut
-f2 -d' ') ;;
1113 TRACKS
=$
(echo $TRACKINFO | cut
-f2 -d' ')
1115 if echo "$TRACKS" |
grep "[[:digit:]]" > /dev
/null
2>&1 ;then :;else
1116 echo "The disc does not contain any tracks. Giving up..."
1119 echo -n "Grabbing entire CD - tracks: "
1120 if [ ! "$PADTRACKS" = "y" ] ; then
1121 TRACKNUMPADDING
=$
(echo -n $TRACKS |
wc -c |
tr -d ' ')
1123 TRACKS
=$
(printf "%0.${TRACKNUMPADDING}d" $TRACKS)
1125 while [ "$X" -ne "$TRACKS" ]
1127 X
=$
(printf "%0.${TRACKNUMPADDING}d" $
(expr $X + 1))
1128 TRACKQUEUE
=$
(echo "$TRACKQUEUE" $X)
1132 TRACKS
=$
(echo $TRACKINFO | cut
-f2 -d' ')
1133 # User-supplied track queue.
1134 # Weed out non-numbers, whitespace, then sort and weed out duplicates
1135 TRACKQUEUE
=$
(echo $TRACKQUEUE |
sed 's-[^0-9 ]--g' |
tr ' ' '\n' |
grep -v ^$ |
sort -n |
uniq |
tr '\n' ' ' |
sed 's- $--g')
1136 # Once cleaned, obtain the highest value in the trackqueue for number padding
1137 for LASTTRACK
in $TRACKQUEUE; do :; done
1138 if [ ! "$PADTRACKS" = "y" ] ; then
1139 TRACKNUMPADDING
=$
(echo -n $LASTTRACK |
wc -c |
tr -d ' ')
1141 # Now we normalize the trackqueue
1142 for TRACK
in $TRACKQUEUE ; do
1143 TRACKNUM
=$
(printf %0.
${TRACKNUMPADDING}d $
(expr ${TRACK} + 0 ))
1144 PADTRACKQUEUE
=$
(echo $PADTRACKQUEUE $TRACKNUM)
1146 TRACKQUEUE
=$PADTRACKQUEUE
1147 echo Grabbing tracks
: "$TRACKQUEUE"
1150 QUEUEDTRACKS
=$
(echo $TRACKQUEUE |
wc -w |
tr -d ' ')
1152 # We have the discid, create a temp directory after it to store all the temp
1155 if [ -e "$ABCDETEMPDIR" ]; then
1156 echo -n "abcde: attempting to resume from $ABCDETEMPDIR"
1157 # It already exists, see if it's a directory
1158 if [ ! -d "$ABCDETEMPDIR" ]; then
1159 # This is a file/socket/fifo/device/etc, not a directory
1162 echo "abcde: file $ABCDETEMPDIR already exists and does not belong to abcde." >&2
1163 echo "Please investigate, remove it, and rerun abcde." >&2
1167 # It's a directory, let's see if it's owned by us
1168 if [ ! -O "$ABCDETEMPDIR" ]; then
1169 # Nope, complain and exit
1171 echo "abcde: directory $ABCDETEMPDIR already exists and is not owned by you." >&2
1172 echo "Please investigate, remove it, and rerun abcde." >&2
1176 # See if it's populated
1177 if [ ! -f "$ABCDETEMPDIR/discid" ]; then
1178 # Wipe and start fresh
1179 echo "abcde: $ABCDETEMPDIR/discid not found. Abcde must remove and recreate" >&2
1180 echo -n "this directory to continue. Continue? [y/n] (n)" >&2
1181 if [ "$INTERACTIVE" = "y" ]; then
1187 if [ "$ANSWER" != "y" ]; then
1190 rm -rf "$ABCDETEMPDIR" ||
exit 1
1191 mkdir
"$ABCDETEMPDIR"
1192 if [ "$?" -gt "0" ]; then
1193 # Directory already exists or could not be created
1194 echo "abcde: Temp directory $ABCDETEMPDIR could not be created." >&2
1198 # Everything is fine. Check for ^encodetracklocation-
1199 # and encode-output entries in the status file and
1200 # remove them. These are not relevant across sessions.
1201 if [ -f "$ABCDETEMPDIR/status" ]; then
1202 mv "$ABCDETEMPDIR/status" "$ABCDETEMPDIR/status.old"
1203 grep -v ^encodetracklocation-
< "$ABCDETEMPDIR/status.old" \
1204 |
grep -v ^encode-output
> "$ABCDETEMPDIR/status"
1206 # Remove old error messages
1207 if [ -f "$ABCDETEMPDIR/errors" ]; then
1208 rm -f "$ABCDETEMPDIR/errors"
1212 # We are starting from scratch
1213 mkdir
"$ABCDETEMPDIR"
1214 if [ "$?" -gt "0" ]; then
1215 # Directory already exists or could not be created
1216 echo "abcde: Temp directory $ABCDETEMPDIR could not be created." >&2
1219 cat /dev
/null
> "$ABCDETEMPDIR/status"
1221 if [ X
"$CUEFILE" = "Xy" -a X
"$WEHAVEACD" = "Xy" ]; then
1222 if checkstatus cuefile
>/dev
/null
; then :; else
1223 CUEFILE
=cue-$
(echo $TRACKINFO | cut
-f3 -d' ').txt
1224 $MKCUE $MKCUEOPTS > $ABCDETEMPDIR/$CUEFILE
1225 echo cuefile
=$CUEFILE >> "$ABCDETEMPDIR/status"
1228 # If we got the CDPARANOIA status and it is not recorded, save it now
1229 if [ -n "$CDPARANOIAAUDIOTRACKS" ]; then
1230 if checkstatus cdparanoia-audio-tracks
; then :; else
1231 if echo "$CDPARANOIAAUDIOTRACKS" >> "$ABCDETEMPDIR/cdparanoia-audio-tracks"; then
1232 echo "cdparanoia-audio-tracks" >> "$ABCDETEMPDIR/status"
1237 # Create the discid file
1238 echo "$TRACKINFO" > "$ABCDETEMPDIR/discid"
1242 # Create a proper CUE file based on the CUE file we created before.
1245 if checkstatus cuefile
; then :; else
1246 $CUEFILE_INPUT="$ABCDETEMPDIR/cue-$(echo $TRACKINFO | cut -f1 -d' ').txt"
1247 ### FIXME ### checkstatus cddb
1248 if [ "$DOCDDB" = "y" ]; then
1255 # Parses a CDDB file and outputs the title and the track names.
1256 # Variables: CDDBFILE
1260 # List out disc title/author and contents
1261 if [ "$ONETRACK" = "y" ]; then
1262 vecho
"ONETRACK mode selected: displaying only the title of the CD..."
1264 echo "---- $(grep DTITLE "${CDDBPARSEFILE}" | cut '-d=' -f2- | tr -d \\r\\n ) ----"
1265 if [ ! "$ONETRACK" = "y" ]; then
1266 for TRACK
in $
(f_seq_row
1 $TRACKS)
1268 echo $TRACK: "$(grep ^TTITLE$(expr $TRACK - 1)= "${CDDBPARSEFILE}" | cut -f2- -d= | tr -d \\r\\n)"
1274 # Check for a local CDDB file, and report success
1277 if checkstatus cddb-readcomplete
&& checkstatus cddb-choice
>/dev
/null
; then :; else
1279 CDDBLOCALSUCCESS
="n"
1280 CDDBDISCID
=$
(echo $TRACKINFO | cut
-d' ' -f1)
1281 CDDBLOCALFILE
="${CDDBLOCALDIR}/${CDDBDISCID}"
1284 # If the user has selected to check a local CDDB repo, we proceed with it
1285 if [ -r "${CDDBLOCALFILE}" ]; then
1286 # List out disc title/author and contents
1287 do_cddbparse
"${CDDBLOCALFILE}"
1288 echo -n "Locally cached CDDB entry found, use it? [y/n] (y): "
1289 if [ "$INTERACTIVE" = "y" ]; then
1291 while [ "$USELOCALRESP" != "y" ] && [ "$USELOCALRESP" != "n" ] && [ "$USELOCALRESP" != "" ] ; do
1292 echo -n 'Invalid selection. Please answer "y" or "n": '
1295 [ x
"$USELOCALRESP" = "x" ] && USELOCALRESP
="y"
1299 if [ "$USELOCALRESP" = "y" ]; then
1300 #echo "Using local copy of CDDB data"
1301 cp "${CDDBLOCALFILE}" "$ABCDETEMPDIR/cddbread.1"
1302 echo 999 > "$ABCDETEMPDIR/cddbquery" # Assuming 999 isn't used by CDDB
1303 echo cddb-readcomplete
>> "$ABCDETEMPDIR/status"
1304 do_cddbparse
"${CDDBLOCALFILE}" > "$ABCDETEMPDIR/cddbchoices"
1305 echo cddb-choice
=1 >> "$ABCDETEMPDIR/status"
1306 CDDBLOCALSUCCESS
="y"
1308 #echo "Not using local copy of CDDB data"
1309 CDDBLOCALSUCCESS
="n"
1312 CDDBLOCALSUCCESS
="n"
1320 # Perform CDDB protocol version check if it hasn't already been done
1321 if checkstatus cddb-statcomplete
; then :; else
1322 if [ "$CDDBAVAIL" = "n" ]; then
1324 echo 503 > "$ABCDETEMPDIR/cddbstat"
1327 CDDBUSER
=$
(echo $HELLOINFO | cut
-f1 -d'@')
1328 CDDBHOST
=$
(echo $HELLOINFO | cut
-f2- -d'@')
1329 while test $rc -eq 1 -a $CDDBPROTO -ge 3; do
1330 vecho
"Checking CDDB server status..."
1331 $CDDBTOOL stat
$CDDBURL $CDDBUSER $CDDBHOST $CDDBPROTO > "$ABCDETEMPDIR/cddbstat"
1332 RESPONSECODE
=$
(head -n 1 "$ABCDETEMPDIR/cddbstat" | cut
-f1 -d' ')
1333 case "$RESPONSECODE" in
1334 210) # 210 OK, status information follows (until terminating `.')
1337 501|
*) # 501 Illegal CDDB protocol level: <n>.
1338 CDDBPROTO
=`expr $CDDBPROTO - 1`
1342 if test $rc -eq 1; then
1346 echo cddb-statcomplete
>> "$ABCDETEMPDIR/status"
1354 CDDBDISCID
=$
(echo $TRACKINFO | cut
-d' ' -f1)
1355 CDDBLOCALFILE
="${CDDBLOCALDIR}/${CDDBDISCID}"
1357 # Perform CDDB query if it hasn't already been done
1358 if checkstatus cddb-querycomplete
; then :; else
1359 if [ "$CDDBAVAIL" = "n" ]; then
1361 echo 503 > "$ABCDETEMPDIR/cddbquery"
1362 # The default CDDBLOCALSUCCESS is "n"
1363 # This part will be triggered if the user CDDB repo does not
1364 # contain the entry, or if we are not trying to use the repo.
1366 vecho
"Querying the CDDB server..."
1367 CDDBUSER
=$
(echo $HELLOINFO | cut
-f1 -d'@')
1368 CDDBHOST
=$
(echo $HELLOINFO | cut
-f2- -d'@')
1369 $CDDBTOOL query
$CDDBURL $CDDBPROTO $CDDBUSER $CDDBHOST $TRACKINFO > "$ABCDETEMPDIR/cddbquery"
1375 # no match found in database,
1376 # wget/fetch error, or user requested not to use CDDB
1377 # Make up an error code (503) that abcde
1378 # will recognize in do_cddbread
1379 # and compensate by making a template
1380 echo 503 > "$ABCDETEMPDIR/cddbquery"
1382 *) # strange and unknown error
1383 echo ERRORCODE
=$ERRORCODE
1384 echo "abcde: $CDDBTOOL returned unknown error code"
1388 echo cddb-querycomplete
>> "$ABCDETEMPDIR/status"
1395 # If it's not to be used, generate a template.
1396 # Then, display it (or them) and let the user choose/edit it
1397 if checkstatus cddb-readcomplete
; then :; else
1398 vecho
"Obtaining CDDB results..."
1399 # If CDDB is to be used, interpret the query results and read all
1400 # the available entries.
1401 rm -f "$ABCDETEMPDIR/cddbchoices"
1402 CDDBCHOICES
=1 # Overridden by multiple matches
1403 RESPONSECODE
=$
(head -n 1 "$ABCDETEMPDIR/cddbquery" | cut
-f1 -d' ')
1404 case "$RESPONSECODE" in
1406 # One exact match, retrieve it
1407 # 200 [section] [discid] [artist] / [title]
1408 if checkstatus cddb-read-1-complete
; then :; else
1409 echo -n "Retrieving 1 CDDB match..." >> "$ABCDETEMPDIR/cddbchoices"
1410 $CDDBTOOL read $CDDBURL $CDDBPROTO $CDDBUSER $CDDBHOST $
(cut
-f2,3 -d' ' "$ABCDETEMPDIR/cddbquery") > "$ABCDETEMPDIR/cddbread.1"
1411 echo "done." >> "$ABCDETEMPDIR/cddbchoices"
1412 echo cddb-read-1-complete
>> "$ABCDETEMPDIR/status"
1413 echo cddb-choice
=1 >> "$ABCDETEMPDIR/status"
1415 # List out disc title/author and contents
1416 echo ---- "$(cut '-d ' -f4- "$ABCDETEMPDIR/cddbquery
")" ---- >> "$ABCDETEMPDIR/cddbchoices"
1417 for TRACK
in $
(f_seq_row
1 $TRACKS)
1419 echo $TRACK: "$(grep ^TTITLE$(expr $TRACK - 1)= "$ABCDETEMPDIR/cddbread
.1" | cut -f2- -d= | tr -d \\r\\n)" >> "$ABCDETEMPDIR/cddbchoices"
1421 echo >> "$ABCDETEMPDIR/cddbchoices"
1425 case "$RESPONSECODE" in
1426 202) echo "No CDDB match." >> "$ABCDETEMPDIR/cddbchoices" ;;
1427 403|
409) echo "CDDB entry is corrupt, or the handshake failed." >> "$ABCDETEMPDIR/cddbchoices" ;;
1428 503) echo "CDDB unavailable." >> "$ABCDETEMPDIR/cddbchoices" ;;
1430 $CDDBTOOL template $
(cat "$ABCDETEMPDIR/discid") > "$ABCDETEMPDIR/cddbread.0"
1431 # List out disc title/author and contents of template
1432 echo ---- Unknown Artist
/ Unknown Album
---- >> "$ABCDETEMPDIR/cddbchoices"
1434 for TRACK
in $
(f_seq_row
1 $TRACKS)
1436 echo $TRACK: "$(grep ^TTITLE$(expr $TRACK - 1)= "$ABCDETEMPDIR/cddbread
.0" | cut -f2- -d= | tr -d \\r\\n)" >> "$ABCDETEMPDIR/cddbchoices"
1438 echo >> "$ABCDETEMPDIR/cddbchoices"
1439 echo cddb-read-0-complete
>> "$ABCDETEMPDIR/status"
1440 echo cddb-choice
=0 >> "$ABCDETEMPDIR/status"
1443 # Multiple exact, (possibly multiple) inexact matches
1445 if [ "$RESPONSECODE" = "211" ]; then IN
=in; fi
1446 if [ "$(wc -l < $ABCDETEMPDIR/cddbquery | tr -d ' ')" -eq 3 ]; then
1447 echo "One ${IN}exact match:" >> "$ABCDETEMPDIR/cddbchoices"
1448 tail -n +2 "$ABCDETEMPDIR/cddbquery" |
head -n 1 >> "$ABCDETEMPDIR/cddbchoices"
1449 echo cddb-choice
=1 >> "$ABCDETEMPDIR/status"
1451 echo "Multiple ${IN}exact matches:" >> "$ABCDETEMPDIR/cddbchoices"
1453 vecho
-n "Retrieving multiple matches... "
1454 grep -v ^
[.
]$
"$ABCDETEMPDIR/cddbquery" |
( X
=0
1455 read DISCINFO
# eat top line
1459 if checkstatus cddb-read-
$X-complete; then :; else
1460 $CDDBTOOL read $CDDBURL $CDDBPROTO $CDDBUSER $CDDBHOST $
(echo $DISCINFO | cut
-f1,2 -d' ') > "$ABCDETEMPDIR/cddbread.$X"
1461 echo cddb-read-
$X-complete >> "$ABCDETEMPDIR/status"
1463 # List out disc title/author and contents
1464 echo \
#$X: ---- "$DISCINFO" ---- >> "$ABCDETEMPDIR/cddbchoices"
1465 for TRACK
in $
(f_seq_row
1 $TRACKS)
1467 echo $TRACK: "$(grep ^TTITLE$(expr $TRACK - 1)= "$ABCDETEMPDIR/cddbread.
$X" | cut -f2- -d= | tr -d \\r\\n)" >> "$ABCDETEMPDIR/cddbchoices"
1469 echo >> "$ABCDETEMPDIR/cddbchoices"
1472 CDDBCHOICES
=$
(expr $
(cat "$ABCDETEMPDIR/cddbquery" |
wc -l) - 2)
1476 for TRACK
in $
(f_seq_row
1 $TRACKS)
1478 echo $TRACK: "$(grep ^TTITLE$(expr $TRACK - 1)= "$ABCDETEMPDIR/cddbread
.1" | cut -f2- -d= | tr -d \\r\\n)" >> "$ABCDETEMPDIR/cddbchoices"
1480 echo >> "$ABCDETEMPDIR/cddbchoices"
1481 echo cddb-read-1-complete
>> "$ABCDETEMPDIR/status"
1482 echo cddb-choice
=1 >> "$ABCDETEMPDIR/status"
1485 echo "cddb-readcomplete" >> "$ABCDETEMPDIR/status"
1492 if checkstatus cddb-edit
>/dev
/null
; then
1493 CDDBDATA
="$ABCDETEMPDIR/cddbread.$(checkstatus cddb-choice)"
1494 VARIOUSARTISTS
="$(checkstatus variousartists)"
1495 VARIOUSARTISTSTYLE
="$(checkstatus variousartiststyle)"
1498 if [ "$INTERACTIVE" = "y" ]; then
1499 # We should show the CDDB results both when we are not using the local CDDB repo
1500 # or when we are using it but we could not find a proper match
1501 if [ "$CDDBUSELOCAL" = "y" ] && [ ! "$CDDBLOCALSUCCESS" = "y" ] ||
[ ! "$CDDBUSELOCAL" = "y" ]; then
1502 # Display the $ABCDETEMPDIR/cddbchoices file created above
1503 # Pick a pager so that if the tracks overflow the screen the user can still view everything
1504 if [ -r "$ABCDETEMPDIR/cddbchoices" ]; then
1505 CDDBCHOICES
=$
(expr $
(cat "$ABCDETEMPDIR/cddbquery" |
wc -l) - 2)
1506 CHOICE
=$
(checkstatus cddb-choice
)
1507 if [ -n "$CHOICE" ] ; then
1508 case $CDDBCHOICES in
1509 1) cat "$ABCDETEMPDIR/cddbchoices" ;;
1511 echo "Selected: #$CHOICE"
1512 do_cddbparse
"$ABCDETEMPDIR/cddbread.$CHOICE"
1516 # The user has a choice to make, display the info in a pager if necessary
1517 if [ $
(cat "$ABCDETEMPDIR/cddbchoices" |
wc -l) -ge 24 ]; then
1518 # Use the debian sensible-pager wrapper to pick the pager
1519 # user has requested via their $PAGER environment variable
1520 if [ -x "/usr/bin/sensible-pager" ]; then
1521 /usr
/bin
/sensible-pager
"$ABCDETEMPDIR/cddbchoices"
1522 elif [ -x "$PAGER" ]; then
1523 # That failed, try to load the preferred editor, starting
1524 # with their PAGER variable
1525 $PAGER "$ABCDETEMPDIR/cddbchoices"
1526 # If that fails, check for less
1527 elif [ -x /usr
/bin
/less ]; then
1528 /usr
/bin
/less -f "$ABCDETEMPDIR/cddbchoices"
1529 # more should be on all UNIX systems
1530 elif [ -x /bin
/more ]; then
1531 /bin
/more "$ABCDETEMPDIR/cddbchoices"
1533 # No bananas, just cat the thing
1534 cat "$ABCDETEMPDIR/cddbchoices" >&2
1537 # It's all going to fit in one page, cat it
1538 cat "$ABCDETEMPDIR/cddbchoices" >&2
1541 # I'll take CDDB read #3 for $400, Alex
1542 echo -n "Which entry would you like abcde to use (0 for none)? [0-$CDDBCHOICES]: " >&2
1544 [ X
"$CDDBCHOICE" = "X" ] && CDDBCHOICE
=1
1545 # Make sure we get a valid choice
1546 CDCHOICENUM
=$
(echo $CDDBCHOICE |
xargs printf %d
2>/dev
/null
)
1547 while [ $CDCHOICENUM -lt 0 ] ||
[ $CDCHOICENUM -gt $CDDBCHOICES ]; do
1548 echo "Invalid selection. Please choose a number between 1 and $CDDBCHOICES." >&2
1549 echo -n "Selection [0-$CDDBCHOICES]: " >&2
1551 CDCHOICENUM
=$
(echo $CDDBCHOICE |
xargs printf %d
2>/dev
/null
)
1553 if [ "$CDCHOICENUM" = "0" ]; then
1554 vecho
"Creating empty CDDB template..."
1556 $CDDBTOOL template $
(cat "$ABCDETEMPDIR/discid") > $ABCDETEMPDIR/cddbread
.0
1558 echo "Selected: #$CDCHOICENUM ($(grep ^DTITLE= $ABCDETEMPDIR/cddbread.$CDCHOICENUM | cut -f2- -d= | tr -d \\r\\n))" >&2
1559 do_cddbparse
"$ABCDETEMPDIR/cddbread.$CDCHOICENUM"
1561 echo "cddb-choice=$CDCHOICENUM" >> "$ABCDETEMPDIR/status"
1565 # We need some code to show the selected option when local repository is selected and we have found a match
1566 vecho
"Using cached CDDB match..." >&2
1567 # Display the $ABCDETEMPDIR/cddbchoices file created above
1568 # Pick a pager so that if the tracks overflow the screen the user can still view everything
1569 if [ -r "$ABCDETEMPDIR/cddbchoices" ]; then
1570 CDDBCHOICES
=$
(expr $
(cat "$ABCDETEMPDIR/cddbquery" |
wc -l) - 2)
1571 CHOICE
=$
(checkstatus cddb-choice
)
1572 if [ "$USELOCALRESP" = "y" ]; then :; else
1573 if [ -n "$CHOICE" ] ; then
1574 case $CDDBCHOICES in
1577 echo "Selected template."
1579 1) cat "$ABCDETEMPDIR/cddbchoices" ;;
1581 echo "Selected: #$CHOICE"
1582 do_cddbparse
"$ABCDETEMPDIR/cddbread.$CHOICE"
1590 # We're noninteractive - pick the first choice.
1591 # But in case we run a previous instance and selected a choice, use it.
1592 if [ -r "$ABCDETEMPDIR/cddbchoices" ]; then
1593 # Show the choice if we are not using the locally stored one
1594 # or when the local search failed to find a match.
1595 PREVIOUSCHOICE
=$
(checkstatus cddb-choice
)
1596 if [ "$CDDBUSELOCAL" = "y" ] && [ "$CDDBLOCALSUCCESS" = "n" ] ||
[ ! "$CDDBUSELOCAL" = "y" ]; then
1597 #if [ "$PREVIOUSCHOICE" ]; then
1598 cat "$ABCDETEMPDIR/cddbchoices"
1601 if [ ! -z "$PREVIOUSCHOICE" ] ; then
1602 CDCHOICENUM
=$PREVIOUSCHOICE
1605 echo "cddb-choice=$CDCHOICENUM" >> "$ABCDETEMPDIR/status"
1607 echo "Selected: #$CDCHOICENUM ($(grep ^DTITLE= $ABCDETEMPDIR/cddbread.$CDCHOICENUM | cut -f2- -d= | tr -d \\r\\n))" >&2
1612 if checkstatus cddb-choice
>/dev
/null
; then :; else
1613 echo "abcde: internal error: cddb-choice not recorded." >&2
1616 CDDBDATA
="$ABCDETEMPDIR/cddbread.$(checkstatus cddb-choice)"
1617 echo -n "Edit selected CDDB data? [y/n] (" >&2
1618 if [ "$INTERACTIVE" = "y" ]; then
1619 if [ "$UNKNOWNDISK" = "y" ]; then
1622 [ "$EDITCDDB" != "n" ] && EDITCDDB
=y
1631 if [ "$EDITCDDB" = "y" ]; then
1632 CDDBDATAMD5SUM
=$
($MD5SUM "$CDDBDATA" | cut
-d " " -f 1);
1634 # Use the debian sensible-editor wrapper to pick the editor that the
1635 # user has requested via their $EDITOR environment variable
1636 if [ -x "/usr/bin/sensible-editor" ]; then
1637 /usr
/bin
/sensible-editor
"$CDDBDATA"
1638 elif [ -n "$EDITOR" ]; then
1639 if [ -x $
(which "${EDITOR%%\ *}") ]; then
1640 # That failed, try to load the preferred editor, starting
1641 # with their EDITOR variable
1642 eval $
(echo "$EDITOR") "$CDDBDATA"
1644 # If that fails, check for a vi
1645 elif which vi
>/dev
/null
2>&1; then
1647 elif [ -x /usr
/bin
/vi
]; then
1648 /usr
/bin
/vi
"$CDDBDATA"
1649 # nano should be on all (modern, i.e., sarge) debian systems
1650 elif which nano
>/dev
/null
2>&1 ; then
1652 elif [ -x /usr
/bin
/nano
]; then
1653 /usr
/bin
/nano
"$CDDBDATA"
1654 # mg should be on all OpenBSD systems
1655 elif which mg
>/dev
/null
2>&1 ; then
1657 elif [ -x /usr
/bin
/mg
]; then
1658 /usr
/bin
/mg
"$CDDBDATA"
1661 echo "No editor available. Check your EDITOR environment variable." >&2
1663 # delete editor backup file if it exists
1664 if [ -w "$CDDBDATA~" ]; then
1669 # Some heuristics first. Look at Disc Title, and if it starts with
1670 # "Various", then we'll assume Various Artists
1671 if [ "$(grep ^DTITLE= "$CDDBDATA" | cut -f2- -d= | egrep -ci '^(various|soundtrack|varios|sonora|ost)')" != "0" ]; then
1672 echo "Looks like a Multi-Artist CD" >&2
1675 echo -n "Is the CD multi-artist? [y/n] (n): " >&2
1676 if [ "$INTERACTIVE" = "y" ]; then
1683 if [ "$VARIOUSARTISTS" = "y" ] && [ ! "$ONETRACK" = "y" ]; then
1686 # Need NUMTRACKS before cddb-tool will return it:
1687 NUMTRACKS
=$
(egrep '^TTITLE[0-9]+=' "$CDDBDATA" |
wc -l)
1688 if [ "$(grep -c "^TTITLE.
*\
/" "$CDDBDATA")" -gt "$(expr $NUMTRACKS / 2 )" ]; then
1689 # More than 1/2 tracks contain a "/", so guess forward
1691 elif [ "$(grep -c "^TTITLE.
*\
-" "$CDDBDATA")" -gt "$(expr $NUMTRACKS / 2 )" ]; then
1692 # More than 1/2 contain a "-", so guess forward-dash
1694 elif [ "$(grep -c "^TTITLE.
*(.
*)" "$CDDBDATA")" -gt "$(expr $NUMTRACKS / 2 )" ]; then
1695 # More than 1/2 contain something in parens, so guess trailing-paren
1699 echo "1) Artist / Title" >&2
1700 echo "2) Artist - Title" >&2
1701 echo "3) Title / Artist" >&2
1702 echo "4) Title - Artist" >&2
1703 echo "5) Artist: Title" >&2
1704 echo "6) Title (Artist)" >&2
1705 echo "7) This is a single-artist CD" >&2
1706 echo -n "Which style of multiple artist entries is it? [1-7] ($DEFAULTSTYLE): " >&2
1707 if [ "$INTERACTIVE" = "y" ]; then
1708 read VARIOUSARTISTSTYLE
1710 echo $DEFAULTSTYLE >&2
1711 VARIOUSARTISTSTYLE
=$DEFAULTSTYLE
1713 VARIOUSARTISTSTYLE
=$
(echo 0$VARIOUSARTISTSTYLE |
xargs printf %d
)
1714 # If they press Enter, then the default style (0) was chosen
1715 while [ $VARIOUSARTISTSTYLE -lt 0 ] ||
[ $VARIOUSARTISTSTYLE -gt 7 ]; do
1716 echo "Invalid selection. Please choose a number between 1 and 7."
1717 echo -n "Selection [1-7]: "
1718 read VARIOUSARTISTSTYLE
1719 VARIOUSARTISTSTYLE
=$
(echo 0$VARIOUSARTISTSTYLE |
xargs printf %d
)
1721 if [ "$VARIOUSARTISTSTYLE" = "0" ]; then
1722 VARIOUSARTISTSTYLE
=$DEFAULTSTYLE
1724 vecho
"Selected: $VARIOUSARTISTSTYLE"
1725 case "$VARIOUSARTISTSTYLE" in
1727 VARIOUSARTISTSTYLE
=forward
1730 VARIOUSARTISTSTYLE
=forward-dash
1733 VARIOUSARTISTSTYLE
=reverse
1736 VARIOUSARTISTSTYLE
=reverse-dash
1739 VARIOUSARTISTSTYLE
=colon
1742 VARIOUSARTISTSTYLE
=trailing-paren
1750 echo "variousartists=$VARIOUSARTISTS" >> "$ABCDETEMPDIR/status"
1751 echo "variousartiststyle=$VARIOUSARTISTSTYLE" >> "$ABCDETEMPDIR/status"
1753 if [ "$EDITCDDB" = "y" ] && [ "$UNINTENTIONALLY_ANGER_THE_FREEDB_PEOPLE" = "y" ]; then
1754 if [ $CDDBDATAMD5SUM != "" ] && [ $CDDBDATAMD5SUM != $
($MD5SUM "$CDDBDATA" | cut
-d " " -f 1) ]; then
1755 # This works but does not have the necessary error checking
1756 # yet. If you are familiar with the CDDB spec
1757 # (see http://www.freedb.org/src/latest/DBFORMAT)
1758 # and can create an error-free entry on your own, then put
1759 # UNINTENTIONALLY_ANGER_THE_FREEDB_PEOPLE=y in your
1760 # abcde.conf to enable it. Put CDDBSUBMIT=email@address in
1761 # your abcde.conf to change the email address submissions are
1764 # submit the modified file, if they want
1765 if [ "$NOSUBMIT" != "y" ]; then
1766 echo -n "Do you want to submit this entry to $CDDBSUBMIT? [y/n] (n): "
1768 while [ "$YESNO" != "y" ] && [ "$YESNO" != "n" ] && [ "$YESNO" != "Y" ] && \
1769 [ "$YESNO" != "N" ] && [ "$YESNO" != "" ]
1771 echo -n 'Invalid selection. Please answer "y" or "n": '
1774 if [ "$YESNO" = "y" ] ||
[ "$YESNO" = "Y" ]; then
1775 echo -n "Sending..."
1776 $CDDBTOOL send
"$CDDBDATA" $CDDBSUBMIT
1782 # Make sure the cache directory exists
1783 mkdir
-p $CDDBLOCALDIR
1784 # Cache edited CDDB entry in the user's cddb dir
1785 if [ "$CDDBCOPYLOCAL" = "y" ] ||
[ "$COPYCDDBLOCAL" = "Y" ]; then
1786 cat "$CDDBDATA" |
tail -n $
(expr $
(cat "$CDDBDATA" |
wc -l ) - 1 ) > ${CDDBLOCALDIR}/$
(echo "$TRACKINFO" | cut
-d' ' -f1)
1789 echo "cddb-edit" >> "$ABCDETEMPDIR/status"
1792 # do_cdread [tracknumber]
1793 # do_cdread onetrack [firsttrack] [lasttrack]
1797 # The commands here don't go through run_command because they're never supposed to be silenced
1798 # return codes need to be doublechecked anyway, however
1799 if [ "$1" = "onetrack" ]; then
1800 # FIXME # Add the possibility of grabbing ranges of tracks in onetrack
1801 # FIXME # Until then, we grab the whole CD in one track, no matter what
1803 # We need the first and last track for cdda2wav
1806 UTRACKNUM
=$FIRSTTRACK
1807 case "$CDROMREADERSYNTAX" in
1808 cdparanoia
) READTRACKNUMS
="$FIRSTTRACK-$LASTTRACK" ;;
1809 cdda2wav
) READTRACKNUMS
="$FIRSTTRACK+$LASTRACK" ;;
1810 *) echo "abcde error: $CDROMREADERSYNTAX does not support ONETRACK mode"
1816 CDDBTRACKNUM
=$
(expr $UTRACKNUM - 1)
1817 if [ "$USEPIPES" = "y" ]; then
1818 TEMPARG
="PIPE_$CDROMREADERSYNTAX"
1821 PIPE_MESSAGE
="and encoding "
1823 WAVDATA
="$ABCDETEMPDIR/track$UTRACKNUM.wav"
1824 case "$CDROMREADERSYNTAX" in
1825 ## FIXME ## Find the case for dagrab, to avoid exceptions
1827 FILEARG
="-f $WAVDATA"
1835 if [ "$1" = "onetrack" ]; then
1836 echo "Grabbing ${PIPE_MESSAGE}tracks $UTRACKNUM - $LASTTRACK ..." >&2
1838 if [ -r "$CDDBDATA" ]; then
1839 TRACKNAME
=$
(grep ^TTITLE
$CDDBTRACKNUM= "$CDDBDATA" |
head -n 1 | cut
-f2 -d= |
tr -d \
[:cntrl
:\
])
1840 echo "Grabbing ${PIPE_MESSAGE}track $UTRACKNUM: $TRACKNAME..." >&2
1842 echo "Grabbing ${PIPE_MESSAGE}track $UTRACKNUM..." >&2
1845 case "$CDROMREADERSYNTAX" in
1847 nice
$READNICE $CDROMREADER -d $CDROM ${READTRACKNUMS:-$UTRACKNUM} $FILEARG $REDIR ;;
1849 if [ "$OSFLAVOUR" = "OSX" ] ; then
1850 # Hei, we have to unmount the device before running anything like cdda2wav in OSX
1851 disktool
-u ${CDROM#/dev/} 0
1852 # Also, in OSX the cdrom device for cdda2wav changes...
1853 CDDA2WAVCDROM
="IODVDServices"
1854 elif [ "$OSFLAVOUR" = "FBSD" ] ; then
1855 CDDA2WAVCDROM
="$CDROMID"
1857 if [ "$CDROMID" = "" ]; then
1858 CDDA2WAVCDROM
="$CDROM"
1860 CDDA2WAVCDROM
="$CDROMID"
1863 nice
$READNICE $CDROMREADER -D $CDDA2WAVCDROM -t ${READTRACKNUMS:-$UTRACKNUM} $FILEARG $REDIR
1865 ## FIXME ## We have an exception for dagrab, since it uses -f
1866 ## FIXME ## Shall we just use -f $FILEARG ??
1867 dagrab
) nice
$READNICE $CDROMREADER -d $CDROM -v $UTRACKNUM $FILEARG $REDIR
1870 # Find the track's mounted path
1871 REALTRACKNUM
=$
(expr $UTRACKNUM + 0)
1872 FILEPATH
=$
(mount |
grep "$CDROM on" |
sed 's/^[^ ]* on \(.*\) (.*/\1/')
1873 FILEPATH
=$
(find "$FILEPATH" |
grep "/$REALTRACKNUM ");
1874 # If the file exists, copy it
1875 if [ -e "$FILEPATH" ] ; then
1876 nice
$READNICE $CDROMREADER "$FILEPATH" $FILEARG $REDIR
1880 debug
) nice
$READNICE $CDROMREADER -d $CDROM -w $UTRACKNUM-[:1] $FILEARG $REDIR
1884 # If we get some error or we get some missing wav
1885 # (as long as we dont use pipes)
1886 if [ "$RETURN" != "0" -o \
( ! -s "$WAVDATA" -a X
"$USEPIPES" != "Xy" \
) ]; then
1887 # Thank goodness errors is only machine-parseable up to the
1888 # first colon, otherwise this woulda sucked
1889 if [ "$RETURN" = "0" -a ! -s "$WAVDATA" ]; then
1890 RETURN
=73 # fake a return code as cdparanoia return 0 also on aborted reads
1892 if [ "$USEPIPES" = "y" ]; then
1893 echo "readencodetrack-$UTRACKNUM: $CDROMREADER returned code $RETURN" >> "$ABCDETEMPDIR/errors"
1895 echo "readtrack-$UTRACKNUM: $CDROMREADER returned code $RETURN" >> "$ABCDETEMPDIR/errors"
1899 if [ "$USEPIPES" = "y" ]; then
1900 echo readencodetrack-
$UTRACKNUM >> "$ABCDETEMPDIR/status"
1902 echo readtrack-
$UTRACKNUM >> "$ABCDETEMPDIR/status"
1908 # No values accepted, only uses env variables
1911 if "$CDSPEED" "$CDSPEEDOPTS" "$CDSPEEDVALUE" >/dev
/null
; then
1912 vecho
"Setting CD speed to ${CDSPEEDVALUE}x"
1914 echo "abcde: unable to set the device speed" >&2
1920 # vecho outputs a message if EXTRAVERBOSE is selected
1923 if [ x
"$EXTRAVERBOSE" != "x" ]; then
1928 # User-redefinable functions
1929 # Custom filename munging:
1932 #echo "$@" | sed s,:,\ -,g | tr \ /\* __+ | tr -d \'\"\?\[:cntrl:\]
1933 echo "$@" |
sed s
,:,\
-,g |
tr \
/ __ |
tr -d \'\"\?\
[:cntrl
:\
]
1936 # Custom genre munging:
1939 echo $CDGENRE |
tr "[:upper:]" "[:lower:]"
1943 # Empty pre_read function, to be defined in the configuration file.
1950 # Standalone function to move the CUE file to the final location
1952 ###############################################################################
1955 # Start of execution
1956 ###############################################################################
1959 CDDBURL
="http://freedb.freedb.org/~cddb/cddb.cgi"
1960 CDDBSUBMIT
=freedb-submit@freedb.org
1962 HELLOINFO
="$(whoami)@$(hostname)"
1964 CDROMREADERSYNTAX
=cdparanoia
1966 ENCODERSYNTAX
=default
1968 MP3ENCODERSYNTAX
=default
1969 OGGENCODERSYNTAX
=default
1970 FLACENCODERSYNTAX
=default
1971 SPEEXENCODERSYNTAX
=default
1972 MPPENCODERSYNTAX
=default
1973 NORMALIZERSYNTAX
=default
1975 OUTPUTFORMAT
='${ARTISTFILE}-${ALBUMFILE}/${TRACKNUM}.${TRACKFILE}'
1976 # Use the following VAOUTPUTFORMAT to revert to 2.0.x VA format:
1977 #VAOUTPUTFORMAT=${OUTPUTFORMAT}
1978 VAOUTPUTFORMAT
='Various-${ALBUMFILE}/${TRACKNUM}.${ARTISTFILE}-${TRACKFILE}'
1979 ONETRACKOUTPUTFORMAT
='${ARTISTFILE}-${ALBUMFILE}/${ALBUMFILE}'
1980 VAONETRACKOUTPUTFORMAT
='Various-${ALBUMFILE}/${ALBUMFILE}'
1981 PLAYLISTFORMAT
='${ARTISTFILE}-${ALBUMFILE}.${OUTPUT}.m3u'
1982 PLAYLISTDATAPREFIX
=''
1983 VAPLAYLISTFORMAT
='${ARTISTFILE}-${ALBUMFILE}.${OUTPUT}.m3u'
1984 VAPLAYLISTDATAPREFIX
=''
1992 VARIOUSARTISTSTYLE
=forward
1996 CDDBLOCALDIR
="$HOME/.cddb"
1999 # If using scsi devices, cdda2wav needs a CDROMID, instead of a device node
2000 # i.e. CDROMID="1,0,0"
2003 # program paths - defaults to checking your $PATH
2009 XINGMP3ENC
=xingmp3enc
2023 CDPARANOIA
=cdparanoia
2032 VORBISCOMMENT
=vorbiscomment
2034 NORMALIZE
=normalize-audio
2036 VORBISGAIN
=vorbisgain
2039 # Options for programs called from abcde
2070 VORBISCOMMENTOPTS
="-R"
2071 METAFLACOPTS
="--no-utf8-convert"
2073 # Default to one process if -j isn't specified
2076 # List of actions to perform - by default, run to completion
2077 ACTIONS
=cddb
,read,encode
,tag
,move
,clean
2079 # Asume fetch if under FreeBSD. curl is used for Mac OS X. wget is used for Linux/OpenBSD/NetBSD.
2080 # Let's use these checkings to determine the OS flavour, which will be used later
2081 if [ X$
(uname
) = "XFreeBSD" ] ; then
2085 elif [ X$
(uname
) = "XDarwin" ] ; then
2088 # We should have disktool in OSX, but let's be sure...
2090 CDROMREADERSYNTAX
=cddafs
2091 elif [ X$
(uname
) = "XOpenBSD" ] ; then
2098 # If CDDBAVAIL is set to n, no CDDB read is done
2099 # If USEID3 is set to n, no ID3 tagging is done
2104 if [ -z "$OUTPUTDIR" ]; then
2108 if [ -z "$WAVOUTPUTDIR" ]; then
2109 WAVOUTPUTDIR
="$OUTPUTDIR"
2112 # Load system defaults
2113 if [ -r /etc
/abcde.conf
]; then
2116 # Load user preference defaults
2117 if [ -r $HOME/.abcde.conf
]; then
2121 # By this time, we need some HTTPGETOPTS already defined.
2122 # If the user has defined a non-default HTTPGET method, we should not be empty.
2124 if [ "$HTTPGETOPTS" = "" ] ; then
2126 wget
) HTTPGETOPTS
="-q -O -";;
2127 curl
) HTTPGETOPTS
="-f -s";;
2128 fetch
)HTTPGETOPTS
="-q -o -";;
2129 *) echo "abcde warning: HTTPGET in non-standard and HTTPGETOPTS are not defined." >&2 ;;
2133 # If the CDROM has not been set yet, find a suitable one.
2134 # If this is a devfs system, default to /dev/cdroms/cdrom0
2135 # instead of /dev/cdrom
2136 if [ "$CDROM" = "" ] ; then
2137 if [ -e /dev
/cdroms
/cdrom0
]; then
2138 CDROM
=/dev
/cdroms
/cdrom0
2139 elif [ -e /dev
/cdrom
]; then
2141 elif [ -e /dev
/cd0c
]; then
2143 elif [ -e /dev
/acd0c
]; then
2145 elif [ -e /dev
/disk1
]; then
2150 # Parse command line options
2151 #while getopts 1a:bc:C:d:Dhj:klLnNo:pr:S:t:T:vVx opt ; do
2152 while getopts 1a
:A
:bc:C
:d
:Dehj
:klLmMnNo
:pPr
:Rs
:S
:t
:T
:vVxw
:W
: opt
; do
2155 a
) ACTIONS
="$OPTARG" ;;
2156 A
) EXPACTIONS
="$OPTARG";;
2158 c
) if [ -e "$OPTARG" ] ; then .
"$OPTARG" ; else echo "abcde error: config file \"$OPTARG\" cannot be found." >&2 ; exit 1 ; fi ;;
2159 C
) DISCID
="${OPTARG#abcde.}" ;;
2160 d
) CDROM
="$OPTARG" ;;
2162 e
) ERASEENCODEDSTATUS
=y
;;
2164 e
) ERASEENCODEDSTATUS
=y
;;
2165 # f) FORCECDDBUSELOCAL=y ;;
2167 j
) MAXPROCS
="$OPTARG" ;;
2170 L
) CDDBUSELOCAL
=y
;;
2175 o
) OUTPUTTYPE
="$OPTARG" ;;
2178 r
) REMOTEHOSTS
="$OPTARG" ;;
2180 s
) STARTTRACKNUMBER
="$OPTARG" ;;
2181 S
) CDSPEEDVALUE
="$OPTARG" ;;
2182 # t) PREPROCESSFORMATS="$OPTARG"
2184 # T) POSTPROCESSFORMATS="$OPTARG" ;;
2185 t
) STARTTRACKNUMBER
="$OPTARG" ;;
2186 T
) STARTTRACKNUMBER
="$OPTARG" ; STARTTRACKNUMBERTAG
="y" ;;
2188 echo "This is abcde v$VERSION."
2189 echo "Usage: abcde [options] [tracks]"
2190 echo "abcde -h for extra help"
2193 V
) EXTRAVERBOSE
="y" ;;
2195 w
) COMMENT
="$OPTARG" ;;
2196 W
) if echo $OPTARG |
grep -q "[[:digit:]]" ; then
2197 STARTTRACKNUMBER
="${OPTARG}01" ; STARTTRACKNUMBERTAG
="y" ; COMMENT
="CD${OPTARG}"
2199 echo "abcde error: argument of -W must be integer"
2207 shift $
(($OPTIND - 1))
2209 # Decide if we can continue.
2210 if [ "$ONETRACK" = "y" ]; then
2211 # FIXME # remove check as soon as we find out about the other readers
2212 case "$CDROMREADERSYNTAX" in
2213 dagrab|cddafs|debug
) echo "abcde error: ONETRACK reading is not suported with $CDROMREADERSYNTAX yet"
2216 if [ "$BATCH" = "y" ]; then
2217 echo "abcde error: BATCH mode is not compatible with ONETRACK mode"
2220 # It does not matter how many tracks we want. In ONETRACK mode we grab them all
2221 # FIXME # allow ranges of tracks to be selected for onetrack ripping
2222 if [ $# -gt 0 ]; then
2223 vecho
"abcde warning: ONETRACK mode selected, grabbing all tracks..."
2226 while [ $# -gt 0 ]; do
2227 # Range parsing code courtesy of Vincent Ho
2228 RSTART
=$
(echo $1 | cut
-f1 -d-)
2229 REND
=$
(echo $1 | cut
-f2 -d-)
2230 if [ "$RSTART" = "$REND" ]; then
2233 NEWTRACKS
=$
(f_seq_line
$RSTART $REND)
2235 TRACKQUEUE
=$
(echo "$TRACKQUEUE" "$NEWTRACKS")
2240 # List of valid actions: cddb,read,normalize,encode,tag,move,playlist,clean
2241 # List of experimental actions: retag,transcode
2243 # Determine what actions are to be done from $ACTIONS and set the
2244 # following environment variables for them:
2256 for ACTION
in $
(echo $ACTIONS |
tr , \
)
2261 normalize
) DONORMALIZE
=y
; DOREAD
=y
;;
2262 # preprocess) DOPREPROCESS=y; DOREAD=y;;
2263 encode
) DOENCODE
=y
; DOREAD
=y
;;
2264 # postprocess) DOPREPROCESS=y; DOENCODE=y; DOREAD=y;;
2265 tag
) DOTAG
=y
; DOREAD
=y
; DOENCODE
=y
; DOCDDB
=y
;;
2266 move
) DOMOVE
=y
; DOTAG
=y
; DOREAD
=y
; DOENCODE
=y
; DOCDDB
=y
;;
2267 playlist
) DOCDDB
=y
; DOPLAYLIST
=y
;;
2274 # At this point a CDROM has to be defined, so we check it exists.
2275 if [ X
"$CDROM" != "X" ] ; then
2276 if [ "$CDROMREADERSYNTAX" = "cdda2wav" ] && [ "$NEEDCDROMID" = "y" ] ; then
2277 if [ "$OSFLAVOUR" = "FBSD" ]; then
2278 if ! echo "$CDROMID" |
grep "^[0-9],[0-9],[0-9]$" >/dev
/null
2>&1 ; then
2279 echo "abcde error: CDROMID not in the right format for $CDROMREADERSYNTAX"
2280 echo "Use \"cdrecord -scanbus\" to obtain a adecuate ID an set CDROMID accordingly"
2284 elif [ ! -e "$CDROM" -a X
"$DOREAD" = "Xy" ]; then
2285 echo "abcde error: CDROM device cannot be found." >&2
2288 # avoid processing if we are not going to hit the CDROM.
2289 elif [ X
"$DOREAD" = "Xy" ]; then
2290 echo "abcde error: CDROM has not been defined or cannot be found" >&2
2294 # USEPIPES pre-tests, before we get into more serious stuff
2295 # Not compatible with:
2296 # - multiple outputs
2298 # - lowdisk algorithm
2300 if [ X
"$USEPIPES" = "Xy" ]; then
2301 if [ $
(echo $OUTPUTTYPE |
tr , \ |
wc -w ) -gt 1 ]; then
2302 echo "abcde error: Unix pipes not compatible with multiple outputs"
2305 if [ X
"$DONORMALIZE" = "Xy" ]; then
2306 echo "abcde error: Unix pipes not compatible with normalizer"
2307 # FIXME # Do we need to exit or shall we just disable the mode?
2310 if [ X
"$DOENCODE" = "Xn" ]; then
2311 vecho
"Disabling Unix pipes since we are not encoding!"
2314 if [ X
"$LOWDISK" = "Xy" ]; then
2315 vecho
"abcde error: Unix pipes not compatible with lowdisk algorithm"
2320 # Decide which CDROM reader we're gonna use
2321 case "$CDROMREADERSYNTAX" in
2323 CDROMREADER
="$CDPARANOIA"
2324 CDROMREADEROPTS
="$CDPARANOIAOPTS"
2327 CDROMREADER
="$CDDA2WAV"
2328 CDROMREADEROPTS
="$CDDA2WAVOPTS"
2331 CDROMREADER
="$DAGRAB"
2332 CDROMREADEROPTS
="$DAGRABOPTS"
2335 CDROMREADER
="$CDDAFS"
2336 CDROMREADEROPTS
="$CDDAFSOPTS"
2340 # There's only one normalize...
2341 case "$NORMALIZERSYNTAX" in
2343 NORMALIZER
="$NORMALIZE"
2344 NORMALIZEROPTS
="$NORMALIZEOPTS"
2348 # Allow -o OUTPUT(1):OPTIONS(1),...,OUTPUT(N):OPTIONS(N) mode of operation
2349 if echo $OUTPUTTYPE |
grep ":" > /dev
/null
2>&1 ; then
2352 for OUTPUT
in "$OUTPUTTYPE"
2355 ogg
:*) OGGENCODEROPTSCLI
="$( echo $OUTPUT | cut -d: -f2- )" ;;
2356 mp3
:*) MP3ENCODEROPTSCLI
="$( echo $OUTPUT | cut -d: -f2- )" ;;
2357 flac
:*) FLACENCODEROPTSCLI
="$( echo $OUTPUT | cut -d: -f2- )" ;;
2358 spx
:*) SPEEXENCODEROPTSCLI
="$( echo $OUTPUT | cut -d: -f2- )" ;;
2359 mpc
:*) MPPENCODEROPTSCLI
="$( echo $OUTPUT | cut -d: -f2- )" ;;
2362 for OUTPUT
in "$OUTPUTTYPE"
2364 TEMPOUTPUT
=$
( echo "$OUTPUT" | cut
-d: -f1 )
2365 TEMPOUTPUTTYPE
="${TEMPOUTPUTTYPE:+$TEMPOUTPUTTYPE,}$TEMPOUTPUT"
2367 OUTPUTTYPE
="$TEMPOUTPUTTYPE"
2371 # If nothing has been specified, use oggenc for oggs and lame for mp3s and flac for flacs and speexenc for speex and mppenc for mpps
2373 # Getting ready for multiple output changes
2374 for OUTPUT
in $
(echo $OUTPUTTYPE |
tr , \
)
2377 ogg
) [ "$OGGENCODERSYNTAX" = "default" ] && OGGENCODERSYNTAX
=oggenc
2378 [ "$DOTAG" = "y" ] && NEEDCOMMENTER
=y
2379 [ "$REPLAYGAIN" = "y" ] && NEEDVORBISGAIN
=y
2381 mp3
) [ "$MP3ENCODERSYNTAX" = "default" ] && MP3ENCODERSYNTAX
=lame
2382 [ "$DOTAG" = "y" ] && NEEDTAGGER
=y
2384 flac
) [ "$FLACENCODERSYNTAX" = "default" ] && FLACENCODERSYNTAX
=flac
2385 [ "$DOTAG" = "y" ] && NEEDMETAFLAC
=y
2387 spx
) [ "$SPEEXENCODERSYNTAX" = "default" ] && SPEEXENCODERSYNTAX
=speexenc
;;
2388 mpc
) [ "$MPPENCODERSYNTAX" = "default" ] && MPPENCODERSYNTAX
=mppenc
;;
2389 *) echo "abcde error: Invalid OUTPUTTYPE defined" >&2
2395 # decide which encoder
2396 case "$MP3ENCODERSYNTAX" in
2398 MP3ENCODEROPTS
="${MP3ENCODEROPTSCLI:-$LAMEOPTS}"
2402 MP3ENCODEROPTS
="${MP3ENCODEROPTSCLI:-$GOGOOPTS}"
2406 MP3ENCODEROPTS
="${MP3ENCODEROPTSCLI:-$BLADEENCOPTS}"
2407 MP3ENCODER
="$BLADEENC"
2410 MP3ENCODEROPTS
="${MP3ENCODEROPTSCLI:-$L3ENCOPTS}"
2414 MP3ENCODEROPTS
="${MP3ENCODEROPTSCLI:-$XINGMP3ENCOPTS}"
2415 MP3ENCODER
="$XINGMP3ENC"
2418 MP3ENCODEROPTS
="${MP3ENCODEROPTSCLI:-$MP3ENCOPTS}"
2419 MP3ENCODER
="$MP3ENC"
2422 case "$OGGENCODERSYNTAX" in
2424 OGGENCODEROPTS
="${OGGENCODEROPTSCLI:-$VORBIZEOPTS}"
2425 OGGENCODER
="$VORBIZE"
2428 OGGENCODEROPTS
="${OGGENCODEROPTSCLI:-$OGGENCOPTS}"
2429 OGGENCODER
="$OGGENC"
2432 case "$FLACENCODERSYNTAX" in
2434 FLACENCODEROPTS
="${FLACENCODEROPTSCLI:-$FLACOPTS}"
2436 ## FIXME ## FLAC streams can be encapsulated on a Ogg transport layer
2437 if echo "$FLACENCODEROPTS" |
egrep -q -- "(^| )--ogg($| )" ;then
2442 case "$SPEEXENCODERSYNTAX" in
2444 SPEEXENCODEROPTS
="${SPEEXENCODEROPTSCLI:-$SPEEXENCOPTS}"
2445 SPEEXENCODER
="$SPEEXENC"
2448 case "$MPPENCODERSYNTAX" in
2450 MPPENCODEROPTS
="${MPPENCODEROPTSCLI:-$MPPENCOPTS}"
2451 MPPENCODER
="$MPPENC"
2457 if [ "$ID3TAGV" = "1" ]; then
2459 TAGGEROPTS
="$ID3OPTS"
2462 TAGGEROPTS
="$ID3V2OPTS"
2465 # Clean up nice options (either use '-n NICELEVEL or -NICELEVEL')
2467 if [ "$ENCNICE" ]; then
2468 ENCNICE
="-n $ENCNICE"
2470 if [ "$READNICE" ]; then
2471 READNICE
="-n $READNICE"
2473 if [ "$DISTMP3NICE" ]; then
2474 DISTMP3NICE
="-n $DISTMP3NICE"
2477 # Don't check for stuff if it's not needed
2478 if [ "$REMOTEHOSTS" ]; then
2481 if [ "$DONORMALIZE" = "y" ]; then
2484 if [ "$EJECTCD" = "y" ]; then
2487 if [ ! "$CDDBAVAIL" = "n" ] && [ "$DOCDDB" = "y" ]; then
2490 if [ "$CUEFILE" = "y" ]; then
2494 if [ X
"$CDSPEEDVALUE" != "X" ]; then
2495 case "$CDROMREADERSYNTAX" in
2496 cdparanoia|debug
) CDROMREADEROPTS
="$CDPARANOIAOPTS -S $CDSPEEDVALUE" ;;
2501 # Rippers with USEPIPE support
2502 # FIXME # Include here all the rippers we can figure out support pipes
2505 # Encoders with USEPIPE support
2506 # FIXME # Include here all the encoders we can figure out support pipes
2511 # Figure out if we can use pipes with the ripper/encoder combination
2513 if [ "$USEPIPES" = "y" ]; then
2514 PIPERIPPERSVARCHECK
="PIPE_${CDROMREADER}"
2517 PIPEENCODERSVARCHECK
="PIPE_$MP3ENCODERSYNTAX" ;;
2519 PIPEENCODERSVARCHECK
="PIPE_$OGGENCODERSYNTAX" ;;
2521 PIPEENCODERSVARCHECK
="PIPE_$FLACENCODERSYTNAX" ;;
2523 PIPEENCODERSVARCHECK
="PIPE_$SPEEXENCODER" ;;
2525 PIPEENCODERSVARCHECK
="PIPE_$MPPENCODER" ;;
2527 if [ ! -n "${!PIPERIPPERSVARCHECK}" ] ; then
2528 echo "abcde error: no support for pipes with given ripper" >&2
2529 echo "read the USEPIPES file from the source tarball to help" >&2
2530 echo "on a Debian system, read /usr/share/doc/abcde/USEPIPES.gz" >&2
2533 if [ ! -n "${!PIPEENCODERSVARCHECK}" ] ; then
2534 echo "abcde error: no support for pipes with given encoder" >&2
2535 echo "read the USEPIPES file from the source tarball to help" >&2
2536 echo "on a Debian system, read /usr/share/doc/abcde/USEPIPES.gz" >&2
2542 # Make sure a buncha things exist
2543 for X
in $CDROMREADER $CDDISCID ${NEEDTAGGER+$TAGGER} $MP3ENCODER \
2544 $OGGENCODER $FLACENCODER $SPEEXENCODER $MPPENCODER \
2545 ${NEEDHTTPGET+$HTTPGET} ${NEEDDISTMP3+$DISTMP3} \
2546 ${NEEDCOMMENTER+$VORBISCOMMENT} ${NEEDMETAFLAC+$METAFLAC} \
2547 ${NEEDNORMALIZER+$NORMALIZER} ${NEEDEJECT+$EJECT} \
2548 ${NEEDDISKTOOL+disktool} ${NEEDCDSPEED+$CDSPEED} \
2549 ${NEEDVORBISGAIN+$VORBISGAIN} ${NEEDMKCUE+$MKCUE}
2551 # Cut off the command-line options we just added in
2552 X
=$
(echo $X | cut
-d' ' -f2)
2553 if [ "$(which $X)" = "" ]; then
2554 echo "abcde error: $X is not in your path." >&2
2556 elif [ ! -x $
(which $X) ]; then
2557 echo "abcde error: $X is not executable." >&2
2562 CDROMREADER
="$CDROMREADER $CDROMREADEROPTS"
2563 CDDBTOOL
="$CDDBTOOL $CDDBTOOLOPTS"
2564 HTTPGET
="$HTTPGET $HTTPGETOPTS"
2566 # Here it used to say:
2567 # One thousand lines in, we can start doing stuff with things
2568 # Well, right now we are at line 2157 ;)
2570 # Export needed things so they can be read in this subshell
2571 export CDDBTOOL ABCDETEMPDIR TRACKQUEUE LOWDISK EJECTCD EJECT EJECTOPTS
2572 export CDROM CDDBDATA REMOTEHOSTS MAXPROCS HTTPGET MD5SUM
2574 # User-definable function to set some things. Use it for
2575 # - closing the CD tray with eject -t
2576 # - set the CD speed value with eject -x
2577 vecho
-n "Executing customizable pre-read function... "
2579 pre_read
# Execute the user-defined pre-read funtion. Close the CD with it.
2583 do_discid
# Get ABCDETEMPDIR created and status file initialized
2585 if [ "$DOCDDB" = "y" ]; then
2586 if [ $CDDBUSELOCAL = "y" ]; then
2589 if checkstatus cddb-choice
> /dev
/null
; then
2592 if [ ! "$CDDBLOCALSUCCESS" = "y" ] ; then
2600 eval $
($CDDBTOOL parse
"$CDDBDATA")
2603 # Before reading tracks, we set the speed of the device
2605 if [ X
"$CDSPEEDVALUE" != "X" ]; then
2606 case "$CDROMREADERSYNTAX" in
2607 cdparanoia|debug
) : ;;
2612 # Define the first and last track, since we might need them later in several places
2613 FIRSTTRACK
=$
( get_first
$TRACKQUEUE )
2614 LASTTRACK
=$
( get_last
$TRACKQUEUE )
2616 if [ -f "$ABCDETEMPDIR/status" ] && [ X
"$ERASEENCODEDSTATUS" = "Xy" ]; then
2617 mv "$ABCDETEMPDIR/status" "$ABCDETEMPDIR/status.old"
2618 grep -v ^encodetracklocation-
< "$ABCDETEMPDIR/status.old" \
2619 |
grep -v ^encode-output
> "$ABCDETEMPDIR/status"
2622 # Create playlist if needed (backgroundable) and start reading in tracks
2626 if [ ! "$ONETRACK" = "y" ]; then
2627 if [ "$DOPLAYLIST" = "y" ]; then
2628 echo Creating playlist...
>&2
2633 # For the lowdisk option, only one program is running at once so the encoder
2634 # can be unsilenced right away.
2635 if [ "$LOWDISK" = "y" ] ||
[ "$ONETRACK" = "y" ]; then
2636 echo "encode-output=loud" >> "$ABCDETEMPDIR/status"
2639 if [ "$ONETRACK" = "y" ]; then
2640 TRACKS
="$FIRSTTRACK"
2641 if checkstatus readtrack-
$FIRSTTRACK; then :; else
2642 do_cdread onetrack
$FIRSTTRACK $LASTTRACK
2645 for UTRACKNUM
in $TRACKQUEUE
2647 if [ "$DOREAD" = "y" ]; then
2648 if [ "$USEPIPES" = "y" ]; then
2649 if checkstatus readencodetrack-
$UTRACKNUM; then :; else
2650 # Read, pipe, shut up!
2651 do_cdread
$UTRACKNUM | do_encode
$UTRACKNUM %local0
% > /dev
/null
2>&1
2654 if checkstatus readtrack-
$UTRACKNUM; then :; else
2655 do_cdread
$UTRACKNUM
2657 if [ "$?" != "0" ]; then
2658 # CD read failed - don't give the goahead to
2665 if [ "$BATCH" = "y" ]; then
2668 echo NEXTTRACK
# Get the encoder machine churning again
2669 if [ "$DOREAD" = "y" ]; then
2670 if [ "$LOWDISK" = "y" ] && [ "$DOENCODE" = "y" ]; then
2671 until checkstatus encodetrack-
$UTRACKNUM
2673 if checkerrors encodetrack-
$UTRACKNUM; then
2684 # Now that we're done the encoding can be loud again -
2685 # if we're not using SMP.
2686 if [ "$MAXPROCS" = "1" ]; then
2687 echo "encode-output=loud" >> "$ABCDETEMPDIR/status"
2690 # All tracks read, start encoding.
2691 if [ "$BATCH" = "y" ] ||
[ "$ONETRACK" = "y" ]; then
2695 # We are now finished with the cdrom - it can be safely ejected. Note that
2696 # abcde will not have completed yet.
2697 if [ "$EJECTCD" = "y" ] && [ -x $
(which $EJECT) ]; then
2698 # We check if the disk we are processing is actually the disk inside the
2699 # CD tray. If not, we do not eject the CD, since it might be so that the
2700 # user ejected it manually.
2701 #CURRENTTRACKINFO=$($CDDISCID $CDROM)
2702 #if if [ "$?" != "1" ] && [ "$CURRENTTRACKINFO" = "$TRACKINFO" ] ; then
2703 # More FreeBSD bits.
2704 if [ X
"$(uname)" = X
"FreeBSD" ] ; then
2705 # FreeBSD eject uses the EJECT environment variable to name the CDROM
2706 # but in this script EJECT is in the envionment and names the program
2709 # The FreeBSD eject needs "adc0" not "/dev/adc0c"
2710 cd="$(echo $CDROM | sed -e 's=.*/==;s=[a-h]$==;')"
2711 $eject $EJECTOPTS $cd
2712 elif [ X
"$(uname)" = X
"Darwin" ] ; then
2713 disktool
-e ${CDROM#/dev/} 0
2715 $EJECT $EJECTOPTS $CDROM
2722 ## Do we need to pre-process
2723 #if [ x"$PREPROCESS" = "x" ] ; then
2726 # for PRETRACKNUM in $TRACKQUEUE
2729 # if [ "$GOAHEAD" = "NO" ]; then break; fi
2731 # until [ $PREPROCEED ]
2733 # if checkstatus readtrack-$PRETRACKNUM; then PREPROCEED=y; break; fi
2734 # # all locations are working, wait and try again later
2735 # if [ ! $PREPROCEED ]; then sleep 3; fi
2737 # ( do_preprocess $PRETRACKNUM
2745 # In batch mode, we want all tracks to be read first.
2746 if [ "$BATCH" = "y" ]; then
2747 read GOAHEAD
# For blocking - will contain either "NO" or "NEXTTRACK"
2748 if [ "$GOAHEAD" = "NO" ]; then break; fi
2749 for LASTTRACK
in $TRACKQUEUE; do :; done
2750 if checkstatus readtrack-
$LASTTRACK; then
2751 if [ "$DONORMALIZE" = "y" ]; then
2752 if checkstatus normalizetrack-
$LASTTRACK; then :; else do_batch_normalize
; fi
2753 if checkerrors batch-normalize
; then exit; fi
2755 if [ "$DOENCODE" = "y" ]; then
2756 if checkstatus encodetrack-
$LASTTRACK; then :; else do_batch_encode
; fi
2757 if checkerrors batch-encode
; then exit; fi
2762 # If we are using ONETRACK, we can proceed with the normal encoding using just the $FIRSTTRACK as TRACKQUEUE
2763 if [ "$ONETRACK" = "y" ] ; then
2764 TRACKQUEUE
="$FIRSTTRACK"
2765 TRACKS
="$FIRSTTRACK"
2768 # Do the encoding, including parallelization of remote encoding
2769 # Figure out where each track is going to be encoded
2770 ENCODELOCATIONS
="$(echo $REMOTEHOSTS | tr , ' ')"
2771 if [ "$MAXPROCS" != "0" ]; then
2772 for NUM
in $
(f_seq_row
1 "$MAXPROCS")
2774 ENCODELOCATIONS
="$ENCODELOCATIONS %local$NUM%"
2778 ENCODELOCATIONS
=$
(echo $ENCODELOCATIONS)
2779 for UTRACKNUM
in $TRACKQUEUE
2782 read GOAHEAD
# For blocking - will contain either "NO" or "NEXTTRACK"
2783 if [ "$GOAHEAD" = "NO" ]; then break; fi
2784 # find out where this track is to be encoded
2785 if [ "$DOENCODE" = "y" -a "$USEPIPES" != "y" ]; then
2786 # Make sure we have a place to encode this, if not, exit stage right
2787 if [ -z "$ENCODELOCATIONS" ]; then
2793 for LOCATION
in $ENCODELOCATIONS
2795 PREVIOUSTRACK
="$(checkstatus encodetracklocation-$LOCATION)"
2796 # check first if a track has ever been assigned to this location
2797 if [ -z "$PREVIOUSTRACK" ]; then PROCEED
=y
; break; fi
2798 # If it errored out, rebuild $ENCODELOCATIONS without this location in it
2799 if checkerrors encodetrack-
$PREVIOUSTRACK; then
2800 for TEMPLOCATION
in $ENCODELOCATIONS
2802 if [ "$TEMPLOCATION" != "$LOCATION" ]; then
2803 TEMPENCODELOCATIONS
="$TEMPENCODELOCATIONS $TEMPLOCATION"
2806 ENCODELOCATIONS
=$
(echo $TEMPENCODELOCATIONS)
2811 # We're still here, this location must have been previously assigned,
2812 # and last completed without error - check if it's done with the
2813 # previous track yet
2814 if checkstatus encodetrack-
$PREVIOUSTRACK; then PROCEED
=y
; break; fi
2816 # all locations are working, wait and try again later
2817 if [ ! $PROCEED ]; then sleep 3; fi
2819 # Record the location we're about to encode the next track at
2820 echo "encodetracklocation-$LOCATION=$UTRACKNUM" >> "$ABCDETEMPDIR/status"
2822 # Don't proceed with the rest of the loop if we can't encode
2823 if [ "$ABORT" ]; then continue; fi
2824 # Set TRACKNUM, TRACKNAME
2825 if [ -e "$CDDBDATA" ]; then
2826 if [ "$ONETRACK" = "y" ]; then
2828 TRACKNUM
="$FIRSTTRACK"
2831 # TRACKNUM=$(printf %0.${TRACKNUMPADDING}d $(expr ${UTRACKNUM} + 0))
2833 CDDBTRACKNUM
=$
(expr $UTRACKNUM - 1)
2834 TRACKNAME
="$(grep ^TTITLE$CDDBTRACKNUM= "$CDDBDATA" | cut -f2- -d= | tr -d \[:cntrl:\] | sed 's/\ \+$//')"
2838 # You can't encode a file which needs to be normalized before finishing
2839 # You can't tag a file before it's finished encoding -
2840 # thus all of this is backgrounded together
2842 if [ "$DONORMALIZE" = "y" ]; then
2843 if checkstatus readtrack-
$UTRACKNUM; then
2844 if checkstatus normalizetrack-
$UTRACKNUM; then :; else do_normalize
$UTRACKNUM; fi
2847 if [ "$DOENCODE" = "y" -a "$USEPIPES" != "y" ]; then
2848 if checkstatus readtrack-
$UTRACKNUM; then
2849 #if checkstatus encodetrack-$UTRACKNUM; then :; else do_encode $UTRACKNUM $LOCATION; fi
2850 if [ "$DONORMALIZE" = "y" ]; then
2851 if checkstatus normalizetrack-
$UTRACKNUM; then
2852 if checkstatus encodetrack-
$UTRACKNUM; then :; else do_encode
$UTRACKNUM $LOCATION $OUTPUT; fi
2855 if checkstatus encodetrack-
$UTRACKNUM; then :; else do_encode
$UTRACKNUM $LOCATION $OUTPUT; fi
2859 if [ "$DOTAG" = "y" ]; then
2860 if checkstatus encodetrack-
$UTRACKNUM; then
2861 if checkstatus tagtrack-
$UTRACKNUM; then :; else do_tag
$UTRACKNUM; fi
2864 if [ "$DOMOVE" = "y" ]; then
2865 if checkstatus tagtrack-
$UTRACKNUM; then
2866 if checkstatus movetrack-
$UTRACKNUM; then :; else do_move
$UTRACKNUM; fi
2872 # Lets move the cue file
2873 if checkstatus cuefile
>/dev
/null
; then
2877 # Go through it again and make sure there's no distmp3 stragglers, otherwise
2878 # we'll delete the files they're working on
2879 ## FIXME ## Check also for files which are encoded using PIPEs.
2880 if [ "$DOENCODE" = "y" -a "$USEPIPES" != "y" ]; then
2885 for LOCATION
in $ENCODELOCATIONS
2887 CHECKTRACK
="$(checkstatus encodetracklocation-$LOCATION)"
2888 # "How can he give us a status update, if he's DEAD?"
2889 if checkstatus encodetrack-
$CHECKTRACK; then
2892 # Nothing to see here please go quietly back to your homes
2893 if [ -z "$CHECKTRACK" ]; then continue; fi
2894 # You're still here? Maybe there is something...
2895 if checkstatus encodetrack-
$CHECKTRACK; then :; else PROCEED
= ; break; fi
2898 if [ ! $PROCEED ]; then sleep 5; fi
2901 # If the above didn't catch the stragglers, this will
2903 # Check to see if run_command logged any errors
2904 if [ -f "$ABCDETEMPDIR/errors" ]; then
2905 echo "The following commands failed to run:"
2906 cat "$ABCDETEMPDIR/errors"
2910 if [ "$KEEPWAVS" = "y" ];then
2914 if [ "$DOCLEAN" = "y" ]; then
2915 # Wipe all the evidence
2916 # Gimme gimme gimme some more time!
2918 rm -rf "$ABCDETEMPDIR"
2921 echo "Finished. Not cleaning $ABCDETEMPDIR."