2 # Copyright (c) 1998-2001 Robert Woodcock <rcw@debian.org>
3 # Copyright (c) 2003-2005 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.
16 VERSION='2.3.99-$Revision$'
20 echo "This is abcde v$VERSION."
21 echo "Usage: abcde [options] [tracks]"
23 echo "-1 Encode the whole CD in a single file"
24 echo "-a <action1[,action2]...>"
25 echo " Actions to perform (cddb,read,normalize,encode,tag,move,replaygain,playlist,clean)"
26 #echo "-A Experimental actions (retag, transcode)"
27 echo "-b Enable batch normalization"
28 #echo "-B Disable batch replaygain (do file by file)"
30 echo " Specify a configuration file (overrides system and user config files)"
32 echo " Specify discid to resume from (only needed if you no longer have the cd)"
34 echo " Specify CDROM device to grab (flac uses a single-track flac file)"
35 echo "-D Debugging mode (equivalent to sh -x abcde)"
36 echo "-e Erase encoded track information from status file"
37 echo "-f Force operations that otherwise are considered harmful. Read \"man abcde\""
38 echo "-g Use \"lame --nogap\" for MP3 encoding. Disables low disk and pipes flags"
39 echo "-h This help information"
40 #echo "-i Tag files while encoding, when possible (local only) -NWY-"
41 echo "-j <#> Number of encoder processes to run at once (localhost)"
42 echo "-k Keep the wav tracks for later use"
43 echo "-l Use low disk space algorithm"
44 echo "-L Use local CDDB storage directory"
45 echo "-n No lookup. Don't query CDDB, just create and use template"
46 echo "-N Noninteractive. Never prompt for anything"
47 echo "-m Modify playlist to include CRLF endings, to comply with some players"
48 echo "-M Create a CUE file"
49 echo "-o <type1[,type2]...>"
50 echo " Output file type(s) (vorbis,mp3,flac,spx,mpc,wav). 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"
55 #echo "-R Add replaygain values to the tag info (only for vorbis,flac,mp3)"
57 echo " Show dielfs from the CDDB info (year,genre)"
58 echo "-S <#> Set the CD speed"
59 echo "-t <#> Start the track numbering at a given number"
60 echo "-T <#> Same as -t but modifies tag numbering"
61 echo "-u Use UNICODE tags and comments"
62 echo "-v Show version number and exit"
63 echo "-V Be a bit more verbose about what is happening behind the scenes"
64 echo "-x Eject CD after all tracks are read"
66 echo " Add a comment to the CD tracks"
67 echo "-W <#> Contatenate CDs: -T #01 -w \"CD #\""
68 echo "-z Use debug CDROMREADERSYNTAX option (needs cdparanoia)"
70 echo "Tracks is a space-delimited list of tracks to grab."
71 echo "Ranges specified with hyphens are allowed (i.e., 1-5)."
73 #echo "Double hyphens are used to concatenate tracks"
78 echo "$@" >> "$ABCDETEMPDIR/status"
81 # log [level] [message]
83 # log outputs the right message in a common format
89 error) echo "[ERROR] abcde: $@" >&2 ;;
90 warning) echo "[WARNING] $@" >&2 ;;
91 info) echo "[INFO] $@" ;;
95 # Funtions to replace the need of seq, which is too distribution dependant.
99 while [ $i -ne `expr $2 + 1` ]
109 if echo i | grep -q "[[:digit:]]" ; then
110 while [ $i -ne `expr $2 + 1` ]
117 log error "syntax error while processing track numbers"
122 # Functions to replace the need of awk {print $1} and {print $NF}
125 if [ X"$1" = "X" ]; then
126 for first in `cat`; do
137 if [ X"$1" = "X" ]; then
138 for stdin in `cat`; do
142 for last in $@ ; do :; done
147 # checkstatus [blurb]
148 # Returns "0" if the blurb was found, returns 1 if it wasn't
149 # Puts the blurb content, if available, on stdout.
150 # Otherwise, returns "".
153 # Take the last line in the status file if there's multiple matches
155 BLURB=$(egrep $PATTERN "$ABCDETEMPDIR/status" | tail -n 1)
157 if [ -z "$BLURB" ]; then
162 # See if there's a = in it
163 if [ "$(echo $BLURB | grep -c =)" != "0" ]; then
164 echo "$(echo $BLURB | cut -f2- -d=)"
170 # chechwarnings [blurb]
171 # Returns "0" if the blurb was found (meaning there was an warning),
172 # returns 1 if it wasn't (yes this is a little backwards).
173 # Does not print the blurb on stdout.
174 # Otherwise, returns "".
177 if [ -e "$ABCDETEMPDIR/warnings" ]; then :; else
180 # Take the last line in the status file if there's multiple matches
182 BLURB="$(egrep $PATTERN "$ABCDETEMPDIR/warnings" | tail -n 1)"
184 if [ -z "$BLURB" ]; then
185 # negative, we did not have a negative...
188 # affirmative, we had a negative...
193 # checkerrors [blurb]
194 # Returns "0" if the blurb was found (meaning there was an error),
195 # returns 1 if it wasn't (yes this is a little backwards).
196 # Does not print the blurb on stdout.
197 # Otherwise, returns "".
200 if [ -e "$ABCDETEMPDIR/errors" ]; then :; else
203 # Take the last line in the status file if there's multiple matches
205 BLURB="$(egrep $PATTERN "$ABCDETEMPDIR/errors" | tail -n 1)"
207 if [ -z "$BLURB" ]; then
208 # negative, we did not have a negative...
211 # affirmative, we had a negative...
217 # Finds the right pager in the system to display a file
221 # Use the debian sensible-pager wrapper to pick the pager
222 # user has requested via their $PAGER environment variable
223 if [ -x "/usr/bin/sensible-pager" ]; then
224 /usr/bin/sensible-pager "$PAGEFILE"
225 elif [ -x "$PAGER" ]; then
226 # That failed, try to load the preferred editor, starting
227 # with their PAGER variable
229 # If that fails, check for less
230 elif [ -x /usr/bin/less ]; then
231 /usr/bin/less -f "$PAGEFILE"
232 # more should be on all UNIX systems
233 elif [ -x /bin/more ]; then
234 /bin/more "$PAGEFILE"
236 # No bananas, just cat the thing
241 # run_command [blurb] [command...]
242 # 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-)"
336 # Finds an specific field from cddbinfo
341 TRACKNAME="$(grep ^TTITLE$CDDBTRACKNUM= "$CDDBDATA" | head -n 1 | cut -f2- -d= | tr -d \[:cntrl:\] | sed 's/\ \+$//')"
344 TRACKNAME="$(grep ^TTITLE$CDDBTRACKNUM= "$CDDBDATA" | cut -f2- -d= | tr -d \[:cntrl:\] | sed 's/\ \+$//')"
350 # Get the track number we are going to use for different actions
353 if [ -n "$STARTTRACKNUMBER" ] ; then
354 # Get the trackpadding from the current track
355 CURRENTTRACKPADDING=$(echo -n $UTRACKNUM | wc -c)
356 TRACKNUM=$( printf %0.${CURRENTTRACKPADDING}d $(expr ${UTRACKNUM} + ${STARTTRACKNUMBER} - $FIRSTTRACK ))
358 TRACKNUM=${UTRACKNUM}
364 if checkstatus replaygain; then :; else
365 run_command "" echo "Adding replygain information..."
366 for OUTPUT in $( echo $OUTPUTTYPE | tr , \ )
370 OUTPUT=$OGGOUTPUTCONTAINER
373 OUTPUT=$FLACOUTPUTCONTAINER
378 for UTRACKNUM in $TRACKQUEUE
380 CDDBTRACKNUM=$(expr $UTRACKNUM - 1)
381 do_getcddbinfo TRACKNAME
383 TRACKFILE="$(mungefilename "$TRACKNAME")"
384 ARTISTFILE="$(mungefilename "$TRACKARTIST")"
385 ALBUMFILE="$(mungefilename "$DALBUM")"
387 if [ "$VARIOUSARTISTS" = "y" ]; then
388 OUTPUTFILE="$(eval echo $VAOUTPUTFORMAT)"
390 OUTPUTFILE="$(eval echo $OUTPUTFORMAT)"
392 OUTPUTFILES[$REPLAYINDEX]="$OUTPUTDIR/$OUTPUTFILE.$OUTPUT"
393 (( REPLAYINDEX = $REPLAYINDEX + 1 ))
397 run_command replaygain-flac $METAFLAC --add-replay-gain "${OUTPUTFILES[@]}"
400 run_command replaygain-vorbis $VORBISGAIN --album "${OUTPUTFILES[@]}"
403 run_command replaygain-mp3 $MP3GAIN -a "${OUTPUTFILES[@]}"
406 run_command replaygain-mpc $MPPGAIN --auto "${OUTPUTFILES[@]}"
411 if checkerrors "replaygain-.{3,6}"; then :; else
412 run_command replaygain true
417 # This code splits the a Various Artist track name from one of the following
420 # forward: Artist / Track
421 # forward-dash: Artist - Track
422 # reverse: Track / Artist
423 # reverse-dash: Track - Artist
424 # colon: Artist: Track
425 # trailing-paren: Artist (Track)
428 # VARIOUSARTISTS, VARIOUSARTISTSTYLE, TRACKNAME, TRACKARTIST
431 if [ "$VARIOUSARTISTS" = "y" ] && [ ! "$ONETRACK" = "y" ]; then
432 case "$VARIOUSARTISTSTYLE" in
434 DTITLEARTIST="$(echo "$TRACKNAME" | sed 's- / -~-g')"
435 TRACKARTIST="$(echo "$DTITLEARTIST" | cut -f1 -d~)"
436 TRACKNAME="$(echo "$DTITLEARTIST" | cut -f2 -d~)"
439 DTITLEARTIST="$(echo "$TRACKNAME" | sed 's, - ,~,g')"
440 TRACKARTIST="$(echo "$DTITLEARTIST" | cut -f1 -d~)"
441 TRACKNAME="$(echo "$DTITLEARTIST" | cut -f2 -d~)"
444 DTITLEARTIST="$(echo "$TRACKNAME" | sed 's- / -~-g')"
445 TRACKARTIST="$(echo "$DTITLEARTIST" | cut -f2 -d~)"
446 TRACKNAME="$(echo "$DTITLEARTIST" | cut -f1 -d~)"
449 DTITLEARTIST="$(echo "$TRACKNAME" | sed 's, - ,~,g')"
450 TRACKARTIST="$(echo "$DTITLEARTIST" | cut -f2 -d~)"
451 TRACKNAME="$(echo "$DTITLEARTIST" | cut -f1 -d~)"
454 DTITLEARTIST="$(echo "$TRACKNAME" | sed 's-: -~-g')"
455 TRACKARTIST="$(echo "$DTITLEARTIST" | cut -f1 -d~)"
456 TRACKNAME="$(echo "$DTITLEARTIST" | cut -f2 -d~)"
459 DTITLEARTIST="$(echo "$TRACKNAME" | sed 's,^\(.*\) (\(.*\)),\1~\2,')"
460 TRACKARTIST="$(echo "$DTITLEARTIST" | cut -f2 -d~)"
461 TRACKNAME="$(echo "$DTITLEARTIST" | cut -f1 -d~)"
464 elif [ "$VARIOUSARTISTS" = "y" ] && [ "$ONETRACK" = "y" ]; then
465 TRACKARTIST="Various"
467 TRACKARTIST="$DARTIST"
472 local genre=$(echo "${@}" | tr '[A-Z]' '[a-z]')
476 "classic rock") id=1 ;;
494 "industrial") id=19 ;;
495 "alternative") id=20 ;;
497 "death metal") id=22 ;;
499 "soundtrack") id=24 ;;
500 "euro-techno") id=25 ;;
504 "jazz+funk") id=29 ;;
507 "classical") id=32 ;;
508 "instrumental") id=33 ;;
512 "sound clip") id=37 ;;
515 "alt. rock") id=40 ;;
520 "meditative") id=45 ;;
521 "instrum. pop") id=46 ;;
522 "instrum. rock") id=47 ;;
526 "techno-indust.") id=51 ;;
527 "electronic") id=52 ;;
529 "eurodance") id=54 ;;
531 "southern rock") id=56 ;;
536 "christian rap") id=61 ;;
537 "pop/funk"|"pop / funk") id=62 ;;
539 "native american") id=64 ;;
542 "psychadelic") id=67 ;;
544 "showtunes") id=69 ;;
548 "acid punk") id=73 ;;
549 "acid jazz") id=74 ;;
553 "rock & roll") id=78 ;;
554 "hard rock") id=79 ;;
556 "folk/rock") id=81 ;;
557 "national folk") id=82 ;;
564 "bluegrass") id=89 ;;
565 "avantgarde") id=90 ;;
566 "gothic rock") id=91 ;;
567 "progress. rock") id=92 ;;
568 "psychadel. rock") id=93 ;;
569 "symphonic rock") id=94 ;;
570 "slow rock") id=95 ;;
573 "easy listening") id=98 ;;
579 "chamber music") id=104 ;;
581 "symphony") id=106 ;;
582 "booty bass") id=107 ;;
584 "porn groove") id=109 ;;
586 "slow jam") id=111 ;;
590 "folklore") id=115 ;;
592 "power ballad") id=117 ;;
593 "rhythmic soul") id=118 ;;
594 "freestyle") id=119 ;;
596 "punk rock") id=121 ;;
597 "drum solo") id=122 ;;
598 "a capella") id=123 ;;
599 "euro-house") id=124 ;;
600 "dance hall") id=125 ;;
602 "drum & bass") id=127 ;;
603 "club-house") id=128 ;;
604 "hardcore") id=129 ;;
608 "negerpunk") id=133 ;;
609 "polsk punk") id=134 ;;
611 "christian gangsta rap") id=136 ;;
612 "heavy metal") id=137 ;;
613 "black metal") id=138 ;;
614 "crossover") id=139 ;;
615 "contemporary christian")id=140 ;;
616 "christian rock") id=141 ;;
617 "merengue") id=142 ;;
619 "thrash metal") id=144 ;;
622 "synthpop") id=147 ;;
623 "rock/pop"|"rock / pop") id=148 ;;
630 # do_tag [tracknumber]
631 # id3 tags a filename
633 # TRACKS, TRACKNAME, TRACKARTIST, TAGGER, TAGGEROPTS, VORBISCOMMENT, METAFLAC,
634 # COMMENT, DALBUM, DARTIST, CDYEAR, CDGENRE (and temporarily) ID3TAGV
637 COMMENTOUTPUT="$(eval echo ${COMMENT})"
638 CDDBDISCID=$(echo $TRACKINFO | cut -d' ' -f1)
639 run_command '' echo "Tagging track $1 of $TRACKS: $TRACKNAME..."
640 # If we want to start the tracks with a given number, we need to modify the
641 # TRACKNUM value before evaluation
642 if [ -n "$STARTTRACKNUMBERTAG" ] ; then
645 for OUTPUT in $(echo $OUTPUTTYPE | tr , \ )
649 # id3v2 v0.1.9 claims to have solved the -c bug, so we merge both id3 and id3v2
650 GENREID=$(do_getgenreid "${CDGENRE}")
655 # FIXME # track numbers in mp3 come with 1/10, so we cannot happily substitute them with $TRACKNUM
656 run_command tagtrack-$OUTPUT-$1 $TAGGER $TAGGEROPTS --commen=::"$COMMENTOUTPUT" \
657 -A "$DALBUM" -a "$TRACKARTIST" -t "$TRACKNAME" -Y "$CDYEAR" \
658 -G "$GENREID" -n "${TRACKNUM:-$1}" "${TRACKNUM:+-N $TRACKS}" \
659 "${ENCODING:+--set-encoding=$ENCODING}"
660 "$ABCDETEMPDIR/track$1.$OUTPUT"
663 # FIXME # track numbers in mp3 come with 1/10, so we cannot happily substitute them with $TRACKNUM
664 run_command tagtrack-$OUTPUT-$1 $TAGGER $TAGGEROPTS -c "$COMMENTOUTPUT" \
665 -A "$DALBUM" -a "$TRACKARTIST" -t "$TRACKNAME" -y "$CDYEAR" \
666 -g "$GENREID" -T "${TRACKNUM:-$1/$TRACKS}" \
667 "$ABCDETEMPDIR/track$1.$OUTPUT"
672 case "$OGGENCODERSYNTAX" in
674 # vorbiscomment can't do in-place modification, mv the file first
675 if [ -f "$ABCDETEMPDIR/track$1.$OGGOUTPUTCONTAINER" -a ! -f "$ABCDETEMPDIR/track$1.uncommented.$OGGOUTPUTCONTAINER" ]; then
676 mv "$ABCDETEMPDIR/track$1.$OGGOUTPUTCONTAINER" "$ABCDETEMPDIR/track$1.uncommented.$OGGOUTPUTCONTAINER"
679 # These are from http://www.xiph.org/ogg/vorbis/doc/v-comment.html
680 echo ARTIST="$TRACKARTIST"
682 echo TITLE="$TRACKNAME"
683 if [ -n "$CDYEAR" ]; then
686 if [ -n "$CDGENRE" ]; then
687 echo GENRE="$CDGENRE"
689 echo TRACKNUMBER=${TRACKNUM:-$1}
690 echo CDDB=$CDDBDISCID
691 if [ "$(eval echo ${COMMENT})" != "" ]; then
692 case "$COMMENTOUTPUT" in
693 *=*) echo "$COMMENTOUTPUT";;
694 *) echo COMMENT="$COMMENTOUTPUT";;
697 ) | run_command tagtrack-$OUTPUT-$1 $VORBISCOMMENT $VORBISCOMMENTOPTS -w \
698 "$ABCDETEMPDIR/track$1.uncommented.$OGGOUTPUTCONTAINER" "$ABCDETEMPDIR/track$1.$OGGOUTPUTCONTAINER"
699 # Doublecheck that the commented file was created successfully before wiping the original
700 if [ -f "$ABCDETEMPDIR/track$1.$OGGOUTPUTCONTAINER" ]; then
701 rm -f "$ABCDETEMPDIR/track$1.uncommented.$OGGOUTPUTCONTAINER"
703 mv "$ABCDETEMPDIR/track$1.uncommented.$OGGOUTPUTCONTAINER" "$ABCDETEMPDIR/track$1.$OGGOUTPUTCONTAINER"
710 echo ARTIST="$TRACKARTIST"
712 echo TITLE="$TRACKNAME"
713 if [ -n "$CDYEAR" ]; then
716 if [ -n "$CDGENRE" ]; then
717 echo GENRE="$CDGENRE"
719 echo TRACKNUMBER="${TRACKNUM:-$1}"
720 echo CDDB="$CDDBDISCID"
721 if [ "$(eval echo ${COMMENT})" != "" ]; then
722 case "$COMMENTOUTPUT" in
723 *=*) echo "$COMMENTOUTPUT";;
724 *) echo COMMENT="$COMMENTOUTPUT";;
727 ) | run_command tagtrack-$OUTPUT-$1 $METAFLAC $METAFLACOPTS --import-tags-from=- "$ABCDETEMPDIR/track$1.$FLACOUTPUTCONTAINER"
730 run_command tagtrack-$OUTPUT-$1 true
733 run_command tagtrack-$OUTPUT-$1 true
736 run_command tagtrack-$OUTPUT-$1 true
740 if checkerrors "tagtrack-(.{3,6})-$1"; then :; else
741 run_command tagtrack-$1 true
748 # OUTPUTTYPE, {FOO}ENCODERSYNTAX, ENCNICE, ENCODER, ENCODEROPTS
751 # The commands here don't go through run_command because they're never supposed to be silenced
752 echo "Encoding gapless MP3 tracks: $TRACKQUEUE"
753 for OUTPUT in $(echo $OUTPUTTYPE | tr , \ )
757 case "$MP3ENCODERSYNTAX" in
762 for UTRACKNUM in $TRACKQUEUE
764 TRACKFILES="$TRACKFILES track$UTRACKNUM.wav"
766 nice $ENCNICE $MP3ENCODER $MP3ENCODEROPTS --nogap $TRACKFILES
768 if [ "$RETURN" != "0" ]; then
769 echo "nogap-encode: $ENCODER returned code $RETURN" >> errors
771 for UTRACKNUM in $TRACKQUEUE
773 run_command encodetrack-$OUTPUT-$UTRACKNUM true
774 #run_command encodetrack-$UTRACKNUM true
783 if checkerrors "nogap-encode"; then :; else
784 if [ ! "$KEEPWAVS" = "y" ] ; then
785 if [ ! "$KEEPWAVS" = "move" ] ; then
790 # Other encoders fall through to normal encoding as the tracks
791 # have not been entered in the status file.
794 # do_encode [tracknumber] [hostname]
795 # If no hostname is specified, encode locally
797 # TRACKS, TRACKNAME, TRACKARTIST, DISTMP3, DISTMP3OPTS, {FOO}ENCODERSYNTAX, OUTPUTTYPE, ENCODEROPTS, DALBUM, DARTIST, ENCNICE, CDYEAR, CDGENRE, COMMENT
800 if [ "$USEPIPES" = "y" ]; then
803 TEMPARG="PIPE_$MP3ENCODERSYNTAX"
806 TEMPARG="PIPE_$OGGENCODERSYNTAX"
809 TEMPARG="PIPE_$FLACENCODERSYNTAX"
812 TEMPARG="PIPE_$SPEEXENCODER"
815 TEMPARG="PIPE_$MPPENCODER"
818 IN="$( eval echo "\$$TEMPARG" )"
820 IN="$ABCDETEMPDIR/track$1.wav"
823 case "$MP3ENCODERSYNTAX" in
824 # FIXME # check if mp3enc needs -if for pipes
825 # FIXME # I have not been able to find a working mp3enc binary
839 # We need IN to proceed, if we are not using pipes.
840 if [ -s "$IN" -o X"$USEPIPES" = "Xy" ] ; then
841 for OUTPUT in $(echo $OUTPUTTYPE | tr , \ )
845 OUT="$ABCDETEMPDIR/track$1.$OGGOUTPUTCONTAINER"
846 OUTPUT=$OGGOUTPUTCONTAINER
849 OUT="$ABCDETEMPDIR/track$1.$FLACOUTPUTCONTAINER"
850 OUTPUT=$FLACOUTPUTCONTAINER
853 OUT="$ABCDETEMPDIR/track$1.$OUTPUT"
856 if [ "$NOGAP" = "y" ] && checkstatus encodetrack-$OUTPUT-$1 ; then
859 if [ X"$USEPIPES" = "Xy" ]; then
861 # We need a way to store the creation of the files when using PIPES
862 RUN_COMMAND_PIPES="run_command encodetrack-$OUTPUT-$1 true"
864 run_command '' echo "Encoding track $1 of $TRACKS: $TRACKNAME..."
865 RUN_COMMAND="run_command encodetrack-$OUTPUT-$1"
871 case "$MP3ENCODERSYNTAX" in
872 lame|gogo) $RUN_COMMAND nice $ENCNICE $MP3ENCODER $MP3ENCODEROPTS "$IN" "$OUT" ;;
873 bladeenc) $RUN_COMMAND nice $ENCNICE $MP3ENCODER $MP3ENCODEROPTS -quit "$IN" ;;
874 l3enc|xingmp3enc) $RUN_COMMAND nice $ENCNICE $MP3ENCODER "$IN" "$OUT" $MP3ENCODEROPTS ;;
875 # FIXME # Relates to the previous FIXME since it might need the "-if" removed.
876 mp3enc) $RUN_COMMAND nice $ENCNICE $MP3ENCODER -if "$IN" -of "$OUT" $MP3ENCODEROPTS ;;
880 $RUN_COMMAND nice $DISTMP3NICE $DISTMP3 $DISTMP3OPTS "$2" "$IN" "$OUT" >/dev/null 2>&1
887 case "$OGGENCODERSYNTAX" in
888 vorbize) $RUN_COMMAND nice $ENCNICE $OGGENCODER $OGGENCODEROPTS -w "$OUT" "$IN" ;;
889 oggenc) $RUN_COMMAND nice $ENCNICE $OGGENCODER $OGGENCODEROPTS -o "$OUT" "$IN" ;;
893 $RUN_COMMAND nice $DISTMP3NICE $DISTMP3 $DISTMP3OPTS "$2" "$IN" "$OUT" >/dev/null 2>&1
900 case "$FLACENCODERSYNTAX" in
901 flac) $RUN_COMMAND nice $ENCNICE $FLACENCODER -f $FLACENCODEROPTS -o "$OUT" "$IN" ;;
906 vecho "$DISTMP3 $DISTMP3OPTS $2 $IN $OUT >/dev/null 2>&1"
907 $RUN_COMMAND nice $DISTMP3NICE $DISTMP3 $DISTMP3OPTS "$2" "$IN" "$OUT" > /dev/null 2>&1
912 if [ "$(eval echo ${COMMENT})" != "" ]; then
915 *) COMMENT="COMMENT=$COMMENT" ;;
917 COMMENT="--comment \"$COMMENT\""
919 # Quick hack to avoid tagging Ogg/Speex, since there is no other way to tag than inline tagging
920 if [ ! "$DOTAG" = "y" ]; then
921 $RUN_COMMAND nice $ENCNICE $SPEEXENCODER $SPEEXENCODEROPTS --author "$TRACKARTIST" --title "$TRACKNAME" "$COMMENT" "$IN" "$OUT"
923 $RUN_COMMAND nice $ENCNICE $SPEEXENCODER $SPEEXENCODEROPTS "$IN" "$OUT"
927 # MPP/MP+(Musepack) format (.mpc) is done locally, with inline
929 # I tried compiling the mppenc from corecodecs.org and got some
930 # errors, so I have not tried it myself.
931 ## FIXME ## Needs some cleanup to determine if an empty tag sent
932 ## FIXME ## to the encoder ends up empty.
933 $RUN_COMMAND nice $ENCNICE $MPPENCODER $MPPENCODEROPTS --artist "$TRACKARTIST" --album "$DALBUM" --title "$TRACKNAME" --track "$1" --genre "$CDGENRE" --year "$CDYEAR" --comment "$COMMENT" "$IN" "$OUT"
936 # In case of wav output we need nothing. Just keep the wavs.
941 # Only remove .wav if the encoding succeeded
942 if checkerrors "encodetrack-(.{3,6})-$1"; then :; else
943 run_command encodetrack-$1 true
944 if [ ! "$KEEPWAVS" = "y" ] ; then
945 if [ ! "$KEEPWAVS" = "move" ] ; then
951 run_command "" echo "HEH! The file we were about to encode disappeared:"
952 run_command "" echo ">> $IN"
953 run_command encodetrack-$1 false
957 # do_preprocess [tracknumber]
959 # TRACKS, TRACKNAME, TRACKARTIST, DISTMP3, DISTMP3OPTS, {FOO}ENCODERSYNTAX, OUTPUTTYPE, ENCODEROPTS, DALBUM, DARTIST, ENCNICE, CDYEAR, CDGENRE, COMMENT
962 # IN="$ABCDETEMPDIR/track$1.wav"
963 # # We need IN to proceed.
964 # if [ -s "$IN" ] ; then
965 # for OUTPUT in $(echo $OUTPUTTYPE | tr , \ )
967 # #OUT="$ABCDETEMPDIR/track$1.$OUTPUT"
968 # run_command '' echo "Pre-processing track $1 of $TRACKS..."
969 # case "$POSTPROCESSFORMAT" in
971 # run_command preprocess-$OUTPUT-$1 nice $PRENICE $WAV_PRE $IF $OF ;;
973 # run_command preprocess-$OUTPUT-$1 nice $PRENICE $MP3_PRE $IF $OF ;;
975 # run_command preprocess-$OUTPUT-$1 nice $PRENICE $OGG_PRE $IF $OF ;;
977 # run_command preprocess-$OUTPUT-$1 nice $PRENICE $FLAC_PRE $IF $OF ;;
979 # run_command preprocess-$OUTPUT-$1 nice $PRENICE $SPX_PRE $IF $OF ;;
982 # # Only remove .wav if the encoding succeeded
983 # if checkerrors "preprocess-(.{3,4})-$1"; then
984 # run_command preprocess-$1 false
986 # run_command preprocess-$1 true
989 # if [ "$(checkstatus encode-output)" = "loud" ]; then
990 # echo "HEH! The file we were about to pre-process disappeared:"
993 # run_command preprocess-$1 false
998 # do_postprocess [tracknumber]
1000 # TRACKS, TRACKNAME, TRACKARTIST, DISTMP3, DISTMP3OPTS, {FOO}ENCODERSYNTAX, OUTPUTTYPE, ENCODEROPTS, DALBUM, DARTIST, ENCNICE, CDYEAR, CDGENRE, COMMENT
1003 # for POSTPROCESSFORMAT in $(echo $POSTPROCESSFORMATS | tr , \ )
1005 # IN="$ABCDETEMPDIR/track$1.$POSTPROCESSFORMAT"
1006 # # We need IN to proceed.
1007 # if [ -s "$IN" ] ; then
1008 # #OUT="$ABCDETEMPDIR/track$1.$OUTPUT"
1009 # run_command '' echo "Post-processing track $1 of $TRACKS..."
1010 # case "$POSTPROCESSFORMAT" in
1012 # run_command postprocess-$OUTPUT-$1 nice $POSTNICE $MP3_POST $IF $OF ;;
1014 # run_command postprocess-$OUTPUT-$1 nice $POSTNICE $OGG_POST $IF $OF ;;
1016 # run_command postprocess-$OUTPUT-$1 nice $POSTNICE $FLAC_POST $IF $OF ;;
1018 # run_command postprocess-$OUTPUT-$1 nice $POSTNICE $SPX_POST $IF $OF ;;
1020 # # Only remove .wav if the encoding succeeded
1021 # if checkerrors "postprocess-(.{3,4})-$1"; then
1022 # run_command postprocess-$1 false
1024 # run_command postprocess-$1 true
1027 # if [ "$(checkstatus encode-output)" = "loud" ]; then
1028 # echo "HEH! The file we were about to post-process disappeared:"
1031 # run_command postprocess-$1 false
1046 # MP3GAIN, MP3GAINOPTS, VORBISGAIN, VORBISGAINOPTS, MPPGAIN, MPPGAINOPTS
1050 # The commands here don't go through run_command because they're never supposed to be silenced
1051 echo "Batch analizing gain in tracks: $TRACKQUEUE"
1056 for UTRACKNUM in $TRACKQUEUE
1058 MP3FILES="$TRACKFILES track$UTRACKNUM.mp3"
1060 # FIXME # Hard-coded batch option!
1061 $NORMALIZER -b $NORMALIZEROPTS $TRACKFILES
1063 if [ "$RETURN" != "0" ]; then
1064 echo "batch-normalize: $NORMALIZER returned code $RETURN" >> errors
1066 for UTRACKNUM in $TRACKQUEUE
1068 echo normalizetrack-$UTRACKNUM >> status
1074 # do_batch_normalize
1076 # NORMALIZER, NORMALIZEROPTS
1077 do_batch_normalize ()
1079 # The commands here don't go through run_command because they're never supposed to be silenced
1080 echo "Batch normalizing tracks: $TRACKQUEUE"
1085 for UTRACKNUM in $TRACKQUEUE
1087 TRACKFILES="$TRACKFILES track$UTRACKNUM.wav"
1089 # XXX: Hard-coded batch option!
1090 $NORMALIZER -b $NORMALIZEROPTS $TRACKFILES
1092 if [ "$RETURN" != "0" ]; then
1093 echo "batch-normalize: $NORMALIZER returned code $RETURN" >> errors
1095 for UTRACKNUM in $TRACKQUEUE
1097 echo normalizetrack-$UTRACKNUM >> status
1103 # do_normalize [tracknumber]
1105 # TRACKS, TRACKNAME, NORMALIZER, NORMALIZEROPTS
1108 IN="$ABCDETEMPDIR/track$1.wav"
1109 if [ -e "$IN" ] ; then
1110 run_command '' echo "Normalizing track $1 of $TRACKS: $TRACKNAME..."
1111 run_command normalizetrack-$1 $NORMALIZER $NORMALIZEROPTS "$IN"
1113 if [ "$(checkstatus encode-output)" = "loud" ]; then
1114 echo "HEH! The file we were about to normalize disappeared:"
1117 run_command normalizetrack-$1 false "File $IN was not found"
1121 # do_move [tracknumber]
1122 # Deduces the outfile from environment variables
1123 # Creates directory if necessary
1125 # TRACKNUM, TRACKNAME, TRACKARTIST, DALBUM, OUTPUTFORMAT, CDGENRE, CDYEAR
1128 for OUTPUT in $(echo $OUTPUTTYPE | tr , \ )
1130 # Create ALBUMFILE, ARTISTFILE, TRACKFILE
1131 # Munge filenames as follows:
1136 # Eat control characters
1137 ALBUMFILE="$(mungefilename "$DALBUM")"
1138 ARTISTFILE="$(mungefilename "$TRACKARTIST")"
1139 TRACKFILE="$(mungefilename "$TRACKNAME")"
1140 GENRE="$(mungegenre "$GENRE")"
1141 YEAR="$(echo $CDYEAR)"
1142 # If we want to start the tracks with a given number, we need to modify the
1143 # TRACKNUM value before evaluation
1145 # Supported variables for OUTPUTFORMAT are GENRE, ALBUMFILE, ARTISTFILE,
1146 # TRACKFILE, and TRACKNUM.
1147 if [ "$VARIOUSARTISTS" = "y" ]; then
1148 OUTPUTFILE="$(eval echo "$VAOUTPUTFORMAT")"
1150 OUTPUTFILE="$(eval echo "$OUTPUTFORMAT")"
1152 if checkerrors "tagtrack-$OUTPUT-$1"; then :; else
1153 # Once we know the specific output was successful, we can change the OUTPUT to the value containing the container
1156 OUTPUT=$OGGOUTPUTCONTAINER
1159 OUTPUT=$FLACOUTPUTCONTAINER
1162 # Check that the directory for OUTPUTFILE exists, if it doesn't, create it
1163 OUTPUTFILEDIR="$(dirname "$OUTPUTDIR/$OUTPUTFILE")"
1166 if [ "$DOCLEAN" != "y" ] && [ "$FORCE" != "y" ]; then
1167 # FIXME # introduce warnings?
1170 # mkdir -p shouldn't return an error if the directory already exists
1171 mkdir -p "$OUTPUTFILEDIR"
1172 run_command movetrack-$1 mv "$ABCDETEMPDIR/track$1.$OUTPUT" "$OUTPUTDIR/$OUTPUTFILE.$OUTPUT"
1173 if checkstatus movetrack-output-$OUTPUT; then :; else
1174 run_command movetrack-output-$OUTPUT true
1179 # mkdir -p shouldn't return an error if the directory already exists
1180 mkdir -p "$OUTPUTFILEDIR"
1181 run_command movetrack-$1 mv "$ABCDETEMPDIR/track$1.$OUTPUT" "$OUTPUTDIR/$OUTPUTFILE.$OUTPUT"
1182 if checkstatus movetrack-output-$OUTPUT; then :; else
1183 run_command movetrack-output-$OUTPUT true
1187 # Lets move the cue file
1188 if CUEFILE=$(checkstatus cuefile) >/dev/null ; then
1189 if [ -r "$ABCDETEMPDIR/$CUEFILE" ]; then
1190 if checkstatus movecue-$OUTPUT; then :; else
1191 # Silence the Copying output since it overlaps with encoding processes...
1192 #run_command '' vecho "Copying cue file to its destination directory..."
1193 if checkstatus onetrack >/dev/null ; then
1196 if [ "$DOCLEAN" != "y" ] && [ "$FORCE" != "y" ]; then
1197 # We dont have the dir, since it was not created before.
1200 run_command movecue-$OUTPUT cp "$ABCDETEMPDIR/$CUEFILE" "$OUTPUTDIR/$OUTPUTFILE.cue"
1203 # NOTE: Creating a cue file with the 3-char-extension files is to comply with
1204 # http://brianvictor.tripod.com/mp3cue.htm#details
1205 [a-z0-9][a-z0-9][a-z0-9])
1206 run_command movecue-$OUTPUT cp "$ABCDETEMPDIR/$CUEFILE" "$OUTPUTDIR/$OUTPUTFILE.cue"
1209 run_command movecue-$OUTPUT cp "$ABCDETEMPDIR/$CUEFILE" "$OUTPUTDIR/$OUTPUTFILE.$OUTPUT.cue"
1213 run_command movecue-$OUTPUT cp "$ABCDETEMPDIR/$CUEFILE" "$OUTPUTFILEDIR/$CUEFILE"
1215 echo movecue-$OUTPUT >> "$ABCDETEMPDIR/status"
1224 # Create the playlist if wanted
1226 # PLAYLISTFORMAT, PLAYLISTDATAPREFIX, VAPLAYLISTFORMAT, VAPLAYLISTDATAPREFIX,
1227 # VARIOUSARTISTS, OUTPUTDIR
1230 for OUTPUT in $(echo $OUTPUTTYPE | tr , \ )
1234 OUTPUT=$OGGOUTPUTCONTAINER
1237 OUTPUT=$FLACOUTPUTCONTAINER
1240 # Create a playlist file for the playlist data to go into.
1241 # We used to wipe it out if it existed. Now we request permision if interactive.
1242 for LASTTRACK in $TRACKQUEUE; do :; done
1243 ALBUMFILE="$(mungefilename "$DALBUM")"
1244 ARTISTFILE="$(mungefilename "$DARTIST")"
1245 GENRE=$(mungegenre "$GENRE")
1246 YEAR=${CDYEAR:-$CDYEAR}
1247 if [ "$VARIOUSARTISTS" = "y" ] ; then
1248 PLAYLISTFILE=$(eval echo $VAPLAYLISTFORMAT)
1250 PLAYLISTFILE=$(eval echo $PLAYLISTFORMAT)
1252 FINALPLAYLISTDIR=$(dirname "$OUTPUTDIR/$PLAYLISTFILE")
1253 mkdir -p "$FINALPLAYLISTDIR"
1254 if [ -s "$OUTPUTDIR/$PLAYLISTFILE" ]; then
1255 echo -n "Erase, Append to, or Keep the existing playlist file? [e/a/k] (e): " >&2
1256 if [ "$INTERACTIVE" = "y" ]; then
1257 while [ "$DONE" != "y" ]; do
1259 case $ERASEPLAYLIST in
1260 e|E|a|A|k|K) DONE=y ;;
1268 # Once we erase the playlist, we use append to create the new one.
1269 [ "$ERASEPLAYLIST" = "e" -o "$ERASEPLAYLIST" = "E" ] && rm -f "$OUTPUTDIR/$PLAYLISTFILE" && ERASEPLAYLIST=a
1271 # The playlist does not exist, so we can safelly use append to create the new list
1274 if [ "$ERASEPLAYLIST" = "a" -o "$ERASEPLAYLIST" = "A" ]; then
1275 touch "$OUTPUTDIR/$PLAYLISTFILE"
1276 for UTRACKNUM in $TRACKQUEUE
1278 # Shares some code with do_move since the filenames have to match
1279 CDDBTRACKNUM=$(expr $UTRACKNUM - 1)
1280 #TRACKNAME=$(grep ^TTITLE$CDDBTRACKNUM= "$CDDBDATA" | cut -f2 -d= | tr -d \[:cntrl:\] | sed 's/\ \+$//')
1281 do_getcddbinfo TRACKNAME
1283 TRACKFILE="$(mungefilename "$TRACKNAME")"
1284 ARTISTFILE="$(mungefilename "$TRACKARTIST")"
1285 ALBUMFILE="$(mungefilename "$DALBUM")"
1286 # If we want to start the tracks with a given number, we need to modify the
1287 # TRACKNUM value before evaluation
1289 if [ "$VARIOUSARTISTS" = "y" ]; then
1290 OUTPUTFILE=$(eval echo $VAOUTPUTFORMAT)
1292 OUTPUTFILE=$(eval echo $OUTPUTFORMAT)
1294 if [ "$VARIOUSARTISTS" = "y" ]; then
1295 if [ "$VAPLAYLISTDATAPREFIX" ] ; then
1296 echo ${VAPLAYLISTDATAPREFIX}$OUTPUTFILE.$OUTPUT >> "$OUTPUTDIR/$PLAYLISTFILE"
1298 relpath "$PLAYLISTFILE", "$OUTPUTFILE.$OUTPUT" >> "$OUTPUTDIR/$PLAYLISTFILE"
1301 if [ "$PLAYLISTDATAPREFIX" ]; then
1302 echo ${PLAYLISTDATAPREFIX}$OUTPUTFILE.$OUTPUT >> "$OUTPUTDIR/$PLAYLISTFILE"
1304 relpath "$PLAYLISTFILE", "$OUTPUTFILE.$OUTPUT" >> "$OUTPUTDIR/$PLAYLISTFILE"
1309 ## this will convert the playlist to have CRLF line-endings, if specified
1310 ## (some hardware players insist on CRLF endings)
1311 if [ "$DOSPLAYLIST" = "y" ]; then
1312 awk '{substr("\r",""); printf "%s\r\n", $0}' "$OUTPUTDIR/$PLAYLISTFILE" > "$ABCDETEMPDIR/PLAYLISTFILE.tmp"
1313 # mv -f "$ABCDETEMPDIR/PLAYLISTFILE.tmp" "$OUTPUTDIR/$PLAYLISTFILE"
1314 cat "$ABCDETEMPDIR/PLAYLISTFILE.tmp" | sed 's/\//\\/' > "$OUTPUTDIR/$PLAYLISTFILE"
1316 echo "playlistcomplete" >> "$ABCDETEMPDIR/status"
1321 # This essentially the start of things
1324 # Query the CD to get the track info, unless the user specified -C
1325 # or we are using some actions which do not need the CDDB data at all
1326 #if [ ! X"$EXPACTIONS" = "X" ]; then
1328 #elif [ -z "$DISCID" ]; then
1329 if [ -z "$DISCID" ]; then
1330 vecho -n "Getting CD track info... "
1331 # In OSX, unmount the disc before a query
1332 if [ "$OSFLAVOUR" = "OSX" ]; then
1333 disktool -u ${CDROM#/dev/}
1335 if [ "$CDROMREADERSYNTAX" = "flac" ] ; then
1336 TRACKINFO=$($METAFLAC $METAFLACOPTS --export-cuesheet-to=- $CDROM | $CUE2DISCID)
1338 TRACKINFO=$($CDDISCID $CDROM)
1340 # Make sure there's a CD in there by checking cd-discid's return code
1341 if [ ! "$?" = "0" ]; then
1342 if [ "$CDROMREADERSYNTAX" = "flac" ] ; then
1343 log error "cuesheet information from the flac file could not be read."
1344 log error "Perhaps the flac file does not contain a cuesheet?."
1347 log error "CD could not be read. Perhaps there's no CD in the drive?"
1351 # In OSX, remount the disc again
1352 if [ "$OSFLAVOUR" = "OSX" ]; then
1353 disktool -m ${CDROM#/dev/}
1356 DISCID=$(echo $TRACKINFO | cut -f1 -d' ')
1358 TRACKINFO=$(cat "$WAVOUTPUTDIR/abcde.$DISCID/discid")
1361 # Get a full enumeration of tracks, sort it, and put it in the TRACKQUEUE.
1362 # This needs to be done now because a section of the resuming code will need
1365 # get the number of digits to pad TRACKNUM with - we'll use this later
1366 # a CD can only hold 99 tracks, but since we support a feature for starting
1367 # numbering the tracks from a given number, we might need to set it as a
1368 # variable for the user to define... or obtain it somehow.
1369 if [ "$PADTRACKS" = "y" ] ; then
1373 ABCDETEMPDIR="$WAVOUTPUTDIR/abcde.$(echo $TRACKINFO | cut -f1 -d' ')"
1374 if [ -z "$TRACKQUEUE" ]; then
1375 if [ ! "$STRIPDATATRACKS" = "y" ]; then
1376 case "$CDROMREADERSYNTAX" in
1378 if [ "$WEHAVEACD" = "y" ]; then
1379 vecho "Querying the CD for audio tracks..."
1380 CDPARANOIAOUTPUT="$( $CDROMREADER -$CDPARANOIACDROMBUS $CDROM -Q --verbose 2>&1 )"
1382 if [ ! "$RET" = "0" ];then
1383 log warning "something went wrong while querying the CD... Maybe a DATA CD?"
1385 TRACKS="$(echo "$CDPARANOIAOUTPUT" | egrep '^[[:space:]]+[[:digit:]]' | tail -n 1 | get_first | tr -d "." | tr '\n' ' ')"
1386 CDPARANOIAAUDIOTRACKS="$TRACKS"
1388 if [ -f "$ABCDETEMPDIR/status" ] && TRACKS=$(checkstatus cdparanoia-audio-tracks); then :; else
1389 TRACKS=$(echo $TRACKINFO | cut -f2 -d' ')
1393 *) TRACKS=$(echo $TRACKINFO | cut -f2 -d' ') ;;
1396 TRACKS=$(echo $TRACKINFO | cut -f2 -d' ')
1398 if echo "$TRACKS" | grep "[[:digit:]]" > /dev/null 2>&1 ;then :;else
1399 log info "The disc does not contain any tracks. Giving up..."
1402 echo -n "Grabbing entire CD - tracks: "
1403 if [ ! "$PADTRACKS" = "y" ] ; then
1404 TRACKNUMPADDING=$(echo -n $TRACKS | wc -c | tr -d ' ')
1406 TRACKS=$(printf "%0.${TRACKNUMPADDING}d" $TRACKS)
1408 while [ "$X" -ne "$TRACKS" ]
1410 X=$(printf "%0.${TRACKNUMPADDING}d" $(expr $X + 1))
1411 TRACKQUEUE=$(echo $TRACKQUEUE $X)
1415 TRACKS=$(echo $TRACKINFO | cut -f2 -d' ')
1416 # User-supplied track queue.
1417 # Weed out non-numbers, whitespace, then sort and weed out duplicates
1418 TRACKQUEUE=$(echo $TRACKQUEUE | sed 's-[^0-9 ]--g' | tr ' ' '\n' | grep -v ^$ | sort -n | uniq | tr '\n' ' ' | sed 's- $--g')
1419 # Once cleaned, obtain the highest value in the trackqueue for number padding
1420 for LASTTRACK in $TRACKQUEUE; do :; done
1421 if [ ! "$PADTRACKS" = "y" ] ; then
1422 TRACKNUMPADDING=$(echo -n $LASTTRACK | wc -c | tr -d ' ')
1424 # Now we normalize the trackqueue
1425 for TRACK in $TRACKQUEUE ; do
1426 TRACKNUM=$(printf %0.${TRACKNUMPADDING}d $(expr ${TRACK} + 0 ))
1427 PADTRACKQUEUE=$(echo $PADTRACKQUEUE $TRACKNUM)
1429 TRACKQUEUE=$PADTRACKQUEUE
1430 echo Grabbing tracks: "$TRACKQUEUE"
1433 QUEUEDTRACKS=$(echo $TRACKQUEUE | wc -w | tr -d ' ')
1435 # We have the discid, create a temp directory after it to store all the temp
1438 if [ -e "$ABCDETEMPDIR" ]; then
1439 echo -n "abcde: attempting to resume from $ABCDETEMPDIR"
1440 # It already exists, see if it's a directory
1441 if [ ! -d "$ABCDETEMPDIR" ]; then
1442 # This is a file/socket/fifo/device/etc, not a directory
1445 echo "abcde: file $ABCDETEMPDIR already exists and does not belong to abcde." >&2
1446 echo "Please investigate, remove it, and rerun abcde." >&2
1450 # It's a directory, let's see if it's owned by us
1451 if [ ! -O "$ABCDETEMPDIR" ]; then
1452 # Nope, complain and exit
1454 echo "abcde: directory $ABCDETEMPDIR already exists and is not owned by you." >&2
1455 echo "Please investigate, remove it, and rerun abcde." >&2
1459 # See if it's populated
1460 if [ ! -f "$ABCDETEMPDIR/discid" ]; then
1461 # Wipe and start fresh
1462 echo "abcde: $ABCDETEMPDIR/discid not found. Abcde must remove and recreate" >&2
1463 echo -n "this directory to continue. Continue? [y/n] (n)" >&2
1464 if [ "$INTERACTIVE" = "y" ]; then
1470 if [ "$ANSWER" != "y" ]; then
1473 rm -rf "$ABCDETEMPDIR" || exit 1
1474 mkdir "$ABCDETEMPDIR"
1475 if [ "$?" -gt "0" ]; then
1476 # Directory already exists or could not be created
1477 echo "abcde: Temp directory $ABCDETEMPDIR could not be created." >&2
1481 # Everything is fine. Check for ^encodetracklocation-
1482 # and encode-output entries in the status file and
1483 # remove them. These are not relevant across sessions.
1484 if [ -f "$ABCDETEMPDIR/status" ]; then
1485 mv "$ABCDETEMPDIR/status" "$ABCDETEMPDIR/status.old"
1486 grep -v ^encodetracklocation- < "$ABCDETEMPDIR/status.old" \
1487 | grep -v ^encode-output > "$ABCDETEMPDIR/status"
1489 # Remove old error messages
1490 if [ -f "$ABCDETEMPDIR/errors" ]; then
1491 rm -f "$ABCDETEMPDIR/errors"
1495 # We are starting from scratch
1496 mkdir "$ABCDETEMPDIR"
1497 if [ "$?" -gt "0" ]; then
1498 # Directory already exists or could not be created
1499 echo "abcde: Temp directory $ABCDETEMPDIR could not be created." >&2
1502 cat /dev/null > "$ABCDETEMPDIR/status"
1504 if [ X"$MAKECUEFILE" = "Xy" -a X"$WEHAVEACD" = "Xy" ]; then
1505 if checkstatus cuefile > /dev/null 2>&1 ; then :; else
1506 CUEFILE=cue-$(echo "$TRACKINFO" | cut -f1 -d' ').txt
1507 vecho "Creating cue file..."
1508 if $CUEREADER $CUEREADEROPTS > "$ABCDETEMPDIR/$CUEFILE"; then
1509 echo cuefile=$CUEFILE >> "$ABCDETEMPDIR/status"
1511 log warning "reading the CUE sheet with mkcue is still considered experimental"
1512 log warning "and there was a problem with the CD reading. abcde will continue,"
1513 log warning "but consider reporting the problem to the abcde author"
1517 # If we got the CDPARANOIA status and it is not recorded, save it now
1518 if [ -n "$CDPARANOIAAUDIOTRACKS" ]; then
1519 if checkstatus cdparanoia-audio-tracks > /dev/null 2>&1; then :; else
1520 echo cdparanoia-audio-tracks=$CDPARANOIAAUDIOTRACKS >> "$ABCDETEMPDIR/status"
1524 # Create the discid file
1525 echo "$TRACKINFO" > "$ABCDETEMPDIR/discid"
1529 # Create a proper CUE file based on the CUE file we created before.
1532 if CUEFILE_IN="$ABCDETEMPDIR"/$(checkstatus cuefile); then
1533 CUEFILE_OUT=$CUEFILE_IN.out
1534 ### FIXME ### checkstatus cddb
1535 if [ -e "$CDDBDATA" ]; then
1536 vecho "Adding metadata to the cue file..."
1537 # FIXME It doesn't preserve spaces! Why?
1538 # FIXME parse $track into PERFORMER and TITLE - abcde already has code for this?
1540 echo "PERFORMER \"$DARTIST\"" >> "$CUEFILE_OUT"
1541 echo "TITLE \"$DALBUM\"" >> "$CUEFILE_OUT"
1542 cat "$CUEFILE_IN" | while read line
1544 if echo "$line" | grep -q "INDEX"
1546 eval track="\$TRACK$n"
1548 echo "TITLE \"$track\"" >> "$CUEFILE_OUT"
1550 echo "$line" >> "$CUEFILE_OUT"
1552 mv "$CUEFILE_OUT" "$CUEFILE_IN"
1553 echo "cleancuefile" >> "$ABCDETEMPDIR/status"
1559 # Parses a CDDB file and outputs the title and the track names.
1560 # Variables: CDDBFILE
1564 # List out disc title/author and contents
1565 if [ "$ONETRACK" = "y" ]; then
1566 vecho "ONETRACK mode selected: displaying only the title of the CD..."
1568 echo "---- $(grep DTITLE "${CDDBPARSEFILE}" | cut '-d=' -f2- | tr -d \\r\\n ) ----"
1569 if [ X"$SHOWCDDBYEAR" = "Xy" ]; then
1570 PARSEDYEAR=$(grep DYEAR "${CDDBPARSEFILE}" | cut '-d=' -f2-)
1571 if [ ! X"$PARSEDYEAR" = "X" ]; then
1572 echo "Year: $PARSEDYEAR"
1575 if [ X"$SHOWCDDBGENRE" = "Xy" ]; then
1576 PARSEDGENRE=$(grep DGENRE "${CDDBPARSEFILE}" | cut '-d=' -f2-)
1577 if [ ! X"$PARSEDGENRE" = "X" ]; then
1578 echo "Genre: $PARSEDGENRE"
1581 if [ ! "$ONETRACK" = "y" ]; then
1582 for TRACK in $(f_seq_row 1 $TRACKS)
1584 echo $TRACK: "$(grep ^TTITLE$(expr $TRACK - 1)= "${CDDBPARSEFILE}" | cut -f2- -d= | tr -d \\r\\n)"
1590 # Check for a local CDDB file, and report success
1593 if checkstatus cddb-readcomplete && checkstatus cddb-choice >/dev/null; then :; else
1595 CDDBLOCALSUCCESS="n"
1596 CDDBDISCID=$(echo $TRACKINFO | cut -d' ' -f1)
1597 CDDBLOCALFILE="${CDDBLOCALDIR}/${CDDBDISCID}"
1600 # If the user has selected to check a local CDDB repo, we proceed with it
1601 if [ -r "${CDDBLOCALFILE}" ]; then
1602 # List out disc title/author and contents
1603 do_cddbparse "${CDDBLOCALFILE}"
1604 echo -n "Locally cached CDDB entry found, use it? [y/n] (y): "
1605 if [ "$INTERACTIVE" = "y" ]; then
1607 while [ "$USELOCALRESP" != "y" ] && [ "$USELOCALRESP" != "n" ] && [ "$USELOCALRESP" != "" ] ; do
1608 echo -n 'Invalid selection. Please answer "y" or "n": '
1611 [ x"$USELOCALRESP" = "x" ] && USELOCALRESP="y"
1615 if [ "$USELOCALRESP" = "y" ]; then
1616 #echo "Using local copy of CDDB data"
1617 echo "# DO NOT ERASE THIS LINE! Added by abcde to imitate cddb output" > "$ABCDETEMPDIR/cddbread.1"
1618 cat "${CDDBLOCALFILE}" >> "$ABCDETEMPDIR/cddbread.1"
1619 echo 999 > "$ABCDETEMPDIR/cddbquery" # Assuming 999 isn't used by CDDB
1620 echo cddb-readcomplete >> "$ABCDETEMPDIR/status"
1621 do_cddbparse "${CDDBLOCALFILE}" > "$ABCDETEMPDIR/cddbchoices"
1622 echo cddb-choice=1 >> "$ABCDETEMPDIR/status"
1623 CDDBLOCALSUCCESS="y"
1625 #echo "Not using local copy of CDDB data"
1626 CDDBLOCALSUCCESS="n"
1629 CDDBLOCALSUCCESS="n"
1637 # Perform CDDB protocol version check if it hasn't already been done
1638 if checkstatus cddb-statcomplete; then :; else
1639 if [ "$CDDBAVAIL" = "n" ]; then
1641 echo 503 > "$ABCDETEMPDIR/cddbstat"
1644 CDDBUSER=$(echo $HELLOINFO | cut -f1 -d'@')
1645 CDDBHOST=$(echo $HELLOINFO | cut -f2- -d'@')
1646 while test $rc -eq 1 -a $CDDBPROTO -ge 3; do
1647 vecho "Checking CDDB server status..."
1648 $CDDBTOOL stat $CDDBURL $CDDBUSER $CDDBHOST $CDDBPROTO > "$ABCDETEMPDIR/cddbstat"
1649 RESPONSECODE=$(head -n 1 "$ABCDETEMPDIR/cddbstat" | cut -f1 -d' ')
1650 case "$RESPONSECODE" in
1651 210) # 210 OK, status information follows (until terminating `.')
1654 501|*) # 501 Illegal CDDB protocol level: <n>.
1655 CDDBPROTO=`expr $CDDBPROTO - 1`
1659 if test $rc -eq 1; then
1663 echo cddb-statcomplete >> "$ABCDETEMPDIR/status"
1671 CDDBDISCID=$(echo $TRACKINFO | cut -d' ' -f1)
1672 CDDBLOCALFILE="${CDDBLOCALDIR}/${CDDBDISCID}"
1674 # Perform CDDB query if it hasn't already been done
1675 if checkstatus cddb-querycomplete; then :; else
1676 if [ "$CDDBAVAIL" = "n" ]; then
1678 echo 503 > "$ABCDETEMPDIR/cddbquery"
1679 # The default CDDBLOCALSUCCESS is "n"
1680 # This part will be triggered if the user CDDB repo does not
1681 # contain the entry, or if we are not trying to use the repo.
1683 vecho "Querying the CDDB server..."
1684 CDDBUSER=$(echo $HELLOINFO | cut -f1 -d'@')
1685 CDDBHOST=$(echo $HELLOINFO | cut -f2- -d'@')
1686 $CDDBTOOL query $CDDBURL $CDDBPROTO $CDDBUSER $CDDBHOST $TRACKINFO > "$ABCDETEMPDIR/cddbquery"
1692 # no match found in database,
1693 # wget/fetch error, or user requested not to use CDDB
1694 # Make up an error code (503) that abcde
1695 # will recognize in do_cddbread
1696 # and compensate by making a template
1697 echo 503 > "$ABCDETEMPDIR/cddbquery"
1699 *) # strange and unknown error
1700 echo ERRORCODE=$ERRORCODE
1701 echo "abcde: $CDDBTOOL returned unknown error code"
1705 echo cddb-querycomplete >> "$ABCDETEMPDIR/status"
1712 # If it's not to be used, generate a template.
1713 # Then, display it (or them) and let the user choose/edit it
1714 if checkstatus cddb-readcomplete; then :; else
1715 vecho "Obtaining CDDB results..."
1716 # If CDDB is to be used, interpret the query results and read all
1717 # the available entries.
1718 rm -f "$ABCDETEMPDIR/cddbchoices"
1719 CDDBCHOICES=1 # Overridden by multiple matches
1720 RESPONSECODE=$(head -n 1 "$ABCDETEMPDIR/cddbquery" | cut -f1 -d' ')
1721 case "$RESPONSECODE" in
1723 # One exact match, retrieve it
1724 # 200 [section] [discid] [artist] / [title]
1725 if checkstatus cddb-read-1-complete; then :; else
1726 echo -n "Retrieving 1 CDDB match..." >> "$ABCDETEMPDIR/cddbchoices"
1727 $CDDBTOOL read $CDDBURL $CDDBPROTO $CDDBUSER $CDDBHOST $(cut -f2,3 -d' ' "$ABCDETEMPDIR/cddbquery") > "$ABCDETEMPDIR/cddbread.1"
1728 echo "done." >> "$ABCDETEMPDIR/cddbchoices"
1729 echo cddb-read-1-complete >> "$ABCDETEMPDIR/status"
1730 echo cddb-choice=1 >> "$ABCDETEMPDIR/status"
1732 # List out disc title/author and contents
1733 echo ---- "$(cut '-d ' -f4- "$ABCDETEMPDIR/cddbquery")" ---- >> "$ABCDETEMPDIR/cddbchoices"
1734 for TRACK in $(f_seq_row 1 $TRACKS)
1736 echo $TRACK: "$(grep ^TTITLE$(expr $TRACK - 1)= "$ABCDETEMPDIR/cddbread.1" | cut -f2- -d= | tr -d \\r\\n)" >> "$ABCDETEMPDIR/cddbchoices"
1738 echo >> "$ABCDETEMPDIR/cddbchoices"
1742 case "$RESPONSECODE" in
1743 202) echo "No CDDB match." >> "$ABCDETEMPDIR/cddbchoices" ;;
1744 403|409) echo "CDDB entry is corrupt, or the handshake failed." >> "$ABCDETEMPDIR/cddbchoices" ;;
1745 503) echo "CDDB unavailable." >> "$ABCDETEMPDIR/cddbchoices" ;;
1747 $CDDBTOOL template $(cat "$ABCDETEMPDIR/discid") > "$ABCDETEMPDIR/cddbread.0"
1748 # List out disc title/author and contents of template
1749 echo ---- Unknown Artist / Unknown Album ---- >> "$ABCDETEMPDIR/cddbchoices"
1751 for TRACK in $(f_seq_row 1 $TRACKS)
1753 echo $TRACK: "$(grep ^TTITLE$(expr $TRACK - 1)= "$ABCDETEMPDIR/cddbread.0" | cut -f2- -d= | tr -d \\r\\n)" >> "$ABCDETEMPDIR/cddbchoices"
1755 echo >> "$ABCDETEMPDIR/cddbchoices"
1756 echo cddb-read-0-complete >> "$ABCDETEMPDIR/status"
1757 echo cddb-choice=0 >> "$ABCDETEMPDIR/status"
1760 # Multiple exact, (possibly multiple) inexact matches
1762 if [ "$RESPONSECODE" = "211" ]; then IN=in; fi
1763 if [ "$(wc -l < "$ABCDETEMPDIR/cddbquery" | tr -d ' ')" -eq 3 ]; then
1764 echo "One ${IN}exact match:" >> "$ABCDETEMPDIR/cddbchoices"
1765 tail -n +2 "$ABCDETEMPDIR/cddbquery" | head -n 1 >> "$ABCDETEMPDIR/cddbchoices"
1766 echo cddb-choice=1 >> "$ABCDETEMPDIR/status"
1768 echo "Multiple ${IN}exact matches:" >> "$ABCDETEMPDIR/cddbchoices"
1770 vecho -n "Retrieving multiple matches... "
1771 grep -v ^[.]$ "$ABCDETEMPDIR/cddbquery" | ( X=0
1772 read DISCINFO # eat top line
1776 if checkstatus cddb-read-$X-complete; then :; else
1777 $CDDBTOOL read $CDDBURL $CDDBPROTO $CDDBUSER $CDDBHOST $(echo $DISCINFO | cut -f1,2 -d' ') > "$ABCDETEMPDIR/cddbread.$X"
1778 echo cddb-read-$X-complete >> "$ABCDETEMPDIR/status"
1780 # List out disc title/author and contents
1781 echo \#$X: ---- "$DISCINFO" ---- >> "$ABCDETEMPDIR/cddbchoices"
1782 for TRACK in $(f_seq_row 1 $TRACKS)
1784 echo $TRACK: "$(grep ^TTITLE$(expr $TRACK - 1)= "$ABCDETEMPDIR/cddbread.$X" | cut -f2- -d= | tr -d \\r\\n)" >> "$ABCDETEMPDIR/cddbchoices"
1786 echo >> "$ABCDETEMPDIR/cddbchoices"
1789 CDDBCHOICES=$(expr $(cat "$ABCDETEMPDIR/cddbquery" | wc -l) - 2)
1793 for TRACK in $(f_seq_row 1 $TRACKS)
1795 echo $TRACK: "$(grep ^TTITLE$(expr $TRACK - 1)= "$ABCDETEMPDIR/cddbread.1" | cut -f2- -d= | tr -d \\r\\n)" >> "$ABCDETEMPDIR/cddbchoices"
1797 echo >> "$ABCDETEMPDIR/cddbchoices"
1798 echo cddb-read-1-complete >> "$ABCDETEMPDIR/status"
1799 echo cddb-choice=1 >> "$ABCDETEMPDIR/status"
1802 echo "cddb-readcomplete" >> "$ABCDETEMPDIR/status"
1809 if checkstatus cddb-edit >/dev/null; then
1810 CDDBDATA="$ABCDETEMPDIR/cddbread.$(checkstatus cddb-choice)"
1811 VARIOUSARTISTS="$(checkstatus variousartists)"
1812 VARIOUSARTISTSTYLE="$(checkstatus variousartiststyle)"
1815 if [ "$INTERACTIVE" = "y" ]; then
1816 # We should show the CDDB results both when we are not using the local CDDB repo
1817 # or when we are using it but we could not find a proper match
1818 if [ "$CDDBUSELOCAL" = "y" ] && [ ! "$CDDBLOCALSUCCESS" = "y" ] || [ ! "$CDDBUSELOCAL" = "y" ]; then
1819 # Display the $ABCDETEMPDIR/cddbchoices file created above
1820 # Pick a pager so that if the tracks overflow the screen the user can still view everything
1821 if [ -r "$ABCDETEMPDIR/cddbchoices" ]; then
1822 CDDBCHOICES=$(expr $(cat "$ABCDETEMPDIR/cddbquery" | wc -l) - 2)
1823 CHOICE=$(checkstatus cddb-choice)
1824 if [ -n "$CHOICE" ] ; then
1825 case $CDDBCHOICES in
1826 1) cat "$ABCDETEMPDIR/cddbchoices" ;;
1828 echo "Selected: #$CHOICE"
1829 do_cddbparse "$ABCDETEMPDIR/cddbread.$CHOICE"
1833 # The user has a choice to make, display the info in a pager if necessary
1834 if [ $(cat "$ABCDETEMPDIR/cddbchoices" | wc -l) -ge 24 ]; then
1835 page "$ABCDETEMPDIR/cddbchoices"
1837 # It's all going to fit in one page, cat it
1838 cat "$ABCDETEMPDIR/cddbchoices" >&2
1842 # Setting the choice to an impossible integer to avoid errors in the numeric comparisons
1844 # I'll take CDDB read #3 for $400, Alex
1845 while [ $CDCHOICENUM -lt 0 ] || [ $CDCHOICENUM -gt $CDDBCHOICES ]; do
1846 echo -n "Which entry would you like abcde to use (0 for none)? [0-$CDDBCHOICES]: " >&2
1848 [ X"$CDDBCHOICE" = "X" ] && CDDBCHOICE=1
1849 if echo $CDDBCHOICE | egrep -q "[[:digit:]]+,[[:digit:]]+" ; then
1850 if [ ! X"$DIFF" = "X" ]; then
1851 PARSECHOICE1=$(echo $CDDBCHOICE | cut -d"," -f1)
1852 PARSECHOICE2=$(echo $CDDBCHOICE | cut -d"," -f2)
1853 if [ $PARSECHOICE1 -lt 1 ] || [ $PARSECHOICE1 -gt $CDDBCHOICES ] || \
1854 [ $PARSECHOICE2 -lt 1 ] || [ $PARSECHOICE2 -gt $CDDBCHOICES ] || \
1855 [ $PARSECHOICE1 -eq $PARSECHOICE2 ]; then
1856 echo "Invalid diff range. Please select two coma-separated numbers between 1 and $CDDBCHOICES" >&2
1859 # We parse the 2 choices to diff, store them in temporary files and diff them.
1860 for PARSECHOICE in $(echo $CDDBCHOICE | tr , \ ); do
1861 do_cddbparse "$ABCDETEMPDIR/cddbread.$PARSECHOICE" > "$ABCDETEMPDIR/cddbread.parsechoice.$PARSECHOICE"
1863 echo "Showing diff between choices $PARSECHOICE1 and $PARSECHOICE2..." > "$ABCDETEMPDIR/cddbread.diff"
1864 $DIFF $DIFFOPTS "$ABCDETEMPDIR/cddbread.parsechoice.$PARSECHOICE1" "$ABCDETEMPDIR/cddbread.parsechoice.$PARSECHOICE2" >> "$ABCDETEMPDIR/cddbread.diff"
1865 if [ $(cat "$ABCDETEMPDIR/cddbread.diff" | wc -l) -ge 24 ]; then
1866 page "$ABCDETEMPDIR/cddbread.diff"
1868 cat "$ABCDETEMPDIR/cddbread.diff" >&2
1872 echo "The diff program was not found in your path. Please choose a number between 0 and $CDDBCHOICES." >&2
1875 if [ $CDCHOICENUM -lt 0 ] || [ $CDCHOICENUM -gt $CDDBCHOICES ]; then
1876 # Make sure we get a valid choice
1877 CDCHOICENUM=$(echo $CDDBCHOICE | xargs printf %d 2>/dev/null)
1878 echo "Invalid selection. Please choose a number between 0 and $CDDBCHOICES." >&2
1882 if [ "$CDCHOICENUM" = "0" ]; then
1883 vecho "Creating empty CDDB template..."
1885 $CDDBTOOL template $(cat "$ABCDETEMPDIR/discid") > "$ABCDETEMPDIR/cddbread.0"
1887 echo "Selected: #$CDCHOICENUM ($(grep ^DTITLE= "$ABCDETEMPDIR/cddbread.$CDCHOICENUM" | cut -f2- -d= | tr -d \\r\\n))" >&2
1888 do_cddbparse "$ABCDETEMPDIR/cddbread.$CDCHOICENUM"
1890 echo "cddb-choice=$CDCHOICENUM" >> "$ABCDETEMPDIR/status"
1894 # We need some code to show the selected option when local repository is selected and we have found a match
1895 vecho "Using cached CDDB match..." >&2
1896 # Display the $ABCDETEMPDIR/cddbchoices file created above
1897 # Pick a pager so that if the tracks overflow the screen the user can still view everything
1898 if [ -r "$ABCDETEMPDIR/cddbchoices" ]; then
1899 CDDBCHOICES=$(expr $(cat "$ABCDETEMPDIR/cddbquery" | wc -l) - 2)
1900 CHOICE=$(checkstatus cddb-choice)
1901 if [ "$USELOCALRESP" = "y" ]; then :; else
1902 if [ -n "$CHOICE" ] ; then
1903 case $CDDBCHOICES in
1906 echo "Selected template."
1908 1) cat "$ABCDETEMPDIR/cddbchoices" ;;
1910 echo "Selected: #$CHOICE"
1911 do_cddbparse "$ABCDETEMPDIR/cddbread.$CHOICE"
1919 # We're noninteractive - pick the first choice.
1920 # But in case we run a previous instance and selected a choice, use it.
1921 if [ -r "$ABCDETEMPDIR/cddbchoices" ]; then
1922 # Show the choice if we are not using the locally stored one
1923 # or when the local search failed to find a match.
1924 PREVIOUSCHOICE=$(checkstatus cddb-choice)
1925 if [ "$CDDBUSELOCAL" = "y" ] && [ "$CDDBLOCALSUCCESS" = "n" ] || [ ! "$CDDBUSELOCAL" = "y" ]; then
1926 #if [ "$PREVIOUSCHOICE" ]; then
1927 cat "$ABCDETEMPDIR/cddbchoices"
1930 if [ ! -z "$PREVIOUSCHOICE" ] ; then
1931 CDCHOICENUM=$PREVIOUSCHOICE
1934 echo "cddb-choice=$CDCHOICENUM" >> "$ABCDETEMPDIR/status"
1936 echo "Selected: #$CDCHOICENUM ($(grep ^DTITLE= "$ABCDETEMPDIR/cddbread.$CDCHOICENUM" | cut -f2- -d= | tr -d \\r\\n))" >&2
1941 if checkstatus cddb-choice >/dev/null; then :; else
1942 echo "abcde: internal error: cddb-choice not recorded." >&2
1945 CDDBDATA="$ABCDETEMPDIR/cddbread.$(checkstatus cddb-choice)"
1946 echo -n "Edit selected CDDB data? [y/n] (" >&2
1947 if [ "$INTERACTIVE" = "y" ]; then
1948 if [ "$UNKNOWNDISK" = "y" ]; then
1951 [ "$EDITCDDB" != "n" ] && EDITCDDB=y
1960 if [ "$EDITCDDB" = "y" ]; then
1961 CDDBDATAMD5SUM=$($MD5SUM "$CDDBDATA" | cut -d " " -f 1);
1963 # Use the debian sensible-editor wrapper to pick the editor that the
1964 # user has requested via their $EDITOR environment variable
1965 if [ -x "/usr/bin/sensible-editor" ]; then
1966 /usr/bin/sensible-editor "$CDDBDATA"
1967 elif [ -n "$EDITOR" ]; then
1968 if [ -x $(which "${EDITOR%%\ *}") ]; then
1969 # That failed, try to load the preferred editor, starting
1970 # with their EDITOR variable
1971 eval $(echo "$EDITOR") \"$CDDBDATA\"
1973 # If that fails, check for a vi
1974 elif which vi >/dev/null 2>&1; then
1976 elif [ -x /usr/bin/vim ]; then
1977 /usr/bin/vim "$CDDBDATA"
1978 elif [ -x /usr/bin/vi ]; then
1979 /usr/bin/vi "$CDDBDATA"
1980 elif [ -x /bin/vi ]; then
1982 # nano should be on all (modern, i.e., sarge) debian systems
1983 elif which nano >/dev/null 2>&1 ; then
1985 elif [ -x /usr/bin/nano ]; then
1986 /usr/bin/nano "$CDDBDATA"
1987 # mg should be on all OpenBSD systems
1988 elif which mg >/dev/null 2>&1 ; then
1990 elif [ -x /usr/bin/mg ]; then
1991 /usr/bin/mg "$CDDBDATA"
1994 log warning "no editor available. Check your EDITOR environment variable."
1996 # delete editor backup file if it exists
1997 if [ -w "$CDDBDATA~" ]; then
2002 # Some heuristics first. Look at Disc Title, and if it starts with
2003 # "Various", then we'll assume Various Artists
2004 if [ "$(grep ^DTITLE= "$CDDBDATA" | cut -f2- -d= | egrep -ci '^(various|soundtrack|varios|sonora|ost)')" != "0" ]; then
2005 echo "Looks like a Multi-Artist CD" >&2
2008 echo -n "Is the CD multi-artist? [y/n] (n): " >&2
2009 if [ "$INTERACTIVE" = "y" ]; then
2016 if [ "$VARIOUSARTISTS" = "y" ] && [ ! "$ONETRACK" = "y" ]; then
2019 # Need NUMTRACKS before cddb-tool will return it:
2020 NUMTRACKS=$(egrep '^TTITLE[0-9]+=' "$CDDBDATA" | wc -l)
2021 if [ "$(grep -c "^TTITLE.*\/" "$CDDBDATA")" -gt "$(expr $NUMTRACKS / 2 )" ]; then
2022 # More than 1/2 tracks contain a "/", so guess forward
2024 elif [ "$(grep -c "^TTITLE.*\-" "$CDDBDATA")" -gt "$(expr $NUMTRACKS / 2 )" ]; then
2025 # More than 1/2 contain a "-", so guess forward-dash
2027 elif [ "$(grep -c "^TTITLE.*(.*)" "$CDDBDATA")" -gt "$(expr $NUMTRACKS / 2 )" ]; then
2028 # More than 1/2 contain something in parens, so guess trailing-paren
2032 echo "1) Artist / Title" >&2
2033 echo "2) Artist - Title" >&2
2034 echo "3) Title / Artist" >&2
2035 echo "4) Title - Artist" >&2
2036 echo "5) Artist: Title" >&2
2037 echo "6) Title (Artist)" >&2
2038 echo "7) This is a single-artist CD" >&2
2039 echo -n "Which style of multiple artist entries is it? [1-7] ($DEFAULTSTYLE): " >&2
2040 if [ "$INTERACTIVE" = "y" ]; then
2041 read VARIOUSARTISTSTYLE
2043 echo $DEFAULTSTYLE >&2
2044 VARIOUSARTISTSTYLE=$DEFAULTSTYLE
2046 VARIOUSARTISTSTYLE=$(echo 0$VARIOUSARTISTSTYLE | xargs printf %d)
2047 # If they press Enter, then the default style (0) was chosen
2048 while [ $VARIOUSARTISTSTYLE -lt 0 ] || [ $VARIOUSARTISTSTYLE -gt 7 ]; do
2049 echo "Invalid selection. Please choose a number between 1 and 7."
2050 echo -n "Selection [1-7]: "
2051 read VARIOUSARTISTSTYLE
2052 VARIOUSARTISTSTYLE=$(echo 0$VARIOUSARTISTSTYLE | xargs printf %d)
2054 if [ "$VARIOUSARTISTSTYLE" = "0" ]; then
2055 VARIOUSARTISTSTYLE=$DEFAULTSTYLE
2057 vecho "Selected: $VARIOUSARTISTSTYLE"
2058 case "$VARIOUSARTISTSTYLE" in
2060 VARIOUSARTISTSTYLE=forward
2063 VARIOUSARTISTSTYLE=forward-dash
2066 VARIOUSARTISTSTYLE=reverse
2069 VARIOUSARTISTSTYLE=reverse-dash
2072 VARIOUSARTISTSTYLE=colon
2075 VARIOUSARTISTSTYLE=trailing-paren
2083 echo "variousartists=$VARIOUSARTISTS" >> "$ABCDETEMPDIR/status"
2084 echo "variousartiststyle=$VARIOUSARTISTSTYLE" >> "$ABCDETEMPDIR/status"
2086 if [ "$EDITCDDB" = "y" ] && [ "$UNINTENTIONALLY_ANGER_THE_FREEDB_PEOPLE" = "y" ]; then
2087 if [ "$CDDBDATAMD5SUM" != "" ] && [ "$CDDBDATAMD5SUM" != "$($MD5SUM "$CDDBDATA" | cut -d " " -f 1)" ]; then
2088 # This works but does not have the necessary error checking
2089 # yet. If you are familiar with the CDDB spec
2090 # (see http://www.freedb.org/src/latest/DBFORMAT)
2091 # and can create an error-free entry on your own, then put
2092 # UNINTENTIONALLY_ANGER_THE_FREEDB_PEOPLE=y in your
2093 # abcde.conf to enable it. Put CDDBSUBMIT=email@address in
2094 # your abcde.conf to change the email address submissions are
2097 # submit the modified file, if they want
2098 if [ "$NOSUBMIT" != "y" ]; then
2099 echo -n "Do you want to submit this entry to $CDDBSUBMIT? [y/n] (n): "
2101 while [ "$YESNO" != "y" ] && [ "$YESNO" != "n" ] && [ "$YESNO" != "Y" ] && \
2102 [ "$YESNO" != "N" ] && [ "$YESNO" != "" ]
2104 echo -n 'Invalid selection. Please answer "y" or "n": '
2107 if [ "$YESNO" = "y" ] || [ "$YESNO" = "Y" ]; then
2108 echo -n "Sending..."
2109 $CDDBTOOL send "$CDDBDATA" $CDDBSUBMIT
2115 # Make sure the cache directory exists
2116 mkdir -p $CDDBLOCALDIR
2117 # Cache edited CDDB entry in the user's cddb dir
2118 if [ "$CDDBCOPYLOCAL" = "y" ] || [ "$COPYCDDBLOCAL" = "Y" ]; then
2119 cat "$CDDBDATA" | tail -n $(expr $(cat "$CDDBDATA" | wc -l ) - 1 ) > ${CDDBLOCALDIR}/$(echo "$TRACKINFO" | cut -d' ' -f1)
2122 echo "cddb-edit" >> "$ABCDETEMPDIR/status"
2125 # do_cdread [tracknumber]
2126 # do_cdread onetrack [firsttrack] [lasttrack]
2130 # The commands here don't go through run_command because they're never supposed to be silenced
2131 # return codes need to be doublechecked anyway, however
2132 if [ "$1" = "onetrack" ]; then
2133 # FIXME # Add the possibility of grabbing ranges of tracks in onetrack
2134 # FIXME # Until then, we grab the whole CD in one track, no matter what
2136 # We need the first and last track for cdda2wav
2139 UTRACKNUM=$FIRSTTRACK
2140 case "$CDROMREADERSYNTAX" in
2141 ### FIXME ### How are we calculating the tracks in flac mode?
2142 flac) READTRACKNUMS="$FIRSTTRACK.1-$(($LASTTRACK + 1)).0" ;;
2143 cdparanoia) READTRACKNUMS="$FIRSTTRACK-$LASTTRACK" ;;
2144 cdda2wav) READTRACKNUMS="$FIRSTTRACK+$LASTRACK" ;;
2145 *) log error "$CDROMREADERSYNTAX does not support ONETRACK mode"
2151 CDDBTRACKNUM=$(expr $UTRACKNUM - 1)
2152 if [ "$USEPIPES" = "y" ]; then
2153 TEMPARG="PIPERIPPER_$CDROMREADERSYNTAX"
2154 FILEARG="$( eval echo "\$$TEMPARG" )"
2156 PIPE_MESSAGE="and encoding "
2158 WAVDATA="$ABCDETEMPDIR/track$UTRACKNUM.wav"
2159 case "$CDROMREADERSYNTAX" in
2160 ## FIXME ## Find the cases for dagrab and flac, to avoid exceptions
2162 FILEARG="--output-name=$WAVDATA"
2165 FILEARG="-f $WAVDATA"
2173 if [ "$1" = "onetrack" ]; then
2174 echo "Grabbing ${PIPE_MESSAGE}tracks $UTRACKNUM - $LASTTRACK as one track ..." >&2
2176 if [ -r "$CDDBDATA" ]; then
2177 #TRACKNAME=$(grep ^TTITLE$CDDBTRACKNUM= "$CDDBDATA" | head -n 1 | cut -f2 -d= | tr -d \[:cntrl:\])
2178 do_getcddbinfo TRACKNAME
2179 echo "Grabbing ${PIPE_MESSAGE}track $UTRACKNUM: $TRACKNAME..." >&2
2181 echo "Grabbing ${PIPE_MESSAGE}track $UTRACKNUM..." >&2
2184 case "$CDROMREADERSYNTAX" in
2185 ### FIXME ### use an exception for flac, since it uses -o
2186 ### FIXME ### Shall we just use -o $FILEARG ??
2188 nice $READNICE $FLAC -d --cue=${READTRACKNUMS:-$UTRACKNUM.1-$(($UTRACKNUM + 1)).0} "$FILEARG" "$CDROM" ;;
2190 nice $READNICE $CDROMREADER -$CDPARANOIACDROMBUS $CDROM ${READTRACKNUMS:-$UTRACKNUM} "$FILEARG" $REDIR ;;
2192 if [ "$OSFLAVOUR" = "OSX" ] ; then
2193 # Hei, we have to unmount the device before running anything like cdda2wav in OSX
2194 disktool -u ${CDROM#/dev/} 0
2195 # Also, in OSX the cdrom device for cdda2wav changes...
2196 CDDA2WAVCDROM="IODVDServices"
2197 elif [ "$OSFLAVOUR" = "FBSD" ] ; then
2198 CDDA2WAVCDROM="$CDROMID"
2200 if [ "$CDROMID" = "" ]; then
2201 CDDA2WAVCDROM="$CDROM"
2203 CDDA2WAVCDROM="$CDROMID"
2206 nice $READNICE $CDROMREADER -D $CDDA2WAVCDROM -t ${READTRACKNUMS:-$UTRACKNUM} "$FILEARG" $REDIR
2208 ## FIXME ## We have an exception for dagrab, since it uses -f
2209 ## FIXME ## Shall we just use -f $FILEARG ??
2210 dagrab) nice $READNICE $CDROMREADER -d $CDROM -v $UTRACKNUM "$FILEARG" $REDIR
2213 # Find the track's mounted path
2214 REALTRACKNUM=$(expr $UTRACKNUM + 0)
2215 FILEPATH=$(mount | grep "$CDROM on" | sed 's/^[^ ]* on \(.*\) (.*/\1/')
2216 FILEPATH=$(find "$FILEPATH" | grep "/$REALTRACKNUM ");
2217 # If the file exists, copy it
2218 if [ -e "$FILEPATH" ] ; then
2219 nice $READNICE $CDROMREADER "$FILEPATH" "$FILEARG" $REDIR
2223 debug) nice $READNICE $CDROMREADER -$CDPARANOIACDROMBUS $CDROM -w $UTRACKNUM-[:1] "$FILEARG" $REDIR
2227 # If we get some error or we get some missing wav
2228 # (as long as we dont use pipes)
2229 if [ "$RETURN" != "0" -o \( ! -s "$WAVDATA" -a X"$USEPIPES" != "Xy" \) ]; then
2230 # Thank goodness errors is only machine-parseable up to the
2231 # first colon, otherwise this woulda sucked
2232 if [ "$RETURN" = "0" -a ! -s "$WAVDATA" ]; then
2233 RETURN=73 # fake a return code as cdparanoia return 0 also on aborted reads
2235 if [ "$USEPIPES" = "y" ]; then
2236 echo "readencodetrack-$UTRACKNUM: $CDROMREADER returned code $RETURN" >> "$ABCDETEMPDIR/errors"
2238 echo "readtrack-$UTRACKNUM: $CDROMREADER returned code $RETURN" >> "$ABCDETEMPDIR/errors"
2242 if [ "$USEPIPES" = "y" ]; then
2243 echo readencodetrack-$UTRACKNUM >> "$ABCDETEMPDIR/status"
2245 echo readtrack-$UTRACKNUM >> "$ABCDETEMPDIR/status"
2246 if [ "$1" = "onetrack" ]; then
2247 echo onetrack >> "$ABCDETEMPDIR/status"
2254 # No values accepted, only uses env variables
2257 if "$CDSPEED" "$CDSPEEDOPTS" "$CDSPEEDVALUE" >/dev/null ; then
2258 vecho "Setting CD speed to ${CDSPEEDVALUE}x"
2260 echo "abcde: unable to set the device speed" >&2
2266 # vecho outputs a message if EXTRAVERBOSE is selected
2269 if [ x"$EXTRAVERBOSE" != "x" ]; then
2271 warning) log warning "$@" ;;
2279 # decho outputs a debug message if DEBUG is selected
2282 if [ x"$DEBUG" != "x" ]; then
2283 if echo $1 | grep -q "^\[" ; then
2284 DEBUGECHO=$(echo "$@" | tr -d '[]')
2285 echo "[DEBUG] $DEBUGECHO: `eval echo \\$${DEBUGECHO}`"
2292 # User-redefinable functions
2293 # Custom filename munging:
2296 #echo "$@" | sed s,:,\ -,g | tr \ /\* __+ | tr -d \'\"\?\[:cntrl:\]
2297 echo "$@" | sed s,:,\ -,g | tr \ / __ | tr -d \'\"\?\[:cntrl:\]
2300 # Custom genre munging:
2303 echo $CDGENRE | tr "[:upper:]" "[:lower:]"
2307 # Empty pre_read function, to be defined in the configuration file.
2314 # Empty post_read function, to be defined in the configuration file.
2320 ###############################################################################
2323 # Start of execution
2324 ###############################################################################
2327 CDDBURL="http://freedb.freedb.org/~cddb/cddb.cgi"
2328 CDDBSUBMIT=freedb-submit@freedb.org
2330 HELLOINFO="$(whoami)@$(hostname)"
2332 CDDBLOCALDIR="$HOME/.cddb"
2335 # List of fields we parse and show during the CDDB parsing...
2336 SHOWCDDBFIELDS="year,genre"
2339 CDROMREADERSYNTAX=cdparanoia
2340 ENCODERSYNTAX=default
2342 MP3ENCODERSYNTAX=default
2343 OGGENCODERSYNTAX=default
2344 FLACENCODERSYNTAX=default
2345 SPEEXENCODERSYNTAX=default
2346 MPPENCODERSYNTAX=default
2347 NORMALIZERSYNTAX=default
2348 CUEREADERSYNTAX=default
2350 OUTPUTFORMAT='${ARTISTFILE}-${ALBUMFILE}/${TRACKNUM}.${TRACKFILE}'
2351 # Use the following VAOUTPUTFORMAT to revert to 2.0.x VA format:
2352 #VAOUTPUTFORMAT=${OUTPUTFORMAT}
2353 VAOUTPUTFORMAT='Various-${ALBUMFILE}/${TRACKNUM}.${ARTISTFILE}-${TRACKFILE}'
2354 ONETRACKOUTPUTFORMAT='${ARTISTFILE}-${ALBUMFILE}/${ALBUMFILE}'
2355 VAONETRACKOUTPUTFORMAT='Various-${ALBUMFILE}/${ALBUMFILE}'
2356 PLAYLISTFORMAT='${ARTISTFILE}-${ALBUMFILE}.${OUTPUT}.m3u'
2357 PLAYLISTDATAPREFIX=''
2358 VAPLAYLISTFORMAT='${ARTISTFILE}-${ALBUMFILE}.${OUTPUT}.m3u'
2359 VAPLAYLISTDATAPREFIX=''
2367 VARIOUSARTISTSTYLE=forward
2373 # If using scsi devices, cdda2wav needs a CDROMID, instead of a device node
2374 # i.e. CDROMID="1,0,0"
2376 # If we are using the IDE bus, we need CDPARANOIACDROMBUS defined as "d"
2377 # If we are using the ide-scsi emulation layer, we need to define a "g"
2378 CDPARANOIACDROMBUS="d"
2380 # program paths - defaults to checking your $PATH
2387 XINGMP3ENC=xingmp3enc
2402 CDPARANOIA=cdparanoia
2411 VORBISCOMMENT=vorbiscomment
2413 NORMALIZE=normalize-audio
2415 VORBISGAIN=vorbisgain
2421 CUE2DISCID=cue2discid
2423 # Options for programs called from abcde
2456 VORBISCOMMENTOPTS="-R"
2457 METAFLACOPTS="--no-utf8-convert"
2460 # Default to one process if -j isn't specified
2463 # List of actions to perform - by default, run to completion
2464 ACTIONS=cddb,read,encode,tag,move,clean
2466 # List of prefered outputs - by default, run with whatever we have in the path
2467 # This option is basicaly for Debian package dependencies
2468 DEFAULT_OUTPUT_BINARIES=vorbis:oggenc,flac:flac,mp3:lame,mp3:bladeenc,spx:speex
2470 # Asume fetch if under FreeBSD. curl is used for Mac OS X. wget is used for Linux/OpenBSD/NetBSD.
2471 # Let's use these checkings to determine the OS flavour, which will be used later
2472 if [ X$(uname) = "XFreeBSD" ] ; then
2477 elif [ X$(uname) = "XDarwin" ] ; then
2480 # We should have disktool in OSX, but let's be sure...
2482 CDROMREADERSYNTAX=cddafs
2483 elif [ X$(uname) = "XOpenBSD" ] ; then
2486 elif [ X$(uname) = "XNetBSD" ] ; then
2493 # If CDDBAVAIL is set to n, no CDDB read is done
2494 # If USEID3 is set to n, no ID3 tagging is done
2499 if [ -z "$OUTPUTDIR" ]; then
2503 if [ -z "$WAVOUTPUTDIR" ]; then
2504 WAVOUTPUTDIR="$OUTPUTDIR"
2507 # Load system defaults
2508 if [ -r /etc/abcde.conf ]; then
2511 # Load user preference defaults
2512 if [ -r $HOME/.abcde.conf ]; then
2516 # By this time, we need some HTTPGETOPTS already defined.
2517 # If the user has defined a non-default HTTPGET method, we should not be empty.
2519 if [ "$HTTPGETOPTS" = "" ] ; then
2521 wget) HTTPGETOPTS="-q -O -";;
2522 curl) HTTPGETOPTS="-f -s";;
2523 fetch)HTTPGETOPTS="-q -o -";;
2524 ftp) HTTPGETOPTS="-q -o -";;
2525 *) log warning "HTTPGET in non-standard and HTTPGETOPTS are not defined." ;;
2529 # If the CDROM has not been set yet, find a suitable one.
2530 # If this is a devfs system, default to /dev/cdroms/cdrom0
2531 # instead of /dev/cdrom
2532 if [ "$CDROM" = "" ] ; then
2533 if [ -e /dev/cdroms/cdrom0 ]; then
2534 CDROM=/dev/cdroms/cdrom0
2535 elif [ -e /dev/cdrom ]; then
2537 elif [ -e /dev/cd0c ]; then
2539 elif [ -e /dev/acd0c ]; then
2541 elif [ -e /dev/disk1 ]; then
2546 # Parse command line options
2547 #while getopts 1a:bc:C:d:Dehj:klLmMnNo:pPr:Rs:S:t:T:vVxw:W: opt ; do
2548 while getopts 1a:bBc:C:d:Defghj:klLmMnNo:pPr:s:S:t:T:uvVxw:W:z opt ; do
2551 a) ACTIONS="$OPTARG" ;;
2552 A) EXPACTIONS="$OPTARG" ;;
2554 B) NOBATCHREPLAYGAIN=y ;;
2555 c) if [ -e "$OPTARG" ] ; then . "$OPTARG" ; else log error "config file \"$OPTARG\" cannot be found." ; exit 1 ; fi ;;
2556 C) DISCID="$( echo ${OPTARG#abcde.} | tr -d /)" ;;
2557 d) CDROM="$OPTARG" ;;
2559 e) ERASEENCODEDSTATUS=y ;;
2561 e) ERASEENCODEDSTATUS=y ;;
2562 E) ENCODING="$OPTARG" ;;
2566 j) MAXPROCS="$OPTARG" ;;
2569 L) CDDBUSELOCAL=y ;;
2574 o) OUTPUTTYPE="$OPTARG" ;;
2577 r) REMOTEHOSTS="$OPTARG" ;;
2578 R) DOREPLAYGAIN=y ;;
2579 s) SHOWCDDBFIELDS="$OPTARG" ;;
2580 S) CDSPEEDVALUE="$OPTARG" ;;
2581 t) STARTTRACKNUMBER="$OPTARG" ;;
2582 T) STARTTRACKNUMBER="$OPTARG" ; STARTTRACKNUMBERTAG="y" ;;
2585 echo "This is abcde v$VERSION."
2586 echo "Usage: abcde [options] [tracks]"
2587 echo "abcde -h for extra help"
2590 V) EXTRAVERBOSE="y" ;;
2592 w) COMMENT="$OPTARG" ;;
2593 W) if echo $OPTARG | grep -q "[[:digit:]]" ; then
2594 STARTTRACKNUMBER="${OPTARG}01" ; STARTTRACKNUMBERTAG="y" ; COMMENT="CD${OPTARG}"
2596 log error "argument of -W must be integer"
2600 z) DEBUG=y ; CDROMREADERSYNTAX=debug ; EJECTCD="n" ;;
2605 shift $(($OPTIND - 1))
2607 # If the user specified a flac file, then switch to special flac mode
2608 if echo $CDROM | grep -i -q '.flac$'; then
2609 vecho "abcde: switching to flac CDROMREADERSYNTAX..."
2610 CDROMREADERSYNTAX=flac
2611 if [ "$EJECTCD" = "y" ];then
2612 vecho "abcde: CDROM flac mode, deactivating EJECTCD..."
2617 # If the user provided a DISCID, disable eject
2618 if [ -n "$DISCID" ]; then EJECTCD=n ; fi
2620 # Decide if we can continue.
2621 if [ "$ONETRACK" = "y" ]; then
2622 # FIXME # remove check as soon as we find out about the other readers
2623 case "$CDROMREADERSYNTAX" in
2627 *) log error "$CDROMREADERSYNTAX does not support ONETRACK mode"
2630 if [ "$BATCHNORM" = "y" ]; then
2631 log warning "BATCHNORM mode is not compatible with ONETRACK mode. Disabling..."
2634 if [ "$NOGAP" = "y" ]; then
2635 log warning "NOGAP mode is not compatible with ONETRACK mode. Disabling..."
2638 # It does not matter how many tracks we want. In ONETRACK mode we grab them all
2639 # FIXME # allow ranges of tracks to be selected for onetrack ripping
2640 if [ $# -gt 0 ]; then
2641 log warning "ONETRACK mode selected, grabbing all tracks..."
2644 while [ $# -gt 0 ]; do
2645 # Range parsing code courtesy of Vincent Ho
2646 RSTART=$(echo $1 | cut -f1 -d-)
2647 REND=$(echo $1 | cut -f2 -d-)
2648 if [ "$RSTART" = "$REND" ]; then
2651 NEWTRACKS=$(f_seq_line $RSTART $REND)
2653 TRACKQUEUE=$(echo "$TRACKQUEUE" "$NEWTRACKS")
2658 # List of valid actions: cddb,read,normalize,encode,tag,move,playlist,clean
2659 # List of experimental actions: retag,transcode
2661 # Determine what actions are to be done from $ACTIONS and set the
2662 # following environment variables for them:
2675 for ACTION in $(echo $ACTIONS | tr , \ )
2680 normalize) DONORMALIZE=y; DOREAD=y;;
2681 # preprocess) DOPREPROCESS=y; DOREAD=y;;
2682 encode) DOENCODE=y; DOREAD=y;;
2683 # postprocess) DOPREPROCESS=y; DOENCODE=y; DOREAD=y;;
2684 tag) DOTAG=y; DOREAD=y; DOENCODE=y; DOCDDB=y;;
2685 move) DOMOVE=y; DOTAG=y; DOREAD=y; DOENCODE=y; DOCDDB=y;;
2686 replaygain) DOCDDB=y; DOREAD=y; DOENCODE=y; DOTAG=y; DOMOVE=y; DOREPLAYGAIN=y;;
2687 playlist) DOCDDB=y; DOPLAYLIST=y;;
2692 if [ "$DONORMALIZE" = "y" ] && [ "$DOREPLAYGAIN" = "y" ]; then
2693 # FIXME # should we abort on error or just inform the user?
2694 log warning "selected both normalize and replaygain actions"
2697 for SHOWCDDBFIELD in $(echo $SHOWCDDBFIELDS | tr , \ ); do
2698 case $SHOWCDDBFIELD in
2699 y*|Y*) SHOWCDDBYEAR="y";;
2700 g*|G*) SHOWCDDBGENRE="y";;
2707 # At this point a CDROM has to be defined, so we check it exists.
2708 if [ X"$CDROM" != "X" ] ; then
2709 if [ "$CDROMREADERSYNTAX" = "cdda2wav" ] && [ "$NEEDCDROMID" = "y" ] ; then
2710 if [ "$OSFLAVOUR" = "FBSD" ]; then
2711 if ! echo "$CDROMID" | grep "^[0-9],[0-9],[0-9]$" >/dev/null 2>&1 ; then
2712 log error "CDROMID not in the right format for $CDROMREADERSYNTAX"
2713 log error "Use \"cdrecord -scanbus\" to obtain a adecuate ID an set CDROMID accordingly"
2717 elif [ ! -e "$CDROM" -a X"$DOREAD" = "Xy" ]; then
2718 log error "CDROM device cannot be found."
2721 # avoid processing if we are not going to hit the CDROM.
2722 elif [ X"$DOREAD" = "Xy" ]; then
2723 log error "CDROM has not been defined or cannot be found"
2727 # USEPIPES pre-tests, before we get into more serious stuff
2728 # Not compatible with:
2729 # - multiple outputs
2731 # - lowdisk algorithm
2733 if [ X"$USEPIPES" = "Xy" ]; then
2734 if [ $(echo "$OUTPUTTYPE" | tr , \ | wc -w ) -gt 1 ]; then
2735 log error "Unix pipes not compatible with multiple outputs"
2738 if [ X"$DONORMALIZE" = "Xy" ]; then
2739 log error "Unix pipes not compatible with normalizer"
2740 # FIXME # Do we need to exit or shall we just disable the mode?
2743 if [ X"$BATCHNORM" = "Xy" ]; then
2744 log error "Unix pipes not compatible with BATCHNORM encoding"
2747 if [ X"$NOGAP" = "Xy" ]; then
2748 log error "Unix pipes not compatible with NOGAP encoding"
2751 if [ X"$DOENCODE" = "Xn" ]; then
2752 vecho warning "Disabling Unix pipes since we are not encoding!"
2755 if [ X"$LOWDISK" = "Xy" ]; then
2756 log error "Unix pipes not compatible with lowdisk algorithm"
2761 # LOWDISK pre-tests, before we get into more problematic stuff
2762 # Not compatible with anything that needs all the files in the hard disc:
2765 if [ X"$LOWDISK" = "Xy" ]; then
2766 if [ X"$BATCHNORM" = "Xy" ]; then
2767 log error "Unix pipes not compatible with BATCHNORM encoding"
2770 if [ X"$NOGAP" = "Xy" ]; then
2771 log error "Unix pipes not compatible with NOGAP encoding"
2776 # BATCHNORM pre-tests, before we get into serious problems
2777 # Not compatible with
2778 if [ "$BATCHNORM" = "y" ] && [ "$DONORMALIZE" = "n" ]; then
2779 vecho warning "Disabling BATCHNORM since we are not normalizing!"
2783 # Check the encoding format from the ones available in the system, if nothing has been configured in the system.
2784 if [ X"$OUTPUTTYPE" = "X" ]; then
2785 for DEFAULT_OUTPUT in $( echo "$DEFAULT_OUTPUT_BINARIES" | tr , \ ); do
2786 DEFAULT_OUTPUT_FORMAT="$(echo $DEFAULT_OUTPUT | cut -d ":" -f 1)"
2787 DEFAULT_OUTPUT_BINARY="$(echo $DEFAULT_OUTPUT | cut -d ":" -f 2)"
2788 if [ -x $(which $DEFAULT_OUTPUT_BINARY) ] ; then
2789 OUTPUTTYPE=$DEFAULT_OUTPUT_FORMAT
2790 vecho "No default output type defined. Autoselecting $OUTPUTTYPE..." >&2
2794 if [ X"$OUTPUTTYPE" = "X" ]; then
2795 log error "no encoder found in the PATH"
2796 log error "hints: are all dependencies installed? has the \$PATH been modified?"
2801 # Decide which CDROM reader we're gonna use
2802 case "$CDROMREADERSYNTAX" in
2804 CDROMREADER="$CDPARANOIA"
2805 CDROMREADEROPTS="$CDPARANOIAOPTS"
2808 CDROMREADER="$CDDA2WAV"
2809 CDROMREADEROPTS="$CDDA2WAVOPTS"
2812 CDROMREADER="$DAGRAB"
2813 CDROMREADEROPTS="$DAGRABOPTS"
2816 CDROMREADER="$CDDAFS"
2817 CDROMREADEROPTS="$CDDAFSOPTS"
2821 CDROMREADEROPTS="$FLACOPTS"
2825 # There's only one normalize...
2826 case "$NORMALIZERSYNTAX" in
2828 NORMALIZER="$NORMALIZE"
2829 NORMALIZEROPTS="$NORMALIZEOPTS"
2833 # Allow -o OUTPUT(1):OPTIONS(1),...,OUTPUT(N):OPTIONS(N) mode of operation
2834 if echo "$OUTPUTTYPE" | grep ":" > /dev/null 2>&1 ; then
2835 for OUTPUT in "$(echo "$OUTPUTTYPE" | tr , \ )"; do
2837 vorbis:*|ogg:*) OGGENCODEROPTSCLI="$( echo $OUTPUT | cut -d: -f2- )" ;;
2838 mp3:*) MP3ENCODEROPTSCLI="$( echo $OUTPUT | cut -d: -f2- )" ;;
2839 flac:*) FLACENCODEROPTSCLI="$( echo $OUTPUT | cut -d: -f2- )" ;;
2840 spx:*) SPEEXENCODEROPTSCLI="$( echo $OUTPUT | cut -d: -f2- )" ;;
2841 mpc:*) MPPENCODEROPTSCLI="$( echo $OUTPUT | cut -d: -f2- )" ;;
2844 for OUTPUT in "$(echo "$OUTPUTTYPE" | tr , \ )"; do
2845 TEMPOUTPUT=$( echo "$OUTPUT" | cut -d: -f1 )
2846 TEMPOUTPUTTYPE="${TEMPOUTPUTTYPE:+$TEMPOUTPUTTYPE,}$TEMPOUTPUT"
2848 OUTPUTTYPE="$TEMPOUTPUTTYPE"
2851 # 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
2853 # Getting ready for multiple output changes
2854 for OUTPUT in $(echo $OUTPUTTYPE | tr , \ )
2858 [ "$OGGENCODERSYNTAX" = "default" ] && OGGENCODERSYNTAX=oggenc
2859 [ "$DOTAG" = "y" ] && NEEDCOMMENTER=y
2860 [ "$DOREPLAYGAIN" = "y" ] && NEEDVORBISGAIN=y
2861 OGGOUTPUTCONTAINER=ogg
2864 [ "$MP3ENCODERSYNTAX" = "default" ] && MP3ENCODERSYNTAX=lame
2865 [ "$DOTAG" = "y" ] && NEEDTAGGER=y
2866 [ "$DOREPLAYGAIN" = "y" ] && NEEDMP3GAIN=y