2 # Copyright (c) 1998-2001 Robert Woodcock <rcw@debian.org>
3 # Copyright (c) 2003-2006 Jesus Climent <jesus.climent@hispalinux.es>
4 # This code is hereby licensed for public consumption under either the
5 # GNU GPL v2 or greater, or Larry Wall's Artistic license - your choice.
7 # You should have received a copy of the GNU General Public License along
8 # with this program; if not, write to the Free Software Foundation, Inc.,
9 # 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
11 # Copyright for this work is to expire January 1, 2010, after which it
12 # shall be public domain.
20 echo "This is abcde v$VERSION."
21 echo "Usage: abcde [options] [tracks]"
23 echo "-1 Encode the whole CD in a single file"
24 echo "-a <action1[,action2]...>"
25 echo " Actions to perform:"
26 echo " cddb,read,normalize,encode,tag,move,replaygain,playlist,clean"
27 #echo "-A Experimental actions (retag, transcode)"
28 echo "-b Enable batch normalization"
29 #echo "-B Disable batch replaygain (do file by file)"
31 echo " Specify a configuration file (overrides system and user config files)"
33 echo " Specify discid to resume from (only needed if you no longer have the cd)"
35 echo " Specify CDROM device to grab (flac uses a single-track flac file)"
36 echo "-D Debugging mode (equivalent to sh -x abcde)"
37 echo "-e Erase encoded track information from status file"
38 echo "-f Force operations that otherwise are considered harmful. Read \"man abcde\""
39 echo "-g Use \"lame --nogap\" for MP3 encoding. Disables low disk and pipes flags"
40 echo "-h This help information"
41 #echo "-i Tag files while encoding, when possible (local only) -NWY-"
42 echo "-j <#> Number of encoder processes to run at once (localhost)"
43 echo "-k Keep the wav tracks for later use"
44 echo "-l Use low disk space algorithm"
45 echo "-L Use local CDDB storage directory"
46 echo "-n No lookup. Don't query CDDB, just create and use template"
47 echo "-N Noninteractive. Never prompt for anything"
48 echo "-m Modify playlist to include CRLF endings, to comply with some players"
49 #echo " WARNING: Deprecated. Use \"cue\" action"
50 #echo "-M Create a CUE file"
51 echo "-o <type1[,type2]...>"
52 echo " Output file type(s) (vorbis,mp3,flac,spx,mpc,wav,m4a). Defaults to vorbis"
53 echo "-p Pad track numbers with 0's (if less than 10 tracks)"
54 echo "-P Use UNIX pipes to read+encode without wav files"
56 echo " Set quality level (high,medium,low)"
57 echo "-r <host1[,host2]...>"
58 echo " Also encode on these remote hosts"
59 echo "-R Use local CDDB in recursive mode"
61 echo " Show fields from the CDDB info (year,genre)"
62 echo "-S <#> Set the CD speed"
63 echo "-t <#> Start the track numbering at a given number"
64 echo "-T <#> Same as -t but modifies tag numbering"
65 echo "-U Do NOT use UNICODE (UTF8) tags and comments"
66 echo "-v Show version number and exit"
67 echo "-V Be a bit more verbose about what is happening behind the scenes"
68 echo "-x Eject CD after all tracks are read"
70 echo " Add a comment to the CD tracks"
71 echo "-W <#> Concatenate CDs: -T #01 -w \"CD #\""
72 echo "-z Use debug CDROMREADERSYNTAX option (needs cdparanoia)"
74 echo "Tracks is a space-delimited list of tracks to grab."
75 echo "Ranges specified with hyphens are allowed (i.e., 1-5)."
77 #echo "Double hyphens are used to concatenate tracks"
82 echo "$@" >> "$ABCDETEMPDIR/status"
85 # log [level] [message]
87 # log outputs the right message in a common format
93 error
) echo "[ERROR] abcde: $@" >&2 ;;
94 warning
) echo "[WARNING] $@" >&2 ;;
95 info
) echo "[INFO] $@" ;;
99 # Funtions to replace the need of seq, which is too distribution dependant.
103 while [ $i -ne `expr $2 + 1` ]
113 if echo $i |
grep "[[:digit:]]" > /dev
/null
2>&1 ; then
114 while [ $i -ne `expr $2 + 1` ]
121 log error
"syntax error while processing track numbers"
126 # Functions to replace the need of awk {print $1} and {print $NF}
129 if [ X
"$1" = "X" ]; then
130 for first
in `cat`; do
141 if [ X
"$1" = "X" ]; then
142 for stdin
in `cat`; do
146 for last
in $@
; do :; done
151 # checkstatus [blurb]
152 # Returns "0" if the blurb was found, returns 1 if it wasn't
153 # Puts the blurb content, if available, on stdout.
154 # Otherwise, returns "".
157 # Take the last line in the status file if there's multiple matches
159 BLURB
=$
(egrep $PATTERN "$ABCDETEMPDIR/status" |
tail -n 1)
161 if [ -z "$BLURB" ]; then
166 # See if there's a = in it
167 if [ "$(echo $BLURB | grep -c =)" != "0" ]; then
168 echo "$(echo $BLURB | cut -f2- -d=)"
174 # checkwarnings [blurb]
175 # Returns "0" if the blurb was found (meaning there was an warning),
176 # returns 1 if it wasn't (yes this is a little backwards).
177 # Does not print the blurb on stdout.
178 # Otherwise, returns "".
181 if [ -e "$ABCDETEMPDIR/warnings" ]; then :; else
184 # Take the last line in the status file if there's multiple matches
186 BLURB
="$(egrep $PATTERN "$ABCDETEMPDIR/warnings
" | tail -n 1)"
188 if [ -z "$BLURB" ]; then
189 # negative, we did not have a negative...
192 # affirmative, we had a negative...
197 # checkerrors [blurb]
198 # Returns "0" if the blurb was found (meaning there was an error),
199 # returns 1 if it wasn't (yes this is a little backwards).
200 # Does not print the blurb on stdout.
201 # Otherwise, returns "".
204 if [ -e "$ABCDETEMPDIR/errors" ]; then :; else
207 # Take the last line in the status file if there's multiple matches
209 BLURB
="$(egrep $PATTERN "$ABCDETEMPDIR/errors
" | tail -n 1)"
211 if [ -z "$BLURB" ]; then
212 # negative, we did not have a negative...
215 # affirmative, we had a negative...
221 # Finds the right pager in the system to display a file
225 # Use the debian sensible-pager wrapper to pick the pager
226 # user has requested via their $PAGER environment variable
227 if [ -x "/usr/bin/sensible-pager" ]; then
228 /usr
/bin
/sensible-pager
"$PAGEFILE"
229 elif [ -x "$PAGER" ]; then
230 # That failed, try to load the preferred editor, starting
231 # with their PAGER variable
233 # If that fails, check for less
234 elif [ -x /usr
/bin
/less ]; then
235 /usr
/bin
/less -f "$PAGEFILE"
236 # more should be on all UNIX systems
237 elif [ -x /bin
/more ]; then
238 /bin
/more "$PAGEFILE"
240 # No bananas, just cat the thing
245 # run_command [blurb] [command...]
246 # Runs a command, silently if necessary, and updates the status file
251 # See if this is supposed to be silent
252 if [ "$(checkstatus encode-output)" = "loud" ]; then
256 # Special case for SMP, since
257 # encoder output is never displayed, don't mute echos
258 if [ -z "$BLURB" -a "$MAXPROCS" != "1" ]; then
267 normalize|normalize-audio
)
268 if [ "$RETURN" = "2" ]; then
269 # File was already normalized.
274 if [ "$RETURN" != "0" ]; then
275 # Put an error in the errors file. For various reasons we
276 # can't capture a copy of the program's output but we can
277 # log what we attempted to execute and the error code
278 # returned by the program.
279 if [ "$BLURB" ]; then
282 echo "${TWEAK}returned code $RETURN: $@" >> "$ABCDETEMPDIR/errors"
283 return $RETURN # Do not pass go, do not update the status file
285 if [ "$BLURB" ]; then
286 echo $BLURB >> "$ABCDETEMPDIR/status"
290 # relpath() and slash() are Copyright (c) 1999 Stuart Ballard and
291 # distributed under the terms of the GNU GPL v2 or later, at your option
293 # Function to determine if a word contains a slash.
302 # Function to give the relative path from one file to another.
303 # Usage: relpath fromfile tofile
304 # eg relpath music/Artist/Album.m3u music/Artist/Album/Song.mp3
305 # (the result would be Album/Song.mp3)
306 # Output is relative path to $2 from $1 on stdout
308 # This code has the following restrictions:
309 # Multiple ////s are not collapsed into single /s, with strange effects.
310 # Absolute paths and ../s are handled wrong in FR (but they work in TO)
311 # If FR is a directory it must have a trailing /
319 /*) ;; # No processing is needed for absolute paths
321 # Loop through common prefixes, ignoring them.
322 while slash
"$FR" && [ "$(echo "$FR" | cut -d/ -f1)" = "$(echo "$TO" | cut -d/ -f1)" ]
324 FR
="$(echo "$FR" | cut -d/ -f2-)"
325 TO
="$(echo "$TO" | cut -d/ -f2-)"
327 # Loop through directory portions left in FR, adding appropriate ../s.
330 FR
="$(echo "$FR" | cut -d/ -f2-)"
341 if [ ! "$@" = "" ]; then
342 # Cut off any command-line option we added in
343 X
=$
(echo $@ | cut
-d' ' -f2)
344 if [ "$(which $X)" = "" ]; then
346 elif [ ! -x $
(which $X) ]; then
355 if [ ! "$@" = "" ]; then
356 # Cut off any command-line option we added in
357 X
=$
(echo $@ | cut
-d' ' -f2)
358 # Test for built-in abcde.function
359 [ "$X" != "${X#abcde.}" ] && type $X >/dev
/null
2>&1 && return
360 if [ "$(which $X)" = "" ]; then
361 log error
"$X is not in your path." >&2
362 log info
"Define the full path to the executable if it exists on your system." >&2
363 if [ -e /etc
/debian_release
] ; then
365 oggenc
) MISSING_PACKAGE
=vorbis-tools
;;
366 lame|flac
) MISSING_PACKAGE
=$X ;;
368 log info
"Hint: apt-get install $MISSING_PACKAGE" >&2
371 elif [ ! -x "$(which $X)" ]; then
372 log error
"$X is not executable." >&2
378 # diffentries <filename> <max_value> <entry1>,<entry2>
379 # max_value: the range of entries goes from 1 to <max_value>
384 local CDDBDIFFCHOICES
=$1
386 local CDDBDIFFCHOICE
="$@"
387 if [ ! X
"$DIFF" = "X" ]; then
388 PARSECHOICE1
=$
(echo $CDDBDIFFCHOICE | cut
-d"," -f1 |
xargs printf %d
2>/dev
/null
)
389 PARSECHOICE2
=$
(echo $CDDBDIFFCHOICE | cut
-d"," -f2 |
xargs printf %d
2>/dev
/null
)
390 if [ $PARSECHOICE1 -lt 1 ] ||
[ $PARSECHOICE1 -gt $CDDBDIFFCHOICES ] || \
391 [ $PARSECHOICE2 -lt 1 ] ||
[ $PARSECHOICE2 -gt $CDDBDIFFCHOICES ] || \
392 [ $PARSECHOICE1 -eq $PARSECHOICE2 ]; then
393 echo "Invalid diff range. Please select two comma-separated numbers between 1 and $CDDBDIFFCHOICES" >&2
395 # We parse the 2 choices to diff, store them in temporary files and diff them.
396 for PARSECHOICE
in $
(echo $CDDBDIFFCHOICE |
tr , \
); do
397 do_cddbparse
"$ABCDETEMPDIR/$FILENAME.$PARSECHOICE" > "$ABCDETEMPDIR/$FILENAME.parsechoice.$PARSECHOICE"
399 echo "Showing diff between choices $PARSECHOICE1 and $PARSECHOICE2..." > "$ABCDETEMPDIR/$FILENAME.diff"
400 $DIFF $DIFFOPTS "$ABCDETEMPDIR/$FILENAME.parsechoice.$PARSECHOICE1" "$ABCDETEMPDIR/$FILENAME.parsechoice.$PARSECHOICE2" >> "$ABCDETEMPDIR/$FILENAME.diff"
401 if [ $
(cat "$ABCDETEMPDIR/$FILENAME.diff" |
wc -l) -ge 24 ]; then
402 page
"$ABCDETEMPDIR/$FILENAME.diff"
404 cat "$ABCDETEMPDIR/$FILENAME.diff" >&2
408 echo "The diff program was not found in your path. Please choose a number between 0 and $CDDBDIFFCHOICES." >&2
413 # Finds an specific field from cddbinfo
418 TRACKNAME
="$(grep ^TTITLE$CDDBTRACKNUM= "$CDDBDATA" | head -n 1 | cut -f2- -d= | tr -d \[:cntrl:\] | sed 's/\ \+$//')"
421 TRACKNAME
="$(grep ^TTITLE$CDDBTRACKNUM= "$CDDBDATA" | cut -f2- -d= | tr -d \[:cntrl:\] | sed 's/\ \+$//')"
424 grep ^EXTT
$CDDBTRACKNUM= "$CDDBDATA" | cut
-f2- -d= |
tr -d \
[:cntrl
:\
] |
sed 's/\\n/\n/g'
430 # Get the track number we are going to use for different actions
433 if [ -n "$STARTTRACKNUMBER" ] ; then
434 # Get the trackpadding from the current track
435 CURRENTTRACKPADDING
=$
(echo -n $UTRACKNUM |
wc -c)
436 TRACKNUM
=$
( printf %0.
${CURRENTTRACKPADDING}d $(expr ${UTRACKNUM} + ${STARTTRACKNUMBER} - $FIRSTTRACK ))
438 TRACKNUM
=${UTRACKNUM}
444 # Calculate cddb disc ids without requiring specialized helper programs.
445 # largely copied from cd-discid and musicbrainz examples. some of the steps
446 # don't make sense, but they're necessary to match the ids generated by other
449 ## FIXME ## Right now, we get 2 frames more than with cue2discid ??
450 # data@petit:~$ sh /tmp/cue2discid /home/data/tmp/flac/01.Roisin_Murphy--Ruby_Blue.flac
451 # processing offsetimes 00:00:00 04:47:10 08:20:37 11:46:46 17:45:36 21:41:57 27:32:21 32:03:73 35:39:28 38:27:33 43:50:38 44:42:34
452 # 980b4b0c 12 150 21685 37687 53146 80061 97782 124071 144448 160603 173208 197438 201334 2895
453 # data@petit:~$ metaflac --export-cuesheet-to=- /home/data/tmp/flac/01.Roisin_Murphy--Ruby_Blue.flac| python /home/data/sources/abcde/trunk/examples/cue2discid
454 # 980b4b0c 12 150 21685 37687 53146 80061 97782 124071 144448 160603 173208 197438 201334 2893
456 # Variables: OFFSETS, TRACKS, LEADOUT, [LEADIN]
459 if [ X
"$LEADOUT" = "X" ]; then
460 log warning
"Error trying to calculate disc ids without lead-out information."
464 # default to a two second lead-in
466 LEADIN
=${LEADIN:=150}
468 # number of cdframes per second
471 # reset cddb checksum for cddb disc-id calululation
475 for OFFSET
in $
(echo $OFFSETS)
477 COOKEDOFFSETS
="${COOKEDOFFSETS} $(($OFFSET + $LEADIN))"
479 OFFSETTIME
=$
(( ($OFFSET + $LEADIN) / $CDFRAMES ))
480 while [ $OFFSETTIME -gt 0 ]; do
481 CDDBCKSUM
=$
(($CDDBCKSUM + $OFFSETTIME % 10))
482 OFFSETTIME
=$
(($OFFSETTIME / 10))
487 COOKEDOFFSETS
="${COOKEDOFFSETS:1}" # eat the leading space
489 PREGAP
=$
(($
(echo $OFFSETS | cut
-f1 -d' ')))
490 TOTALTIME
=$
(( (($LEADOUT + $LEADIN + $PREGAP) / $CDFRAMES) - (($LEADIN + $PREGAP) / $CDFRAMES)))
492 printf -v HEXSUM
"%08lx" $
(( ($CDDBCKSUM % 0xff) << 24 | $TOTALTIME << 8 | $TRACKS))
493 TRACKINFO="${HEXSUM} $((TRACKS)) ${COOKEDOFFSETS} $((($LEADOUT + $LEADIN + $IDMAGICNUM) / $CDFRAMES))"
498 if checkstatus replaygain; then :; else
499 run_command "" echo "Adding replaygain information..."
500 for TMPOUTPUT in $( echo $OUTPUTTYPE | tr , \ )
504 OUTPUT=$OGGOUTPUTCONTAINER
507 OUTPUT=$FLACOUTPUTCONTAINER
515 for UTRACKNUM in $TRACKQUEUE
517 CDDBTRACKNUM=$(expr $UTRACKNUM - 1)
518 getcddbinfo TRACKNAME
520 TRACKFILE="$(mungefilename "$TRACKNAME")"
521 ARTISTFILE="$(mungefilename "$TRACKARTIST")"
522 ALBUMFILE="$(mungefilename "$DALBUM")"
523 GENRE="$(mungegenre "$GENRE")"
524 YEAR=${CDYEAR:-$CDYEAR}
526 if [ "$ONETRACK" = "y" ]; then
527 if [ "$VARIOUSARTISTS" = "y" ]; then
528 OUTPUTFILE="$(eval echo \""$VAONETRACKOUTPUTFORMAT"\")"
530 OUTPUTFILE="$(eval echo \""$ONETRACKOUTPUTFORMAT"\")"
533 if [ "$VARIOUSARTISTS" = "y" ]; then
534 OUTPUTFILE="$(eval echo \""$VAOUTPUTFORMAT"\")"
536 OUTPUTFILE="$(eval echo \""$OUTPUTFORMAT"\")"
539 OUTPUTFILES[$REPLAYINDEX]="$OUTPUTDIR/$OUTPUTFILE.$OUTPUT"
540 (( REPLAYINDEX = $REPLAYINDEX + 1 ))
544 run_command replaygain-flac nice $ENCNICE $METAFLAC $FLACGAINOPTS "${OUTPUTFILES[@]}"
545 #run_command replaygain-flac true
548 run_command replaygain-vorbis nice $ENCNICE $VORBISGAIN $VORBISGAINOPTS "${OUTPUTFILES[@]}"
551 run_command replaygain-mp3 nice $ENCNICE $MP3GAIN $MP3GAINOPTS "${OUTPUTFILES[@]}"
554 run_command replaygain-mpc nice $ENCNICE $MPPGAIN --auto "${OUTPUTFILES[@]}"
559 if checkerrors "replaygain-.{3,6}"; then :; else
560 run_command replaygain true
565 # This code splits the a Various Artist track name from one of the following
568 # forward: Artist / Track
569 # forward-dash: Artist - Track
570 # reverse: Track / Artist
571 # reverse-dash: Track - Artist
572 # colon: Artist: Track
573 # trailing-paren: Artist (Track)
576 # VARIOUSARTISTS, VARIOUSARTISTSTYLE, TRACKNAME, TRACKARTIST
579 if [ "$VARIOUSARTISTS" = "y" ] && [ ! "$ONETRACK" = "y" ]; then
580 case "$VARIOUSARTISTSTYLE" in
582 DTITLEARTIST="$(echo "$TRACKNAME" | sed 's- / -~-g')"
583 TRACKARTIST="$(echo "$DTITLEARTIST" | cut -f1 -d~)"
584 TRACKNAME="$(echo "$DTITLEARTIST" | cut -f2 -d~)"
587 DTITLEARTIST="$(echo "$TRACKNAME" | sed 's, - ,~,g')"
588 TRACKARTIST="$(echo "$DTITLEARTIST" | cut -f1 -d~)"
589 TRACKNAME="$(echo "$DTITLEARTIST" | cut -f2 -d~)"
592 DTITLEARTIST="$(echo "$TRACKNAME" | sed 's- / -~-g')"
593 TRACKARTIST="$(echo "$DTITLEARTIST" | cut -f2 -d~)"
594 TRACKNAME="$(echo "$DTITLEARTIST" | cut -f1 -d~)"
597 DTITLEARTIST="$(echo "$TRACKNAME" | sed 's, - ,~,g')"
598 TRACKARTIST="$(echo "$DTITLEARTIST" | cut -f2 -d~)"
599 TRACKNAME="$(echo "$DTITLEARTIST" | cut -f1 -d~)"
602 DTITLEARTIST="$(echo "$TRACKNAME" | sed 's-: -~-g')"
603 TRACKARTIST="$(echo "$DTITLEARTIST" | cut -f1 -d~)"
604 TRACKNAME="$(echo "$DTITLEARTIST" | cut -f2 -d~)"
607 DTITLEARTIST="$(echo "$TRACKNAME" | sed 's,^\(.*\) (\(.*\)),\1~\2,')"
608 TRACKARTIST="$(echo "$DTITLEARTIST" | cut -f2 -d~)"
609 TRACKNAME="$(echo "$DTITLEARTIST" | cut -f1 -d~)"
612 elif [ "$VARIOUSARTISTS" = "y" ] && [ "$ONETRACK" = "y" ]; then
613 TRACKARTIST="Various"
615 TRACKARTIST="$DARTIST"
620 local genre=$(echo "${@}" | tr '[A-Z]' '[a-z]')
624 "classic rock") id=1 ;;
642 "industrial") id=19 ;;
643 "alternative") id=20 ;;
645 "death metal") id=22 ;;
647 "soundtrack") id=24 ;;
648 "euro-techno") id
=25 ;;
652 "jazz+funk") id
=29 ;;
655 "classical") id
=32 ;;
656 "instrumental") id
=33 ;;
660 "sound clip") id
=37 ;;
663 "alt. rock") id
=40 ;;
668 "meditative") id
=45 ;;
669 "instrum. pop") id
=46 ;;
670 "instrum. rock") id
=47 ;;
674 "techno-indust.") id
=51 ;;
675 "electronic") id
=52 ;;
677 "eurodance") id
=54 ;;
679 "southern rock") id
=56 ;;
684 "christian rap") id
=61 ;;
685 "pop/funk"|
"pop / funk") id
=62 ;;
687 "native american") id
=64 ;;
690 "psychadelic") id
=67 ;;
692 "showtunes") id
=69 ;;
696 "acid punk") id
=73 ;;
697 "acid jazz") id
=74 ;;
701 "rock & roll") id
=78 ;;
702 "hard rock") id
=79 ;;
704 "folk/rock") id
=81 ;;
705 "national folk") id
=82 ;;
712 "bluegrass") id
=89 ;;
713 "avantgarde") id
=90 ;;
714 "gothic rock") id
=91 ;;
715 "progress. rock") id
=92 ;;
716 "psychadel. rock") id
=93 ;;
717 "symphonic rock") id
=94 ;;
718 "slow rock") id
=95 ;;
721 "easy listening") id
=98 ;;
727 "chamber music") id
=104 ;;
729 "symphony") id
=106 ;;
730 "booty bass") id
=107 ;;
732 "porn groove") id
=109 ;;
734 "slow jam") id
=111 ;;
738 "folklore") id
=115 ;;
740 "power ballad") id
=117 ;;
741 "rhythmic soul") id
=118 ;;
742 "freestyle") id
=119 ;;
744 "punk rock") id
=121 ;;
745 "drum solo") id
=122 ;;
746 "a capella") id
=123 ;;
747 "euro-house") id
=124 ;;
748 "dance hall") id
=125 ;;
750 "drum & bass") id
=127 ;;
751 "club-house") id
=128 ;;
752 "hardcore") id
=129 ;;
756 "negerpunk") id
=133 ;;
757 "polsk punk") id
=134 ;;
759 "christian gangsta rap") id
=136 ;;
760 "heavy metal") id
=137 ;;
761 "black metal") id
=138 ;;
762 "crossover") id
=139 ;;
763 "contemporary christian")id
=140 ;;
764 "christian rock") id
=141 ;;
765 "merengue") id
=142 ;;
767 "thrash metal") id
=144 ;;
770 "synthpop") id
=147 ;;
771 "rock/pop"|
"rock / pop") id
=148 ;;
778 # do_tag [tracknumber]
779 # id3 tags a filename
781 # TRACKS, TRACKNAME, TRACKARTIST, TAGGER, TAGGEROPTS, VORBISCOMMENT, METAFLAC, ATOMICPARSLEY
782 # COMMENT, DALBUM, DARTIST, CDYEAR, CDGENRE
785 COMMENTOUTPUT
="$(eval echo ${COMMENT})"
786 if [ -z "$COMMENTOUTPUT" ]; then
787 COMMENTOUTPUT
="$(getcddbinfo TRACK-INFO)"
789 CDDBDISCID
=$
(echo $TRACKINFO | cut
-d' ' -f1)
790 run_command
'' echo "Tagging track $1 of $TRACKS: $TRACKNAME..."
791 # If we want to start the tracks with a given number, we need to modify the
792 # TRACKNUM value before evaluation
793 if [ -n "$STARTTRACKNUMBERTAG" ] ; then
796 for OUTPUT
in $
(echo $OUTPUTTYPE |
tr , \
)
800 # id3v2 v0.1.9 claims to have solved the -c bug, so we merge both id3 and id3v2
801 GENREID
=$
(do_getgenreid
"${CDGENRE}")
802 # Set TPE2 in case we have a Various Artists rip.
804 if [ "$VARIOUSARTISTS" = "y" ]; then
811 # FIXME # track numbers in mp3 come with 1/10, so we cannot
812 # happily substitute them with $TRACKNUM
813 run_command tagtrack-
$OUTPUT-$1 nice
$ENCNICE $TAGGER $TAGGEROPTS \
814 --comment=::"$COMMENTOUTPUT" -A "$DALBUM" \
815 -a "$TRACKARTIST" -t "$TRACKNAME" -Y "$CDYEAR" \
816 -G "$GENREID" -n "${TRACKNUM:-$1}" \
817 "${TRACKNUM:+-N $TRACKS}" \
818 "${ENCODING:+--set-encoding=$ENCODING}" \
819 "${TPE2:+--set-user-text-frame=TPE2:$TPE2}" \
820 "$ABCDETEMPDIR/track$1.$OUTPUT"
822 # FIXME # Still not activated...
824 run_command tagtrack-
$OUTPUT-$1 nice
$ENCNICE \
825 $TAGGER $TAGGEROPTS -c "$COMMENTOUTPUT" \
826 -a "$DALBUM" -n "$TRACKARTIST" -s "$TRACKNAME" \
827 -y "$CDYEAR" -g "$GENREID" -k "${TRACKNUM:-$1}" \
828 "$ABCDETEMPDIR/track$1.$OUTPUT"
831 # FIXME # track numbers in mp3 come with 1/10, so we cannot
832 # happily substitute them with $TRACKNUM
833 run_command tagtrack-
$OUTPUT-$1 nice
$ENCNICE \
834 $TAGGER $TAGGEROPTS -c "$COMMENTOUTPUT" \
835 -A "$DALBUM" -a "$TRACKARTIST" -t "$TRACKNAME" \
836 -y "$CDYEAR" -g "$GENREID" \
837 -T "${TRACKNUM:-$1}/$TRACKS" \
838 ${TPE2:+--TPE2 "$TPE2"} \
839 "$ABCDETEMPDIR/track$1.$OUTPUT"
844 case "$OGGENCODERSYNTAX" in
846 # vorbiscomment can't do in-place modification, mv the file first
847 if [ -f "$ABCDETEMPDIR/track$1.$OGGOUTPUTCONTAINER" -a ! -f "$ABCDETEMPDIR/track$1.uncommented.$OGGOUTPUTCONTAINER" ]; then
848 mv "$ABCDETEMPDIR/track$1.$OGGOUTPUTCONTAINER" "$ABCDETEMPDIR/track$1.uncommented.$OGGOUTPUTCONTAINER"
852 # http://www.xiph.org/ogg/vorbis/doc/v-comment.html
854 echo ARTIST
="$TRACKARTIST"
856 echo TITLE
="$TRACKNAME"
857 if [ -n "$CDYEAR" ]; then
860 if [ -n "$CDGENRE" ]; then
861 echo GENRE
="$CDGENRE"
863 echo TRACKNUMBER
=${TRACKNUM:-$1}
864 if [ -n "$DISCNUMBER" ]; then
865 echo DISCNUMBER
="$DISCNUMBER"
867 echo CDDB
=$CDDBDISCID
868 if [ "$(eval echo ${COMMENT})" != "" ]; then
869 case "$COMMENTOUTPUT" in
870 *=*) echo "$COMMENTOUTPUT";;
871 *) echo COMMENT
="$COMMENTOUTPUT";;
874 ) | run_command tagtrack-
$OUTPUT-$1 nice
$ENCNICE \
875 $VORBISCOMMENT $VORBISCOMMENTOPTS -w \
876 "$ABCDETEMPDIR/track$1.uncommented.$OGGOUTPUTCONTAINER" "$ABCDETEMPDIR/track$1.$OGGOUTPUTCONTAINER"
877 # Doublecheck that the commented file was created
878 # successfully before wiping the original
879 if [ -f "$ABCDETEMPDIR/track$1.$OGGOUTPUTCONTAINER" ]; then
880 rm -f "$ABCDETEMPDIR/track$1.uncommented.$OGGOUTPUTCONTAINER"
882 mv "$ABCDETEMPDIR/track$1.uncommented.$OGGOUTPUTCONTAINER" "$ABCDETEMPDIR/track$1.$OGGOUTPUTCONTAINER"
889 echo ARTIST
="$TRACKARTIST"
891 echo TITLE
="$TRACKNAME"
892 if [ -n "$CDYEAR" ]; then
895 if [ -n "$CDGENRE" ]; then
896 echo GENRE
="$CDGENRE"
898 echo TRACKNUMBER
="${TRACKNUM:-$1}"
899 if [ -n "$DISCNUMBER" ]; then
900 echo DISCNUMBER
="$DISCNUMBER"
902 echo CDDB
="$CDDBDISCID"
903 if [ "$(eval echo ${COMMENT})" != "" ]; then
904 case "$COMMENTOUTPUT" in
905 *=*) echo "$COMMENTOUTPUT";;
906 *) echo COMMENT
="$COMMENTOUTPUT";;
909 ) | run_command tagtrack-
$OUTPUT-$1 nice
$ENCNICE $METAFLAC $METAFLACOPTS ${IMPORTCUESHEET:+--import-cuesheet-from="$ABCDETEMPDIR/$CUEFILE"} --import-tags-from=- "$ABCDETEMPDIR/track$1.$FLACOUTPUTCONTAINER"
912 run_command tagtrack-
$OUTPUT-$1 true
915 run_command tagtrack-
$OUTPUT-$1 true
918 # Use a temp-file of our choice. --overWrite seems to
919 # case core dumps with AtomicParsley 0.9.0
920 ATOMICTEMPFILE
="$ABCDETEMPDIR/track$1.m4a-atomic"
923 if [ "$VARIOUSARTISTS" = "y" ]; then
927 #It has to be command file opts for AtomicParsley
928 run_command tagtrack-
$OUTPUT-$1 nice
$ENCNICE $ATOMICPARSLEY $ABCDETEMPDIR/track
$1.m4a
--artist "$TRACKARTIST" --album "$DALBUM" --title "$TRACKNAME" --tracknum ${TRACKNUM:-$1} --year "$CDYEAR" --genre "$CDGENRE" --compilation $VARIOUSBOOL --comment "$COMMENTOUTPUT" --output $ATOMICTEMPFILE
929 if [ -f $ATOMICTEMPFILE ]; then
930 mv "$ATOMICTEMPFILE" "$ABCDETEMPDIR/track$1.m4a"
934 run_command tagtrack-
$OUTPUT-$1 true
938 if checkerrors
"tagtrack-(.{3,6})-$1"; then :; else
939 run_command tagtrack-
$1 true
946 # OUTPUTTYPE, {FOO}ENCODERSYNTAX, ENCNICE, ENCODER, ENCODEROPTS
949 # The commands here don't go through run_command because they're never
950 # supposed to be silenced
951 echo "Encoding gapless MP3 tracks: $TRACKQUEUE"
952 for OUTPUT
in $
(echo $OUTPUTTYPE |
tr , \
)
956 case "$MP3ENCODERSYNTAX" in
961 for UTRACKNUM
in $TRACKQUEUE
963 TRACKFILES
="$TRACKFILES track$UTRACKNUM.wav"
965 nice
$ENCNICE $MP3ENCODER $MP3ENCODEROPTS --nogap $TRACKFILES
967 if [ "$RETURN" != "0" ]; then
968 echo "nogap-encode: $ENCODER returned code $RETURN" >> errors
970 for UTRACKNUM
in $TRACKQUEUE
972 run_command encodetrack-
$OUTPUT-$UTRACKNUM true
973 #run_command encodetrack-$UTRACKNUM true
982 if checkerrors
"nogap-encode"; then :; else
983 if [ ! "$KEEPWAVS" = "y" ] ; then
984 if [ ! "$KEEPWAVS" = "move" ] ; then
989 # Other encoders fall through to normal encoding as the tracks have not
990 # been entered in the status file.
993 # do_encode [tracknumber] [hostname]
994 # If no hostname is specified, encode locally
996 # TRACKS, TRACKNAME, TRACKARTIST, DISTMP3, DISTMP3OPTS, {FOO}ENCODERSYNTAX, OUTPUTTYPE, ENCODEROPTS, DALBUM, DARTIST, ENCNICE, CDYEAR, CDGENRE, COMMENT
999 if [ "$USEPIPES" = "y" ]; then
1002 TEMPARG
="PIPE_$MP3ENCODERSYNTAX"
1005 TEMPARG
="PIPE_$OGGENCODERSYNTAX"
1008 TEMPARG
="PIPE_$FLACENCODERSYNTAX"
1011 TEMPARG
="PIPE_$SPEEXENCODER"
1014 TEMPARG
="PIPE_$MPPENCODER"
1017 TEMPARG
="PIPE_$MPPENCODER"
1020 IN
="$( eval echo "\$
$TEMPARG" )"
1022 IN
="$ABCDETEMPDIR/track$1.wav"
1025 case "$MP3ENCODERSYNTAX" in
1026 # FIXME # check if mp3enc needs -if for pipes
1027 # FIXME # I have not been able to find a working mp3enc binary
1041 # We need IN to proceed, if we are not using pipes.
1042 if [ -s "$IN" -o X
"$USEPIPES" = "Xy" ] ; then
1043 for TMPOUTPUT
in $
(echo $OUTPUTTYPE |
tr , \
)
1045 case "$TMPOUTPUT" in
1047 OUTPUT
=$OGGOUTPUTCONTAINER
1050 OUTPUT
=$FLACOUTPUTCONTAINER
1056 OUT
="$ABCDETEMPDIR/track$1.$OUTPUT"
1057 if [ "$NOGAP" = "y" ] && checkstatus encodetrack-
$OUTPUT-$1 ; then
1060 if [ X
"$USEPIPES" = "Xy" ]; then
1062 # We need a way to store the creation of the files when using PIPES
1063 RUN_COMMAND_PIPES
="run_command encodetrack-$OUTPUT-$1 true"
1064 # When pipping it does not make sense to have a higher nice for
1065 # reading than for encoding, since it will be hold by the
1066 # encoding process. Setting an effective nice, to calm down a
1067 # bit the reading process.
1068 EFFECTIVE_NICE
=$READNICE
1070 run_command
'' echo "Encoding track $1 of $TRACKS: $TRACKNAME..."
1071 RUN_COMMAND
="run_command encodetrack-$OUTPUT-$1"
1072 EFFECTIVE_NICE
=$ENCNICE
1078 case "$MP3ENCODERSYNTAX" in
1079 lame|toolame|gogo
) $RUN_COMMAND nice
$EFFECTIVE_NICE $MP3ENCODER $MP3ENCODEROPTS "$IN" "$OUT" ;;
1080 bladeenc
) $RUN_COMMAND nice
$EFFECTIVE_NICE $MP3ENCODER $MP3ENCODEROPTS -quit "$IN" ;;
1081 l3enc|xingmp3enc
) $RUN_COMMAND nice
$EFFECTIVE_NICE $MP3ENCODER "$IN" "$OUT" $MP3ENCODEROPTS ;;
1082 # FIXME # Relates to the previous FIXME since it might need the "-if" removed.
1083 mp3enc
) $RUN_COMMAND nice
$EFFECTIVE_NICE $MP3ENCODER -if "$IN" -of "$OUT" $MP3ENCODEROPTS ;;
1087 $RUN_COMMAND nice
$DISTMP3NICE $DISTMP3 $DISTMP3OPTS "$2" "$IN" "$OUT" >/dev
/null
2>&1
1094 case "$OGGENCODERSYNTAX" in
1095 vorbize
) $RUN_COMMAND nice
$EFFECTIVE_NICE $OGGENCODER $OGGENCODEROPTS -w "$OUT" "$IN" ;;
1096 oggenc
) $RUN_COMMAND nice
$EFFECTIVE_NICE $OGGENCODER $OGGENCODEROPTS -o "$OUT" "$IN" ;;
1100 $RUN_COMMAND nice
$DISTMP3NICE $DISTMP3 $DISTMP3OPTS "$2" "$IN" "$OUT" >/dev
/null
2>&1
1107 case "$FLACENCODERSYNTAX" in
1108 flac
) $RUN_COMMAND nice
$EFFECTIVE_NICE $FLACENCODER -f $FLACENCODEROPTS -o "$OUT" "$IN" ;;
1113 vecho
"$DISTMP3 $DISTMP3OPTS $2 $IN $OUT >/dev/null 2>&1"
1114 $RUN_COMMAND nice
$DISTMP3NICE $DISTMP3 $DISTMP3OPTS "$2" "$IN" "$OUT" > /dev
/null
2>&1
1119 if [ "$(eval echo ${COMMENT})" != "" ]; then
1122 *) COMMENT
="COMMENT=$COMMENT" ;;
1124 COMMENT
="--comment \"$COMMENT\""
1126 # Quick hack to avoid tagging Ogg/Speex, since there is no other way to tag than inline tagging
1127 if [ ! "$DOTAG" = "y" ]; then
1128 $RUN_COMMAND nice
$EFFECTIVE_NICE $SPEEXENCODER $SPEEXENCODEROPTS --author "$TRACKARTIST" --title "$TRACKNAME" --comment "$COMMENT" "$IN" "$OUT"
1130 $RUN_COMMAND nice
$EFFECTIVE_NICE $SPEEXENCODER $SPEEXENCODEROPTS "$IN" "$OUT"
1134 # MPP/MP+(Musepack) format (.mpc) is done locally, with inline
1136 # I tried compiling the mppenc from corecodecs.org and got some
1137 # errors, so I have not tried it myself.
1138 ## FIXME ## Needs some cleanup to determine if an empty tag sent
1139 ## FIXME ## to the encoder ends up empty.
1140 $RUN_COMMAND nice
$EFFECTIVE_NICE $MPPENCODER $MPPENCODEROPTS --artist "$TRACKARTIST" --album "$DALBUM" --title "$TRACKNAME" --track "$1" --genre "$CDGENRE" --year "$CDYEAR" --comment "$COMMENT" "$IN" "$OUT"
1143 # Quick hack to avoid tagging Ogg/Speex, since there is no other way to tag than inline tagging
1144 if [ ! "$DOTAG" = "y" ]; then
1145 $RUN_COMMAND nice
$EFFECTIVE_NICE $AACENCODER $AACENCODEROPTS --artist "$TRACKARTIST" --album "$DALBUM" --title "$TRACKNAME" --track "$1" --genre "$CDGENRE" --year "$CDYEAR" --comment "$COMMENT" -o "$OUT" "$IN"
1148 $RUN_COMMAND nice
$ENCNICE $AACENCODER $AACENCODEROPTS -o "$OUT" "$IN"
1152 # In case of wav output we need nothing. Just keep the wavs.
1157 # Only remove .wav if the encoding succeeded
1158 if checkerrors
"encodetrack-(.{3,6})-$1"; then :; else
1159 run_command encodetrack-
$1 true
1160 if [ ! "$KEEPWAVS" = "y" ] ; then
1161 if [ ! "$KEEPWAVS" = "move" ] ; then
1167 run_command
"" echo "HEH! The file we were about to encode disappeared:"
1168 run_command
"" echo ">> $IN"
1169 run_command encodetrack-
$1 false
1173 # do_preprocess [tracknumber]
1175 # TRACKS, TRACKNAME, TRACKARTIST, DISTMP3, DISTMP3OPTS, {FOO}ENCODERSYNTAX, OUTPUTTYPE, ENCODEROPTS, DALBUM, DARTIST, ENCNICE, CDYEAR, CDGENRE, COMMENT
1178 # IN="$ABCDETEMPDIR/track$1.wav"
1179 # # We need IN to proceed.
1180 # if [ -s "$IN" ] ; then
1181 # for OUTPUT in $(echo $OUTPUTTYPE | tr , \ )
1183 # #OUT="$ABCDETEMPDIR/track$1.$OUTPUT"
1184 # run_command '' echo "Pre-processing track $1 of $TRACKS..."
1185 # case "$POSTPROCESSFORMAT" in
1187 # run_command preprocess-$OUTPUT-$1 nice $PRENICE $WAV_PRE $IF $OF ;;
1189 # run_command preprocess-$OUTPUT-$1 nice $PRENICE $MP3_PRE $IF $OF ;;
1191 # run_command preprocess-$OUTPUT-$1 nice $PRENICE $OGG_PRE $IF $OF ;;
1193 # run_command preprocess-$OUTPUT-$1 nice $PRENICE $FLAC_PRE $IF $OF ;;
1195 # run_command preprocess-$OUTPUT-$1 nice $PRENICE $SPX_PRE $IF $OF ;;
1198 # # Only remove .wav if the encoding succeeded
1199 # if checkerrors "preprocess-(.{3,4})-$1"; then
1200 # run_command preprocess-$1 false
1202 # run_command preprocess-$1 true
1205 # if [ "$(checkstatus encode-output)" = "loud" ]; then
1206 # echo "HEH! The file we were about to pre-process disappeared:"
1209 # run_command preprocess-$1 false
1214 # do_postprocess [tracknumber]
1216 # TRACKS, TRACKNAME, TRACKARTIST, DISTMP3, DISTMP3OPTS, {FOO}ENCODERSYNTAX, OUTPUTTYPE, ENCODEROPTS, DALBUM, DARTIST, ENCNICE, CDYEAR, CDGENRE, COMMENT
1219 # for POSTPROCESSFORMAT in $(echo $POSTPROCESSFORMATS | tr , \ )
1221 # IN="$ABCDETEMPDIR/track$1.$POSTPROCESSFORMAT"
1222 # # We need IN to proceed.
1223 # if [ -s "$IN" ] ; then
1224 # #OUT="$ABCDETEMPDIR/track$1.$OUTPUT"
1225 # run_command '' echo "Post-processing track $1 of $TRACKS..."
1226 # case "$POSTPROCESSFORMAT" in
1228 # run_command postprocess-$OUTPUT-$1 nice $POSTNICE $MP3_POST $IF $OF ;;
1230 # run_command postprocess-$OUTPUT-$1 nice $POSTNICE $OGG_POST $IF $OF ;;
1232 # run_command postprocess-$OUTPUT-$1 nice $POSTNICE $FLAC_POST $IF $OF ;;
1234 # run_command postprocess-$OUTPUT-$1 nice $POSTNICE $SPX_POST $IF $OF ;;
1236 # # Only remove .wav if the encoding succeeded
1237 # if checkerrors "postprocess-(.{3,4})-$1"; then
1238 # run_command postprocess-$1 false
1240 # run_command postprocess-$1 true
1243 # if [ "$(checkstatus encode-output)" = "loud" ]; then
1244 # echo "HEH! The file we were about to post-process disappeared:"
1247 # run_command postprocess-$1 false
1262 # MP3GAIN, MP3GAINOPTS, VORBISGAIN, VORBISGAINOPTS, MPPGAIN, MPPGAINOPTS
1266 # The commands here don't go through run_command because they're never supposed to be silenced
1267 echo "Batch analizing gain in tracks: $TRACKQUEUE"
1272 for UTRACKNUM
in $TRACKQUEUE
1274 MP3FILES
="$TRACKFILES track$UTRACKNUM.mp3"
1276 # FIXME # Hard-coded batch option!
1277 $NORMALIZER -b $NORMALIZEROPTS $TRACKFILES
1279 if [ "$RETURN" != "0" ]; then
1280 echo "batch-normalize: $NORMALIZER returned code $RETURN" >> errors
1282 for UTRACKNUM
in $TRACKQUEUE
1284 echo normalizetrack-
$UTRACKNUM >> status
1290 # do_batch_normalize
1292 # NORMALIZER, NORMALIZEROPTS
1293 do_batch_normalize
()
1295 # The commands here don't go through run_command because they're never supposed to be silenced
1296 echo "Batch normalizing tracks: $TRACKQUEUE"
1301 for UTRACKNUM
in $TRACKQUEUE
1303 TRACKFILES
="$TRACKFILES track$UTRACKNUM.wav"
1305 # XXX: Hard-coded batch option!
1306 $NORMALIZER -b $NORMALIZEROPTS $TRACKFILES
1308 if [ "$RETURN" != "0" ]; then
1309 echo "batch-normalize: $NORMALIZER returned code $RETURN" >> errors
1311 for UTRACKNUM
in $TRACKQUEUE
1313 echo normalizetrack-
$UTRACKNUM >> status
1319 # do_normalize [tracknumber]
1321 # TRACKS, TRACKNAME, NORMALIZER, NORMALIZEROPTS
1324 IN
="$ABCDETEMPDIR/track$1.wav"
1325 if [ -e "$IN" ] ; then
1326 run_command
'' echo "Normalizing track $1 of $TRACKS: $TRACKNAME..."
1327 run_command normalizetrack-
$1 $NORMALIZER $NORMALIZEROPTS "$IN"
1329 if [ "$(checkstatus encode-output)" = "loud" ]; then
1330 echo "HEH! The file we were about to normalize disappeared:"
1333 run_command normalizetrack-
$1 false
"File $IN was not found"
1337 # do_move [tracknumber]
1338 # Deduces the outfile from environment variables
1339 # Creates directory if necessary
1341 # TRACKNUM, TRACKNAME, TRACKARTIST, DALBUM, OUTPUTFORMAT, CDGENRE, CDYEAR
1344 for TMPOUTPUT
in $
(echo $OUTPUTTYPE |
tr , \
)
1346 # For now, set OUTPUT as TMPOUTPUT, and then change it once we have
1347 # defined the OUTPUTFILE:
1350 # Create ALBUMFILE, ARTISTFILE, TRACKFILE
1351 # Munge filenames as follows:
1356 # Eat control characters
1357 ALBUMFILE
="$(mungefilename "$DALBUM")"
1358 ARTISTFILE
="$(mungefilename "$TRACKARTIST")"
1359 TRACKFILE
="$(mungefilename "$TRACKNAME")"
1360 GENRE
="$(mungegenre "$GENRE")"
1361 YEAR
=${CDYEAR:-$CDYEAR}
1362 # If we want to start the tracks with a given number, we need to modify
1363 # the TRACKNUM value before evaluation
1365 # Supported variables for OUTPUTFORMAT are GENRE, YEAR, ALBUMFILE,
1366 # ARTISTFILE, TRACKFILE, and TRACKNUM.
1367 if [ "$ONETRACK" = "y" ]; then
1368 if [ "$VARIOUSARTISTS" = "y" ]; then
1369 OUTPUTFILE
="$(eval echo \""$VAONETRACKOUTPUTFORMAT"\")"
1371 OUTPUTFILE
="$(eval echo \""$ONETRACKOUTPUTFORMAT"\")"
1374 if [ "$VARIOUSARTISTS" = "y" ]; then
1375 OUTPUTFILE
="$(eval echo \""$VAOUTPUTFORMAT"\")"
1377 OUTPUTFILE
="$(eval echo \""$OUTPUTFORMAT"\")"
1380 if checkerrors
"tagtrack-$OUTPUT-$1"; then :; else
1381 # Once we know the specific output was successful, we can change
1382 # the OUTPUT to the value containing the container
1385 OUTPUT
=$OGGOUTPUTCONTAINER
1388 OUTPUT
=$FLACOUTPUTCONTAINER
1394 # Check that the directory for OUTPUTFILE exists, if it doesn't, create it
1395 OUTPUTFILEDIR
="$(dirname "$OUTPUTDIR/$OUTPUTFILE")"
1398 if [ "$DOCLEAN" != "y" ] && [ "$FORCE" != "y" ]; then
1399 # FIXME # introduce warnings?
1402 # mkdir -p shouldn't return an error if the directory already exists
1403 mkdir
-p "$OUTPUTFILEDIR"
1404 run_command movetrack-
$1 mv "$ABCDETEMPDIR/track$1.$OUTPUT" "$OUTPUTDIR/$OUTPUTFILE.$OUTPUT"
1405 if checkstatus movetrack-output-
$OUTPUT; then :; else
1406 run_command movetrack-output-
$OUTPUT true
1411 # mkdir -p shouldn't return an error if the directory already exists
1412 mkdir
-p "$OUTPUTFILEDIR"
1413 run_command movetrack-
$1 mv "$ABCDETEMPDIR/track$1.$OUTPUT" "$OUTPUTDIR/$OUTPUTFILE.$OUTPUT"
1414 if checkstatus movetrack-output-
$OUTPUT; then :; else
1415 run_command movetrack-output-
$OUTPUT true
1419 # Lets move the cue file
1420 if CUEFILE
=$
(checkstatus cuefile
) >/dev
/null
; then
1421 if [ -r "$ABCDETEMPDIR/$CUEFILE" ]; then
1422 if checkstatus movecue-
$OUTPUT; then :; else
1423 # Silence the Copying output since it overlaps with encoding processes...
1424 #run_command '' vecho "Copying cue file to its destination directory..."
1425 if checkstatus onetrack
>/dev
/null
; then
1428 if [ "$DOCLEAN" != "y" ] && [ "$FORCE" != "y" ]; then
1429 # We dont have the dir, since it was not created before.
1432 run_command movecue-
$OUTPUT cp "$ABCDETEMPDIR/$CUEFILE" "$OUTPUTDIR/$OUTPUTFILE.cue"
1435 # NOTE: Creating a cue file with the 3-char-extension files is to comply with
1436 # http://brianvictor.tripod.com/mp3cue.htm#details
1437 [a-z0-9
][a-z0-9
][a-z0-9
])
1438 run_command movecue-
$OUTPUT cp "$ABCDETEMPDIR/$CUEFILE" "$OUTPUTDIR/$OUTPUTFILE.cue"
1441 run_command movecue-
$OUTPUT cp "$ABCDETEMPDIR/$CUEFILE" "$OUTPUTDIR/$OUTPUTFILE.$OUTPUT.cue"
1445 run_command movecue-
$OUTPUT cp "$ABCDETEMPDIR/$CUEFILE" "$OUTPUTFILEDIR/$CUEFILE"
1447 echo movecue-
$OUTPUT >> "$ABCDETEMPDIR/status"
1456 # Create the playlist if wanted
1458 # PLAYLISTFORMAT, PLAYLISTDATAPREFIX, VAPLAYLISTFORMAT, VAPLAYLISTDATAPREFIX,
1459 # VARIOUSARTISTS, OUTPUTDIR
1462 for TMPOUTPUT
in $
(echo $OUTPUTTYPE |
tr , \
)
1466 OUTPUT
=$OGGOUTPUTCONTAINER
1469 OUTPUT
=$FLACOUTPUTCONTAINER
1475 # Create a playlist file for the playlist data to go into.
1476 # We used to wipe it out if it existed. Now we request permision if interactive.
1477 for LASTTRACK
in $TRACKQUEUE; do :; done
1478 ALBUMFILE
="$(mungefilename "$DALBUM")"
1479 ARTISTFILE
="$(mungefilename "$DARTIST")"
1480 GENRE
="$(mungegenre "$GENRE")"
1481 YEAR
=${CDYEAR:-$CDYEAR}
1482 if [ "$VARIOUSARTISTS" = "y" ] ; then
1483 PLAYLISTFILE
="$(eval echo "$VAPLAYLISTFORMAT")"
1485 PLAYLISTFILE
="$(eval echo "$PLAYLISTFORMAT")"
1487 FINALPLAYLISTDIR
="$(dirname "$OUTPUTDIR/$PLAYLISTFILE")"
1488 mkdir
-p "$FINALPLAYLISTDIR"
1489 if [ -s "$OUTPUTDIR/$PLAYLISTFILE" ]; then
1490 echo -n "Erase, Append to, or Keep the existing playlist file? [e/a/k] (e): " >&2
1491 if [ "$INTERACTIVE" = "y" ]; then
1492 while [ "$DONE" != "y" ]; do
1494 case $ERASEPLAYLIST in
1495 e|E|a|A|k|K
) DONE
=y
;;
1496 "") ERASEPLAYLIST
=e
; DONE
=y
;;
1504 # Once we erase the playlist, we use append to create the new one.
1505 [ "$ERASEPLAYLIST" = "e" -o "$ERASEPLAYLIST" = "E" ] && rm -f "$OUTPUTDIR/$PLAYLISTFILE" && ERASEPLAYLIST
=a
1507 # The playlist does not exist, so we can safelly use append to create the new list
1510 if [ "$ERASEPLAYLIST" = "a" -o "$ERASEPLAYLIST" = "A" ]; then
1511 touch "$OUTPUTDIR/$PLAYLISTFILE"
1512 for UTRACKNUM
in $TRACKQUEUE
1514 # Shares some code with do_move since the filenames have to match
1515 CDDBTRACKNUM
=$
(expr $UTRACKNUM - 1)
1516 getcddbinfo TRACKNAME
1518 TRACKFILE
="$(mungefilename "$TRACKNAME")"
1519 ARTISTFILE
="$(mungefilename "$TRACKARTIST")"
1520 ALBUMFILE
="$(mungefilename "$DALBUM")"
1521 # If we want to start the tracks with a given number, we need to modify the
1522 # TRACKNUM value before evaluation
1524 if [ "$VARIOUSARTISTS" = "y" ]; then
1525 OUTPUTFILE
="$(eval echo \""$VAOUTPUTFORMAT\"")"
1527 OUTPUTFILE
="$(eval echo \""$OUTPUTFORMAT\"")"
1529 if [ "$VARIOUSARTISTS" = "y" ]; then
1530 if [ "$VAPLAYLISTDATAPREFIX" ] ; then
1531 echo ${VAPLAYLISTDATAPREFIX}$OUTPUTFILE.
$OUTPUT >> "$OUTPUTDIR/$PLAYLISTFILE"
1533 relpath
"$PLAYLISTFILE", "$OUTPUTFILE.$OUTPUT" >> "$OUTPUTDIR/$PLAYLISTFILE"
1536 if [ "$PLAYLISTDATAPREFIX" ]; then
1537 echo ${PLAYLISTDATAPREFIX}$OUTPUTFILE.
$OUTPUT >> "$OUTPUTDIR/$PLAYLISTFILE"
1539 relpath
"$PLAYLISTFILE", "$OUTPUTFILE.$OUTPUT" >> "$OUTPUTDIR/$PLAYLISTFILE"
1544 ## this will convert the playlist to have CRLF line-endings, if specified
1545 ## (some hardware players insist on CRLF endings)
1546 if [ "$DOSPLAYLIST" = "y" ]; then
1547 awk '{substr("\r",""); printf "%s\r\n", $0}' "$OUTPUTDIR/$PLAYLISTFILE" > "$ABCDETEMPDIR/PLAYLISTFILE.tmp"
1548 # mv -f "$ABCDETEMPDIR/PLAYLISTFILE.tmp" "$OUTPUTDIR/$PLAYLISTFILE"
1549 cat "$ABCDETEMPDIR/PLAYLISTFILE.tmp" |
sed 's/\//\\/' > "$OUTPUTDIR/$PLAYLISTFILE"
1551 echo "playlistcomplete" >> "$ABCDETEMPDIR/status"
1556 # This function reads a cuefile on stdin and writes an extended
1557 # cddb query on stdout. Any PREGAP for track 1 is properly
1558 # handled, although cue files embedded in FLAC files do not
1559 # appear to properly store the PREGAP setting. :(
1560 abcde.cue2discid
() {
1565 while [ $val -gt 0 ] ; do
1566 ret
=$
(( $ret + ( $val % 10) ))
1567 val
=$
(( $val / 10 ))
1577 local first second third
1578 first
=$
(expr ${1} + 0 )
1579 second
=$
(expr ${2} + 0 )
1580 third
=$
(expr ${3} + 0 )
1582 echo $
(( ((($first * 60) + $second) * 75) + $third ))
1592 while read line
; do
1595 TRACK
) i
=$
(( i
+ 1 ))
1597 INDEX
) if [ "$2" -eq 1 ] ; then
1599 START
=$
(( $LBA + $PREGAP + $OFFSET ))
1601 X
=$
(cddb_sum $
(( $START / 75 )) )
1605 PREGAP
) PREGAP
=$
(msf2lba
$2)
1609 LEADOUT
=$
(( $4 / 588 ))
1612 LEADIN
=$
(( $3 / 588 ))
1621 LEADOUT
=$
(( $LEADOUT + $LEADIN ))
1623 LENGTH
=$
(( $LEADOUT/75 - $TRACK1/75 ))
1624 DISCID
=$
(( ( $N % 255 ) * 2**24 |
$LENGTH * 2**8 |
$TRACKS ))
1625 printf "%08x %i" $DISCID $TRACKS
1628 while [ $j -le $TRACKS ] ; do
1629 eval echo -n "\" \$TRACK$j\""
1632 echo " $(( $LEADOUT / 75 ))"
1636 # abcde.mkcue [--wholedisk]
1637 # This creates a cuefile directly from the extended discid information
1638 # The --wholedisk option controls whether we're ripping data from the
1639 # start of track one or from the start of the disk (usually, but not
1640 # always the same thing!)
1642 # Track one leadin/pregap (if any) handeling:
1643 # --wholedisk specified:
1646 # INDEX 01 <pregap value>
1647 # Remaining track index values unchanged from disc TOC
1649 # --wholedisk not specified
1651 # PREGAP <pregap value>
1653 # Remaining track index values offset by <pregap value>
1660 printf "$1%02i:%02i:%02i\n" $
(($2/4500)) $
((($2/75)%60)) $
(($2%75))
1663 local MODE DISCID TRACKS
1667 if [ "$1" = --wholedisc ] ; then
1673 vecho
"One track is $ONETRACK"
1674 TRACKFILE
="$(mungefilename "$TRACKNAME")"
1675 ARTISTFILE
="$(mungefilename "$TRACKARTIST")"
1676 ALBUMFILE
="$(mungefilename "$DALBUM")"
1677 if [ "$ONETRACK" = "y" ]; then
1678 if [ "$VARIOUSARTISTS" = "y" ]; then
1679 CUEWAVFILE
="$(eval echo \""$VAONETRACKOUTPUTFORMAT"\" | sed -e 's@^.*/@@').$OUTPUT"
1681 CUEWAVFILE
="$(eval echo \""$ONETRACKOUTPUTFORMAT"\" | sed -e 's@^.*/@@').$OUTPUT"
1683 vecho
"Cue wav file is $CUEWAVFILE"
1685 CUEWAVFILE
="dummy.wav"
1694 echo REM DISCID
$DISCID
1695 echo FILE
\""$CUEWAVEFILE"\" WAVE
1697 if [ $1 -ne 150 ] && [ $MODE = "PREGAP" ] ; then
1704 while [ $i -le "$TRACKS" ] ; do
1705 LBA
=$
(( $1 - $OFFSET ))
1706 printf " TRACK %02i AUDIO\n" $i
1707 if [ $i -eq 1 -a $1 -ne 150 ] ; then
1708 if [ $MODE = PREGAP
] ; then
1709 echomsf
" PREGAP " $
(($OFFSET-150))
1711 echo " INDEX 00 00:00:00"
1714 echomsf
" INDEX 01 " $LBA
1721 # This essentially the start of things
1724 # Query the CD to get the track info, unless the user specified -C
1725 # or we are using some actions which do not need the CDDB data at all
1726 #if [ ! X"$EXPACTIONS" = "X" ]; then
1728 #elif [ -z "$DISCID" ]; then
1729 if [ -z "$DISCID" ]; then
1730 vecho
-n "Getting CD track info... "
1731 # In OSX, unmount the disc before a query
1732 if [ "$OSFLAVOUR" = "OSX" ]; then
1733 disktool
-u ${CDROM#/dev/}
1735 case "$CDROMREADERSYNTAX" in
1737 if $METAFLAC $METAFLACOPTS --export-cuesheet-to=- "$CDROM" > /dev
/null
2>&1 ; then
1738 case "$CUE2DISCID" in
1739 # FIXME # right now we have 2 cue2discid internal
1740 # implementations: builtin and abcde.cue2discid. Test
1741 # both of them and decide which one we want to use.
1743 #vecho "Using builtin cue2discid implementation..."
1744 CUESHEET
="$(metaflac $METAFLACOPTS --export-cuesheet-to=- "$CDROM")"
1746 #TRACKS=$(echo $CUESHEET | egrep "TRACK \+[[:digit:]]\+ \+AUDIO" |wc -l)
1748 OFFSETTIMES
=( $
(echo "$CUESHEET" |
sed -n -e's/\ *INDEX 01\ \+//p' ) )
1749 TRACKS
=${#OFFSETTIMES[@]}
1751 #echo "processing offsetimes ${OFFSETTIMES[@]}"
1752 for OFFSETTIME
in ${OFFSETTIMES[@]}; do
1753 OFFSETS
="$OFFSETS $(( 10#${OFFSETTIME:0:2} * 4500 + 10#${OFFSETTIME:3:2} * 75 + 10#${OFFSETTIME:6:2} ))"
1754 #OFFSETS[${#OFFSETS[*]}]=$(( 10#${OFFSETTIME:0:2} * 4500 + 10#${OFFSETTIME:3:2} * 75 + 10#${OFFSETTIME:6:2} ))
1757 LEADOUT
=$
(( $
(echo "$CUESHEET" |
grep lead-out | get_last
) * 75 / 44100 ))
1758 LEADIN
=$
(( $
(echo "$CUESHEET" |
grep lead-in | get_last
) * 75 / 44100 ))
1762 #vecho "Using external python cue2discid implementation..."
1763 TRACKINFO
=$
($METAFLAC $METAFLACOPTS --export-cuesheet-to=- "$CDROM" |
$CUE2DISCID)
1767 log error
"the input flac file does not contain a cuesheet."
1772 # CDPARANOIAOUTPUT="$( $CDROMREADER -$CDPARANOIACDROMBUS "$CDROM" -Q --verbose 2>&1 )"
1774 # if [ ! "$RET" = "0" ];then
1775 # log warning "something went wrong while querying the CD... Maybe a DATA CD?"
1778 # TRACKS="$(echo "$CDPARANOIAOUTPUT" | egrep '^[[:space:]]+[[:digit:]]' | tail -n 1 | get_first | tr -d "." | tr '\n' ' ')"
1779 # CDPARANOIAAUDIOTRACKS="$TRACKS"
1781 # LEADOUT="$(echo "$CDPARANOIAOUTPUT" | egrep -o '^TOTAL[[:space:]]+([[:digit:]]+)' | get_last)"
1782 # OFFSETS="$(echo "$CDPARANOIAOUTPUT" | sed -n -e's/^ .* \([0-9]\+\) \[.*/\1/p')"
1786 case "$CDDBMETHOD" in
1787 cddb
) TRACKINFO
=$
($CDDISCID "$CDROM") ;;
1788 musicbrainz
) TRACKINFO
=$
($MUSICBRAINZ --command id
--device "$CDROM") ;;
1792 # Make sure there's a CD in there by checking cd-discid's return code
1793 if [ ! "$?" = "0" ]; then
1794 if [ "$CDROMREADERSYNTAX" = "flac" ] ; then
1795 log error
"cuesheet information from the flac file could not be read."
1796 log error
"Perhaps the flac file does not contain a cuesheet?."
1799 log error
"CD could not be read. Perhaps there's no CD in the drive?"
1803 # In OSX, remount the disc again
1804 if [ "$OSFLAVOUR" = "OSX" ]; then
1805 disktool
-m ${CDROM#/dev/}
1808 DISCID
=$
(echo $TRACKINFO | cut
-f1 -d' ')
1810 TRACKINFO
=$
(cat "$WAVOUTPUTDIR/abcde.$DISCID/discid")
1813 # Get a full enumeration of tracks, sort it, and put it in the TRACKQUEUE.
1814 # This needs to be done now because a section of the resuming code will need
1817 # get the number of digits to pad TRACKNUM with - we'll use this later
1818 # a CD can only hold 99 tracks, but since we support a feature for starting
1819 # numbering the tracks from a given number, we might need to set it as a
1820 # variable for the user to define... or obtain it somehow.
1821 if [ "$PADTRACKS" = "y" ] ; then
1825 ABCDETEMPDIR
="$WAVOUTPUTDIR/abcde.$(echo $TRACKINFO | cut -f1 -d' ')"
1826 if [ -z "$TRACKQUEUE" ]; then
1827 if [ ! "$STRIPDATATRACKS" = "n" ]; then
1828 case "$CDROMREADERSYNTAX" in
1830 if [ "$WEHAVEACD" = "y" ]; then
1831 vecho
"Querying the CD for audio tracks..."
1832 CDPARANOIAOUTPUT
="$( $CDROMREADER -$CDPARANOIACDROMBUS "$CDROM" -Q --verbose 2>&1 )"
1834 if [ ! "$RET" = "0" ];then
1835 log warning
"something went wrong while querying the CD... Maybe a DATA CD?"
1837 TRACKS
="$(echo "$CDPARANOIAOUTPUT" | egrep '^[[:space:]]+[[:digit:]]' | tail -n 1 | get_first | tr -d ".
" | tr '\n' ' ')"
1838 CDPARANOIAAUDIOTRACKS
="$TRACKS"
1840 # Previous versions of abcde would store the tracks on a file, instead of the status record.
1841 if [ -f "$ABCDETEMPDIR/cdparanoia-audio-tracks" ]; then
1842 echo cdparanoia-audio-tracks
=$
( cat "$ABCDETEMPDIR/cdparanoia-audio-tracks" ) >> "$ABCDETEMPDIR/status"
1843 rm -f "$ABCDETEMPDIR/cdparanoia-audio-tracks"
1845 if [ -f "$ABCDETEMPDIR/status" ] && TRACKS
=$
(checkstatus cdparanoia-audio-tracks
); then :; else
1846 TRACKS
=$
(echo $TRACKINFO | cut
-f2 -d' ')
1850 *) TRACKS
=$
(echo $TRACKINFO | cut
-f2 -d' ') ;;
1853 TRACKS
=$
(echo $TRACKINFO | cut
-f2 -d' ')
1855 if echo "$TRACKS" |
grep "[[:digit:]]" > /dev
/null
2>&1 ;then :;else
1856 log info
"The disc does not contain any tracks. Giving up..."
1859 echo -n "Grabbing entire CD - tracks: "
1860 if [ ! "$PADTRACKS" = "y" ] ; then
1861 TRACKNUMPADDING
=$
(echo -n $TRACKS |
wc -c |
tr -d ' ')
1863 TRACKS
=$
(printf "%0.${TRACKNUMPADDING}d" $TRACKS)
1865 while [ "$X" -ne "$TRACKS" ]
1867 X
=$
(printf "%0.${TRACKNUMPADDING}d" $
(expr $X + 1))
1868 TRACKQUEUE
=$
(echo $TRACKQUEUE $X)
1872 TRACKS
=$
(echo $TRACKINFO | cut
-f2 -d' ')
1873 # User-supplied track queue.
1874 # Weed out non-numbers, whitespace, then sort and weed out duplicates
1875 TRACKQUEUE
=$
(echo $TRACKQUEUE |
sed 's-[^0-9 ]--g' |
tr ' ' '\n' |
grep -v ^$ |
sort -n |
uniq |
tr '\n' ' ' |
sed 's- $--g')
1876 # Once cleaned, obtain the highest value in the trackqueue for number padding
1877 for LASTTRACK
in $TRACKQUEUE; do :; done
1878 if [ ! "$PADTRACKS" = "y" ] ; then
1879 TRACKNUMPADDING
=$
(echo -n $LASTTRACK |
wc -c |
tr -d ' ')
1881 # Now we normalize the trackqueue
1882 for TRACK
in $TRACKQUEUE ; do
1883 TRACKNUM
=$
(printf %0.
${TRACKNUMPADDING}d $
(expr ${TRACK} + 0 ))
1884 PADTRACKQUEUE
=$
(echo $PADTRACKQUEUE $TRACKNUM)
1886 TRACKQUEUE
=$PADTRACKQUEUE
1887 echo Grabbing tracks
: "$TRACKQUEUE"
1890 QUEUEDTRACKS
=$
(echo $TRACKQUEUE |
wc -w |
tr -d ' ')
1892 # We have the discid, create a temp directory after it to store all the temp
1895 if [ -e "$ABCDETEMPDIR" ]; then
1896 echo -n "abcde: attempting to resume from $ABCDETEMPDIR"
1897 # It already exists, see if it's a directory
1898 if [ ! -d "$ABCDETEMPDIR" ]; then
1899 # This is a file/socket/fifo/device/etc, not a directory
1902 echo "abcde: file $ABCDETEMPDIR already exists and does not belong to abcde." >&2
1903 echo "Please investigate, remove it, and rerun abcde." >&2
1907 # It's a directory, let's see if it's writable by us
1908 if [ ! -r "$ABCDETEMPDIR" ] ||
[ ! -w "$ABCDETEMPDIR" ] ||
[ ! -x "$ABCDETEMPDIR" ]; then
1909 # Nope, complain and exit
1911 echo "abcde: directory $ABCDETEMPDIR already exists and is not writeable." >&2
1912 echo "Please investigate, remove it, and rerun abcde." >&2
1916 # See if it's populated
1917 if [ ! -f "$ABCDETEMPDIR/discid" ]; then
1918 # Wipe and start fresh
1919 echo "abcde: $ABCDETEMPDIR/discid not found. Abcde must remove and recreate" >&2
1920 echo -n "this directory to continue. Continue? [y/n] (n)" >&2
1921 if [ "$INTERACTIVE" = "y" ]; then
1927 if [ "$ANSWER" != "y" ]; then
1930 rm -rf "$ABCDETEMPDIR" ||
exit 1
1931 mkdir
-p "$ABCDETEMPDIR"
1932 if [ "$?" -gt "0" ]; then
1933 # Directory already exists or could not be created
1934 echo "abcde: Temp directory $ABCDETEMPDIR could not be created." >&2
1938 # Everything is fine. Check for ^encodetracklocation-
1939 # and encode-output entries in the status file and
1940 # remove them. These are not relevant across sessions.
1941 if [ -f "$ABCDETEMPDIR/status" ]; then
1942 mv "$ABCDETEMPDIR/status" "$ABCDETEMPDIR/status.old"
1943 grep -v ^encodetracklocation-
< "$ABCDETEMPDIR/status.old" \
1944 |
grep -v ^encode-output
> "$ABCDETEMPDIR/status"
1946 # Remove old error messages
1947 if [ -f "$ABCDETEMPDIR/errors" ]; then
1948 rm -f "$ABCDETEMPDIR/errors"
1952 # We are starting from scratch
1953 mkdir
-p "$ABCDETEMPDIR"
1954 if [ "$?" -gt "0" ]; then
1955 # Directory already exists or could not be created
1956 echo "abcde: Temp directory $ABCDETEMPDIR could not be created." >&2
1959 cat /dev
/null
> "$ABCDETEMPDIR/status"
1960 # Store the abcde version in the status file.
1961 echo "abcde-version=$VERSION" >> "$ABCDETEMPDIR/status"
1963 if [ X
"$DOCUE" = "Xy" -a X
"$WEHAVEACD" = "Xy" ]; then
1964 if checkstatus cuefile
> /dev
/null
2>&1 ; then :; else
1965 CUEFILE
=cue-$
(echo "$TRACKINFO" | cut
-f1 -d' ').txt
1966 vecho
"Creating cue file..."
1967 case $CDROMREADERSYNTAX in
1969 if $METAFLAC --export-cuesheet-to=- "$CDROM" > "$ABCDETEMPDIR/$CUEFILE"; then
1970 echo cuefile
=$CUEFILE >> "$ABCDETEMPDIR/status"
1972 log warning
"the input flac file does not contain a cuesheet."
1976 if $CUEREADER $CUEREADEROPTS > "$ABCDETEMPDIR/$CUEFILE"; then
1977 echo cuefile
=$CUEFILE >> "$ABCDETEMPDIR/status"
1979 log warning
"reading the CUE sheet is still considered experimental"
1980 log warning
"and there was a problem with the CD reading. abcde will continue,"
1981 log warning
"but consider reporting the problem to the abcde author"
1987 # If we got the CDPARANOIA status and it is not recorded, save it now
1988 if [ -n "$CDPARANOIAAUDIOTRACKS" ]; then
1989 if checkstatus cdparanoia-audio-tracks
> /dev
/null
2>&1; then :; else
1990 echo cdparanoia-audio-tracks
=$CDPARANOIAAUDIOTRACKS >> "$ABCDETEMPDIR/status"
1994 # Create the discid file
1995 echo "$TRACKINFO" > "$ABCDETEMPDIR/discid"
1996 if checkstatus cddbmethod
> /dev
/null
2>&1 ; then :; else
1997 echo "cddbmethod=$CDDBMETHOD" >> "$ABCDETEMPDIR/status"
2002 # Create a proper CUE file based on the CUE file we created before.
2005 if CUEFILE_IN
="$ABCDETEMPDIR"/$
(checkstatus cuefile
); then
2006 CUEFILE_OUT
=$CUEFILE_IN.out
2007 ### FIXME ### checkstatus cddb
2008 if [ -e "$CDDBDATA" ]; then
2009 vecho
"Adding metadata to the cue file..."
2010 # FIXME It doesn't preserve spaces! Why?
2011 # FIXME parse $track into PERFORMER and TITLE - abcde already has code for this?
2013 echo "PERFORMER \"$DARTIST\"" >> "$CUEFILE_OUT"
2014 echo "TITLE \"$DALBUM\"" >> "$CUEFILE_OUT"
2015 # Set IFS to <newline> to prevent read from swallowing spaces and tabs
2019 cat "$CUEFILE_IN" |
while read line
2021 if echo "$line" |
grep "INDEX 01" > /dev
/null
2>&1 ; then
2022 # FIXME # Possible patch: remove the line above, uncomment the 2 lines below.
2023 # echo "$line" >> "$CUEFILE_OUT"
2024 # if echo "$line" | grep "^[[:space:]]*TRACK" > /dev/null 2>&1 ; then
2025 eval track
="\$TRACK$n"
2027 echo " TITLE \"$track\"" >> "$CUEFILE_OUT"
2028 # When making a single-track rip, put the
2029 # actual file name into the file declaration
2030 # in the cue file so that it is usable by
2031 # music players and the like
2032 elif [ "$ONETRACK" = "y" ] &&
2033 echo "$line" |
grep '^FILE "dummy.wav" WAVE' > /dev
/null
2>&1 ; then
2035 TRACKFILE
="$(mungefilename "$TRACKNAME")"
2036 ARTISTFILE
="$(mungefilename "$TRACKARTIST")"
2037 ALBUMFILE
="$(mungefilename "$DALBUM")"
2039 if [ "$VARIOUSARTISTS" = "y" ]; then
2040 OUTPUTFILE
="$(eval echo \""$VAONETRACKOUTPUTFORMAT"\" | sed -e 's@^.*/@@').$OUTPUT"
2042 OUTPUTFILE
="$(eval echo \""$ONETRACKOUTPUTFORMAT"\" | sed -e 's@^.*/@@').$OUTPUT"
2045 echo "FILE \"$OUTPUTFILE\" WAVE" >> "$CUEFILE_OUT"
2048 # FIXME # If the lines above are uncommented, remove the line below.
2049 echo "$line" >> "$CUEFILE_OUT"
2052 mv "$CUEFILE_OUT" "$CUEFILE_IN"
2053 echo "cleancuefile" >> "$ABCDETEMPDIR/status"
2059 # Parses a CDDB file and outputs the title and the track names.
2060 # Variables: CDDBFILE
2064 # List out disc title/author and contents
2065 if [ "$ONETRACK" = "y" ]; then
2066 vecho
"ONETRACK mode selected: displaying only the title of the CD..."
2068 echo "---- $(grep DTITLE "${CDDBPARSEFILE}" | cut '-d=' -f2- | tr -d \\r\\n ) ----"
2069 if [ X
"$SHOWCDDBYEAR" = "Xy" ]; then
2070 PARSEDYEAR
=$
(grep DYEAR
"${CDDBPARSEFILE}" | cut
'-d=' -f2-)
2071 if [ ! X
"$PARSEDYEAR" = "X" ]; then
2072 echo "Year: $PARSEDYEAR"
2075 if [ X
"$SHOWCDDBGENRE" = "Xy" ]; then
2076 PARSEDGENRE
=$
(grep DGENRE
"${CDDBPARSEFILE}" | cut
'-d=' -f2-)
2077 if [ ! X
"$PARSEDGENRE" = "X" ]; then
2078 echo "Genre: $PARSEDGENRE"
2081 if [ ! "$ONETRACK" = "y" ]; then
2082 for TRACK
in $
(f_seq_row
1 $TRACKS)
2084 echo $TRACK: "$(grep ^TTITLE$(expr $TRACK - 1)= "${CDDBPARSEFILE}" | cut -f2- -d= | tr -d \\r\\n)"
2090 # Check for a local CDDB file, and report success
2093 if checkstatus cddb-readcomplete
&& checkstatus cddb-choice
>/dev
/null
; then :; else
2095 CDDBLOCALSTATUS
="notfound"
2096 CDDBDISCID
=$
(echo $TRACKINFO | cut
-d' ' -f1)
2099 if [ "$CDDBLOCALRECURSIVE" = "y" ]; then
2100 CDDBLOCALRESULTS
="$(find ${CDDBLOCALDIR} -name "${CDDBDISCID}" -type f 2> /dev/null)"
2101 if [ ! "${CDDBLOCALRESULTS}" = "" ]; then
2102 if (( $
(echo "${CDDBLOCALRESULTS}" |
wc -l) == 1 )); then
2103 CDDBLOCALFILE
="${CDDBLOCALRESULTS}"
2104 CDDBLOCALMATCH
=single
2105 elif (( $
(echo "${CDDBLOCALRESULTS}" |
wc -l) > 1 )); then
2106 CDDBLOCALMATCH
=multiple
2111 elif [ "$CDDBLOCALMATCH" = "none" ] && [ -r "${CDDBLOCALDIR}/${CDDBDISCID}" ]; then
2112 CDDBLOCALFILE
="${CDDBLOCALDIR}/${CDDBDISCID}"
2113 CDDBLOCALMATCH
=single
2118 # If the user has selected to check a local CDDB repo, we proceed with it
2119 case $CDDBLOCALMATCH in
2121 echo "Processing multiple matching CDDB entries..." > "$ABCDETEMPDIR/cddblocalchoices"
2123 echo "$CDDBLOCALRESULTS" |
while read RESULT
; do
2125 # List out disc title/author and contents
2126 CDDBLOCALREAD
="$ABCDETEMPDIR/cddblocalread.$X"
2127 cat "$RESULT" > "${CDDBLOCALREAD}"
2130 do_cddbparse
"${CDDBLOCALREAD}"
2132 ##FIXME## QUICK HACK !!!!
2133 if [ ! "$INTERACTIVE" = "y" ]; then break ; fi
2134 } >> "$ABCDETEMPDIR/cddblocalchoices"
2136 if [ $
(cat "$ABCDETEMPDIR/cddblocalchoices" |
wc -l) -ge 24 ] && [ "$INTERACTIVE" = "y" ]; then
2137 page
"$ABCDETEMPDIR/cddblocalchoices"
2139 # It's all going to fit in one page, cat it
2140 cat "$ABCDETEMPDIR/cddblocalchoices" >&2
2142 CDDBLOCALCHOICES
=$
( echo "$CDDBLOCALRESULTS" |
wc -l )
2143 # Setting the choice to an impossible integer to avoid errors in the numeric comparisons
2144 CDDBLOCALCHOICENUM
=-1
2145 if [ "$INTERACTIVE" = "y" ]; then
2146 while [ $CDDBLOCALCHOICENUM -lt 0 ] ||
[ $CDDBLOCALCHOICENUM -gt $CDDBLOCALCHOICES ]; do
2147 echo -n "Locally cached CDDB entries found. Which one would you like to use (0 for none)? [0-$CDDBLOCALCHOICES]: " >&2
2148 read CDDBLOCALCHOICE
2149 [ x
"$CDDBLOCALCHOICE" = "x" ] && CDDBLOCALCHOICE
="1"
2150 # FIXME # Introduce diff's
2151 if echo $CDDBLOCALCHOICE |
egrep "[[:space:]]*[[:digit:]]+,[[:digit:]]+[[:space:]]*" > /dev
/null
2>&1 ; then
2152 diffentries cddblocalread
"$CDDBLOCALCHOICES" "$CDDBLOCALCHOICE"
2153 elif echo $CDDBLOCALCHOICE |
egrep "[[:space:]]*[[:digit:]]+[[:space:]]*" > /dev
/null
2>&1 ; then
2154 # Make sure we get a valid choice
2155 CDDBLOCALCHOICENUM
=$
(echo $CDDBLOCALCHOICE |
xargs printf %d
2>/dev
/null
)
2156 if [ $CDDBLOCALCHOICENUM -lt 0 ] ||
[ $CDDBLOCALCHOICENUM -gt $CDDBLOCALCHOICES ]; then
2157 echo "Invalid selection. Please choose a number between 0 and $CDDBLOCALCHOICES." >&2
2163 #echo "Selected ..."
2165 CDDBLOCALCHOICENUM
=1
2167 if [ ! "$CDDBLOCALCHOICENUM" = "0" ]; then
2168 #echo "Using local copy of CDDB data"
2169 echo "# DO NOT ERASE THIS LINE! Added by abcde to imitate cddb output" > "$ABCDETEMPDIR/cddbread.1"
2170 cat "$ABCDETEMPDIR/cddblocalread.$CDDBLOCALCHOICENUM" >> "$ABCDETEMPDIR/cddbread.1"
2171 echo 999 > "$ABCDETEMPDIR/cddbquery" # Assuming 999 isn't used by CDDB
2172 echo cddb-readcomplete
>> "$ABCDETEMPDIR/status"
2173 do_cddbparse
"$ABCDETEMPDIR/cddbread.1" > "$ABCDETEMPDIR/cddbchoices"
2174 echo cddb-choice
=1 >> "$ABCDETEMPDIR/status"
2175 CDDBLOCALSTATUS
="found"
2177 #echo "Not using local copy of CDDB data"
2178 CDDBLOCALSTATUS
="notfound"
2182 # List out disc title/author and contents
2183 do_cddbparse
"${CDDBLOCALFILE}"
2184 #if [ "$CDROMREADERSYNTAX" = "flac" ] ; then
2185 # echo -n "Embedded cuesheet entry found, use it? [y/n] (y): " >&2
2187 echo -n "Locally cached CDDB entry found, use it? [y/n] (y): " >&2
2189 if [ "$INTERACTIVE" = "y" ]; then
2191 while [ "$USELOCALRESP" != "y" ] && [ "$USELOCALRESP" != "n" ] && [ "$USELOCALRESP" != "" ] ; do
2192 echo -n 'Invalid selection. Please answer "y" or "n": ' >&2
2195 [ x
"$USELOCALRESP" = "x" ] && USELOCALRESP
="y"
2199 if [ "$USELOCALRESP" = "y" ]; then
2200 #echo "Using local copy of CDDB data"
2201 echo "# DO NOT ERASE THIS LINE! Added by abcde to imitate cddb output" > "$ABCDETEMPDIR/cddbread.1"
2202 cat "${CDDBLOCALFILE}" >> "$ABCDETEMPDIR/cddbread.1"
2203 echo 999 > "$ABCDETEMPDIR/cddbquery" # Assuming 999 isn't used by CDDB
2204 echo cddb-readcomplete
>> "$ABCDETEMPDIR/status"
2205 do_cddbparse
"${CDDBLOCALFILE}" > "$ABCDETEMPDIR/cddbchoices"
2206 echo cddb-choice
=1 >> "$ABCDETEMPDIR/status"
2207 CDDBLOCALSTATUS
="single"
2209 #echo "Not using local copy of CDDB data"
2210 CDDBLOCALSTATUS
="notfound"
2214 CDDBLOCALSTATUS
="notfound"
2221 # Work with the musicbrainz WS API, then transform the results here so
2222 # they look (very) like the results from CDDB. Maybe not the best way
2223 # to go, but it Works For Me (TM)
2227 if checkstatus musicbrainz-readcomplete
; then :; else
2228 vecho
"Obtaining Musicbrainz results..."
2229 # If MB is to be used, interpret the query results and read all
2230 # the available entries.
2231 rm -f "$ABCDETEMPDIR/cddbchoices"
2232 CDDBCHOICES
=1 # Overridden by multiple matches
2233 ${MUSICBRAINZ} --command data
--device "$CDROM" --workdir $ABCDETEMPDIR
2235 # The helper script will write disc matches out to
2236 # cddbread.*. Count how many we have
2237 NUM_RESPONSES
=$
(echo ${ABCDETEMPDIR}/cddbread.
* |
wc -w)
2238 if [ "$NUM_RESPONSES" -eq 1 ] ; then
2240 echo -n "Retrieved 1 Musicbrainz match..." >> "$ABCDETEMPDIR/cddbchoices"
2241 echo "done." >> "$ABCDETEMPDIR/cddbchoices"
2242 echo cddb-read-1-complete
>> "$ABCDETEMPDIR/status"
2243 echo cddb-choice
=1 >> "$ABCDETEMPDIR/status"
2244 ATITLE
=$
(grep -e '^DTITLE=' ${ABCDETEMPDIR}/cddbread
.1 | cut
-c8- )
2245 echo "200 none ${ATITLE}" >> "$ABCDETEMPDIR/cddbquery"
2246 # List out disc title/author and contents
2247 echo ---- ${ATITLE} ---- >> "$ABCDETEMPDIR/cddbchoices"
2248 for TRACK
in $
(f_seq_row
1 $TRACKS)
2250 echo $TRACK: "$(grep ^TTITLE$(expr $TRACK - 1)= "$ABCDETEMPDIR/cddbread
.1" | cut -f2- -d= | tr -d \\r\\n)" >> "$ABCDETEMPDIR/cddbchoices"
2252 echo >> "$ABCDETEMPDIR/cddbchoices"
2253 elif [ "$NUM_RESPONSES" -eq 0 ] ; then
2254 # No matches. Use the normal cddb template for the user to
2256 echo "No Musicbrainz match." >> "$ABCDETEMPDIR/cddbchoices"
2257 $CDDBTOOL template $
(cat "$ABCDETEMPDIR/discid") > "$ABCDETEMPDIR/cddbread.0"
2258 # List out disc title/author and contents of template
2259 echo ---- Unknown Artist
/ Unknown Album
---- >> "$ABCDETEMPDIR/cddbchoices"
2261 for TRACK
in $
(f_seq_row
1 $TRACKS)
2263 echo $TRACK: "$(grep ^TTITLE$(expr $TRACK - 1)= "$ABCDETEMPDIR/cddbread
.0" | cut -f2- -d= | tr -d \\r\\n)" >> "$ABCDETEMPDIR/cddbchoices"
2265 echo >> "$ABCDETEMPDIR/cddbchoices"
2266 echo cddb-read-0-complete
>> "$ABCDETEMPDIR/status"
2267 echo cddb-choice
=0 >> "$ABCDETEMPDIR/status"
2268 echo 503 > "$ABCDETEMPDIR/cddbquery"
2270 echo "210 Found exact matches, list follows (until terminating .)" > "$ABCDETEMPDIR/cddbquery"
2271 echo "Multiple Musicbrainz matches:" >> "$ABCDETEMPDIR/cddbchoices"
2272 for file in $ABCDETEMPDIR/cddbread.
*
2274 X
=$
(echo $file |
sed 's/^.*cddbread\.//g')
2275 echo cddb-read-
$X-complete >> "$ABCDETEMPDIR/status"
2276 ATITLE
=$
(grep -e '^DTITLE=' ${ABCDETEMPDIR}/cddbread.
$X | cut
-c8- )
2277 echo "none ${ATITLE}" >> "$ABCDETEMPDIR/cddbquery"
2278 # List out disc title/author and contents
2279 echo "#$X: ---- ${ATITLE} ----" >> "$ABCDETEMPDIR/cddbchoices"
2280 for TRACK
in $
(f_seq_row
1 $TRACKS)
2282 echo $TRACK: "$(grep ^TTITLE$(expr $TRACK - 1)= "$ABCDETEMPDIR/cddbread.
$X" | cut -f2- -d= | tr -d \\r\\n)" >> "$ABCDETEMPDIR/cddbchoices"
2284 echo >> "$ABCDETEMPDIR/cddbchoices"
2286 echo "." >> "$ABCDETEMPDIR/cddbquery"
2288 echo "musicbrainz-readcomplete" >> "$ABCDETEMPDIR/status"
2295 # Perform CDDB protocol version check if it hasn't already been done
2296 if checkstatus cddb-statcomplete
; then :; else
2297 if [ "$CDDBAVAIL" = "n" ]; then
2299 echo 503 > "$ABCDETEMPDIR/cddbstat"
2302 CDDBUSER
=$
(echo $HELLOINFO | cut
-f1 -d'@')
2303 CDDBHOST
=$
(echo $HELLOINFO | cut
-f2- -d'@')
2304 while test $rc -eq 1 -a $CDDBPROTO -ge 3; do
2305 vecho
"Checking CDDB server status..."
2306 $CDDBTOOL stat
$CDDBURL $CDDBUSER $CDDBHOST $CDDBPROTO > "$ABCDETEMPDIR/cddbstat"
2307 RESPONSECODE
=$
(head -n 1 "$ABCDETEMPDIR/cddbstat" | cut
-f1 -d' ')
2308 case "$RESPONSECODE" in
2309 210) # 210 OK, status information follows (until terminating `.')
2312 501) # 501 Illegal CDDB protocol level: <n>.
2313 CDDBPROTO
=`expr $CDDBPROTO - 1`
2315 *) # Try a cddb query, since freedb2.org doesn't support the stat or ver commands
2316 # FreeDB TESTCD disc-id is used for query
2317 $CDDBTOOL query
$CDDBURL $CDDBPROTO $CDDBUSER $CDDBHOST 03015501 1 296 344 > "$ABCDETEMPDIR/cddbstat"
2318 RESPONSECODE
=$
(head -n 1 "$ABCDETEMPDIR/cddbstat" | cut
-f1 -d' ')
2319 case "$RESPONSECODE" in
2320 2??
) # Server responded, everything seems OK
2327 if test $rc -eq 1; then
2331 echo cddb-statcomplete
>> "$ABCDETEMPDIR/status"
2339 CDDBDISCID
=$
(echo $TRACKINFO | cut
-d' ' -f1)
2340 CDDBLOCALFILE
="${CDDBLOCALDIR}/${CDDBDISCID}"
2342 # Perform CDDB query if it hasn't already been done
2343 if checkstatus cddb-querycomplete
; then :; else
2344 if [ "$CDDBAVAIL" = "n" ]; then
2346 echo 503 > "$ABCDETEMPDIR/cddbquery"
2347 # The default CDDBLOCALSTATUS is "notfound"
2348 # This part will be triggered if the user CDDB repo does not
2349 # contain the entry, or if we are not trying to use the repo.
2351 vecho
"Querying the CDDB server..."
2352 CDDBUSER
=$
(echo $HELLOINFO | cut
-f1 -d'@')
2353 CDDBHOST
=$
(echo $HELLOINFO | cut
-f2- -d'@')
2354 $CDDBTOOL query
$CDDBURL $CDDBPROTO $CDDBUSER $CDDBHOST $TRACKINFO > "$ABCDETEMPDIR/cddbquery"
2360 # no match found in database,
2361 # wget/fetch error, or user requested not to use CDDB
2362 # Make up an error code (503) that abcde
2363 # will recognize in do_cddbread
2364 # and compensate by making a template
2365 echo 503 > "$ABCDETEMPDIR/cddbquery"
2367 *) # strange and unknown error
2368 echo ERRORCODE
=$ERRORCODE
2369 echo "abcde: $CDDBTOOL returned unknown error code"
2373 echo cddb-querycomplete
>> "$ABCDETEMPDIR/status"
2380 # If it's not to be used, generate a template.
2381 # Then, display it (or them) and let the user choose/edit it
2382 if checkstatus cddb-readcomplete
; then :; else
2383 vecho
"Obtaining CDDB results..."
2384 # If CDDB is to be used, interpret the query results and read all
2385 # the available entries.
2386 rm -f "$ABCDETEMPDIR/cddbchoices"
2387 CDDBCHOICES
=1 # Overridden by multiple matches
2388 RESPONSECODE
=$
(head -n 1 "$ABCDETEMPDIR/cddbquery" | cut
-f1 -d' ')
2389 case "$RESPONSECODE" in
2391 # One exact match, retrieve it
2392 # 200 [section] [discid] [artist] / [title]
2393 if checkstatus cddb-read-1-complete
; then :; else
2394 echo -n "Retrieving 1 CDDB match..." >> "$ABCDETEMPDIR/cddbchoices"
2395 $CDDBTOOL read $CDDBURL $CDDBPROTO $CDDBUSER $CDDBHOST $
(cut
-f2,3 -d' ' "$ABCDETEMPDIR/cddbquery") > "$ABCDETEMPDIR/cddbread.1"
2396 echo "done." >> "$ABCDETEMPDIR/cddbchoices"
2397 echo cddb-read-1-complete
>> "$ABCDETEMPDIR/status"
2398 echo cddb-choice
=1 >> "$ABCDETEMPDIR/status"
2400 # List out disc title/author and contents
2401 echo ---- "$(cut '-d ' -f4- "$ABCDETEMPDIR/cddbquery
")" ---- >> "$ABCDETEMPDIR/cddbchoices"
2402 for TRACK
in $
(f_seq_row
1 $TRACKS)
2404 echo $TRACK: "$(grep ^TTITLE$(expr $TRACK - 1)= "$ABCDETEMPDIR/cddbread
.1" | cut -f2- -d= | tr -d \\r\\n)" >> "$ABCDETEMPDIR/cddbchoices"
2406 echo >> "$ABCDETEMPDIR/cddbchoices"
2410 case "$RESPONSECODE" in
2411 202) echo "No CDDB match." >> "$ABCDETEMPDIR/cddbchoices" ;;
2412 403|
409) echo "CDDB entry is corrupt, or the handshake failed." >> "$ABCDETEMPDIR/cddbchoices" ;;
2413 503) echo "CDDB unavailable." >> "$ABCDETEMPDIR/cddbchoices" ;;
2415 $CDDBTOOL template $
(cat "$ABCDETEMPDIR/discid") > "$ABCDETEMPDIR/cddbread.0"
2416 # List out disc title/author and contents of template
2417 echo ---- Unknown Artist
/ Unknown Album
---- >> "$ABCDETEMPDIR/cddbchoices"
2419 for TRACK
in $
(f_seq_row
1 $TRACKS)
2421 echo $TRACK: "$(grep ^TTITLE$(expr $TRACK - 1)= "$ABCDETEMPDIR/cddbread
.0" | cut -f2- -d= | tr -d \\r\\n)" >> "$ABCDETEMPDIR/cddbchoices"
2423 echo >> "$ABCDETEMPDIR/cddbchoices"
2424 echo cddb-read-0-complete
>> "$ABCDETEMPDIR/status"
2425 echo cddb-choice
=0 >> "$ABCDETEMPDIR/status"
2428 # Multiple exact, (possibly multiple) inexact matches
2430 if [ "$RESPONSECODE" = "211" ]; then IN
=in; fi
2431 if [ "$(wc -l < "$ABCDETEMPDIR/cddbquery
" | tr -d ' ')" -eq 3 ]; then
2432 echo "One ${IN}exact match:" >> "$ABCDETEMPDIR/cddbchoices"
2433 tail -n +2 "$ABCDETEMPDIR/cddbquery" |
head -n 1 >> "$ABCDETEMPDIR/cddbchoices"
2434 echo cddb-choice
=1 >> "$ABCDETEMPDIR/status"
2436 echo "Multiple ${IN}exact matches:" >> "$ABCDETEMPDIR/cddbchoices"
2438 vecho
-n "Retrieving multiple matches... "
2439 grep -v ^
[.
]$
"$ABCDETEMPDIR/cddbquery" |
( X
=0
2440 read DISCINFO
# eat top line
2444 if checkstatus cddb-read-
$X-complete; then :; else
2445 $CDDBTOOL read $CDDBURL $CDDBPROTO $CDDBUSER $CDDBHOST $
(echo $DISCINFO | cut
-f1,2 -d' ') > "$ABCDETEMPDIR/cddbread.$X"
2446 echo cddb-read-
$X-complete >> "$ABCDETEMPDIR/status"
2448 # List out disc title/author and contents
2449 echo \
#$X: ---- "$DISCINFO" ---- >> "$ABCDETEMPDIR/cddbchoices"
2450 for TRACK
in $
(f_seq_row
1 $TRACKS)
2452 echo $TRACK: "$(grep ^TTITLE$(expr $TRACK - 1)= "$ABCDETEMPDIR/cddbread.
$X" | cut -f2- -d= | tr -d \\r\\n)" >> "$ABCDETEMPDIR/cddbchoices"
2454 echo >> "$ABCDETEMPDIR/cddbchoices"
2457 CDDBCHOICES
=$
(expr $
(cat "$ABCDETEMPDIR/cddbquery" |
wc -l) - 2)
2461 for TRACK
in $
(f_seq_row
1 $TRACKS)
2463 echo $TRACK: "$(grep ^TTITLE$(expr $TRACK - 1)= "$ABCDETEMPDIR/cddbread
.1" | cut -f2- -d= | tr -d \\r\\n)" >> "$ABCDETEMPDIR/cddbchoices"
2465 echo >> "$ABCDETEMPDIR/cddbchoices"
2466 echo cddb-read-1-complete
>> "$ABCDETEMPDIR/status"
2467 echo cddb-choice
=1 >> "$ABCDETEMPDIR/status"
2470 echo "cddb-readcomplete" >> "$ABCDETEMPDIR/status"
2477 if checkstatus cddb-edit
>/dev
/null
; then
2478 CDDBDATA
="$ABCDETEMPDIR/cddbread.$(checkstatus cddb-choice)"
2479 VARIOUSARTISTS
="$(checkstatus variousartists)"
2480 VARIOUSARTISTSTYLE
="$(checkstatus variousartiststyle)"
2483 if [ "$INTERACTIVE" = "y" ]; then
2484 # We should show the CDDB results both when we are not using the local CDDB repo
2485 # or when we are using it but we could not find a proper match
2486 if [ "$CDDBUSELOCAL" = "y" ] && [ "$CDDBLOCALSTATUS" = "notfound" ] ||
[ ! "$CDDBUSELOCAL" = "y" ]; then
2487 # Display the $ABCDETEMPDIR/cddbchoices file created above
2488 # Pick a pager so that if the tracks overflow the screen the user can still view everything
2489 if [ -r "$ABCDETEMPDIR/cddbchoices" ]; then
2490 CDDBCHOICES
=$
(expr $
(cat "$ABCDETEMPDIR/cddbquery" |
wc -l) - 2)
2491 CHOICE
=$
(checkstatus cddb-choice
)
2492 if [ -n "$CHOICE" ] ; then
2493 case $CDDBCHOICES in
2494 -1) if head -1 "$ABCDETEMPDIR/cddbquery" |
grep "^$" > /dev
/null
2>&1 ; then
2495 log error
"CDDB query failed!"
2498 cat "$ABCDETEMPDIR/cddbchoices"
2501 1) cat "$ABCDETEMPDIR/cddbchoices" ;;
2503 echo "Selected: #$CHOICE"
2504 do_cddbparse
"$ABCDETEMPDIR/cddbread.$CHOICE"
2508 # The user has a choice to make, display the info in a pager if necessary
2509 if [ $
(cat "$ABCDETEMPDIR/cddbchoices" |
wc -l) -ge 24 ]; then
2510 page
"$ABCDETEMPDIR/cddbchoices"
2512 # It's all going to fit in one page, cat it
2513 cat "$ABCDETEMPDIR/cddbchoices" >&2
2517 # Setting the choice to an impossible integer to avoid errors in the numeric comparisons
2519 # I'll take CDDB read #3 for $400, Alex
2520 while [ $CDCHOICENUM -lt 0 ] ||
[ $CDCHOICENUM -gt $CDDBCHOICES ]; do
2521 echo -n "Which entry would you like abcde to use (0 for none)? [0-$CDDBCHOICES]: " >&2
2523 [ X
"$CDDBCHOICE" = "X" ] && CDDBCHOICE
=1
2524 if echo $CDDBCHOICE |
egrep "[[:space:]]*[[:digit:]]+,[[:digit:]]+[[:space:]]*" > /dev
/null
2>&1 ; then
2525 if [ ! X
"$DIFF" = "X" ]; then
2526 PARSECHOICE1
=$
(echo $CDDBCHOICE | cut
-d"," -f1 |
xargs printf %d
2>/dev
/null
)
2527 PARSECHOICE2
=$
(echo $CDDBCHOICE | cut
-d"," -f2 |
xargs printf %d
2>/dev
/null
)
2528 if [ $PARSECHOICE1 -lt 1 ] ||
[ $PARSECHOICE1 -gt $CDDBCHOICES ] || \
2529 [ $PARSECHOICE2 -lt 1 ] ||
[ $PARSECHOICE2 -gt $CDDBCHOICES ] || \
2530 [ $PARSECHOICE1 -eq $PARSECHOICE2 ]; then
2531 echo "Invalid diff range. Please select two comma-separated numbers between 1 and $CDDBCHOICES" >&2
2533 # We parse the 2 choices to diff, store them in temporary files and diff them.
2534 for PARSECHOICE
in $
(echo $CDDBCHOICE |
tr , \
); do
2535 do_cddbparse
"$ABCDETEMPDIR/cddbread.$PARSECHOICE" > "$ABCDETEMPDIR/cddbread.parsechoice.$PARSECHOICE"
2537 echo "Showing diff between choices $PARSECHOICE1 and $PARSECHOICE2..." > "$ABCDETEMPDIR/cddbread.diff"
2538 $DIFF $DIFFOPTS "$ABCDETEMPDIR/cddbread.parsechoice.$PARSECHOICE1" "$ABCDETEMPDIR/cddbread.parsechoice.$PARSECHOICE2" >> "$ABCDETEMPDIR/cddbread.diff"
2539 if [ $
(cat "$ABCDETEMPDIR/cddbread.diff" |
wc -l) -ge 24 ]; then
2540 page
"$ABCDETEMPDIR/cddbread.diff"
2542 cat "$ABCDETEMPDIR/cddbread.diff" >&2
2546 echo "The diff program was not found in your path. Please choose a number between 0 and $CDDBCHOICES." >&2
2548 elif echo $CDDBCHOICE |
egrep "[[:space:]]*[[:digit:]]+[[:space:]]*" > /dev
/null
2>&1 ; then
2549 # Make sure we get a valid choice
2550 CDCHOICENUM
=$
(echo $CDDBCHOICE |
xargs printf %d
2>/dev
/null
)
2551 if [ $CDCHOICENUM -lt 0 ] ||
[ $CDCHOICENUM -gt $CDDBCHOICES ]; then
2552 echo "Invalid selection. Please choose a number between 0 and $CDDBCHOICES." >&2
2556 if [ "$CDCHOICENUM" = "0" ]; then
2557 vecho
"Creating empty CDDB template..."
2559 $CDDBTOOL template $
(cat "$ABCDETEMPDIR/discid") > "$ABCDETEMPDIR/cddbread.0"
2561 echo "Selected: #$CDCHOICENUM ($(grep ^DTITLE= "$ABCDETEMPDIR/cddbread.
$CDCHOICENUM" | cut -f2- -d= | tr -d \\r\\n))" >&2
2562 do_cddbparse
"$ABCDETEMPDIR/cddbread.$CDCHOICENUM"
2564 echo "cddb-choice=$CDCHOICENUM" >> "$ABCDETEMPDIR/status"
2568 # We need some code to show the selected option when local repository is selected and we have found a match
2569 vecho
"Using cached CDDB match..." >&2
2570 # Display the $ABCDETEMPDIR/cddbchoices file created above
2571 # Pick a pager so that if the tracks overflow the screen the user can still view everything
2572 if [ -r "$ABCDETEMPDIR/cddbchoices" ]; then
2573 CDDBCHOICES
=$
(expr $
(cat "$ABCDETEMPDIR/cddbquery" |
wc -l) - 2)
2574 CHOICE
=$
(checkstatus cddb-choice
)
2575 if [ "$USELOCALRESP" = "y" ]; then :; else
2576 if [ -n "$CHOICE" ] ; then
2577 case $CDDBCHOICES in
2580 echo "Selected template."
2582 1) cat "$ABCDETEMPDIR/cddbchoices" ;;
2584 echo "Selected: #$CHOICE"
2585 do_cddbparse
"$ABCDETEMPDIR/cddbread.$CHOICE"
2593 # We're noninteractive - pick the first choice.
2594 # But in case we run a previous instance and selected a choice, use it.
2595 if [ -r "$ABCDETEMPDIR/cddbchoices" ]; then
2596 # Show the choice if we are not using the locally stored one
2597 # or when the local search failed to find a match.
2598 PREVIOUSCHOICE
=$
(checkstatus cddb-choice
)
2599 if [ "$CDDBUSELOCAL" = "y" ] && [ "$CDDBLOCALSTATUS" = "notfound" ] ||
[ ! "$CDDBUSELOCAL" = "y" ]; then
2600 #if [ "$PREVIOUSCHOICE" ]; then
2601 cat "$ABCDETEMPDIR/cddbchoices"
2604 if [ ! -z "$PREVIOUSCHOICE" ] ; then
2605 CDCHOICENUM
=$PREVIOUSCHOICE
2608 echo "cddb-choice=$CDCHOICENUM" >> "$ABCDETEMPDIR/status"
2610 echo "Selected: #$CDCHOICENUM ($(grep ^DTITLE= "$ABCDETEMPDIR/cddbread.
$CDCHOICENUM" | cut -f2- -d= | tr -d \\r\\n))" >&2
2615 if checkstatus cddb-choice
>/dev
/null
; then :; else
2616 echo "abcde: internal error: cddb-choice not recorded." >&2
2619 CDDBDATA
="$ABCDETEMPDIR/cddbread.$(checkstatus cddb-choice)"
2620 echo -n "Edit selected CDDB data? [y/n] (" >&2
2621 if [ "$INTERACTIVE" = "y" ]; then
2622 if [ "$UNKNOWNDISK" = "y" ]; then
2625 [ "$EDITCDDB" != "n" ] && EDITCDDB
=y
2634 if [ "$EDITCDDB" = "y" ]; then
2635 CDDBDATAMD5SUM
=$
($MD5SUM "$CDDBDATA" | cut
-d " " -f 1);
2637 # Use the debian sensible-editor wrapper to pick the editor that the
2638 # user has requested via their $EDITOR environment variable
2639 if [ -x "/usr/bin/sensible-editor" ]; then
2640 /usr
/bin
/sensible-editor
"$CDDBDATA"
2641 elif [ -n "$EDITOR" ]; then
2642 if [ -x $
(which "${EDITOR%%\ *}") ]; then
2643 # That failed, try to load the preferred editor, starting
2644 # with their EDITOR variable
2645 eval $
(echo "$EDITOR") \"$CDDBDATA\"
2647 # If that fails, check for a vi
2648 elif which vi
>/dev
/null
2>&1; then
2650 elif [ -x /usr
/bin
/vim
]; then
2651 /usr
/bin
/vim
"$CDDBDATA"
2652 elif [ -x /usr
/bin
/vi
]; then
2653 /usr
/bin
/vi
"$CDDBDATA"
2654 elif [ -x /bin
/vi
]; then
2656 # nano should be on all (modern, i.e., sarge) debian systems
2657 elif which nano
>/dev
/null
2>&1 ; then
2659 elif [ -x /usr
/bin
/nano
]; then
2660 /usr
/bin
/nano
"$CDDBDATA"
2661 # mg should be on all OpenBSD systems
2662 elif which mg
>/dev
/null
2>&1 ; then
2664 elif [ -x /usr
/bin
/mg
]; then
2665 /usr
/bin
/mg
"$CDDBDATA"
2668 log warning
"no editor available. Check your EDITOR environment variable."
2670 # delete editor backup file if it exists
2671 if [ -w "$CDDBDATA~" ]; then
2676 # Some heuristics first. Look at Disc Title, and if it starts with
2677 # "Various", then we'll assume Various Artists
2678 if [ "$(grep ^DTITLE= "$CDDBDATA" | cut -f2- -d= | egrep -ci '^(various|soundtrack|varios|sonora|ost)')" != "0" ]; then
2679 echo "Looks like a Multi-Artist CD" >&2
2682 echo -n "Is the CD multi-artist? [y/n] (n): " >&2
2683 if [ "$INTERACTIVE" = "y" ]; then
2690 if [ "$VARIOUSARTISTS" = "y" ] && [ ! "$ONETRACK" = "y" ]; then
2693 # Need NUMTRACKS before cddb-tool will return it:
2694 NUMTRACKS
=$
(egrep '^TTITLE[0-9]+=' "$CDDBDATA" |
wc -l)
2695 if [ "$(grep -c "^TTITLE.
*\
/" "$CDDBDATA")" -gt "$(expr $NUMTRACKS / 2 )" ]; then
2696 # More than 1/2 tracks contain a "/", so guess forward
2698 elif [ "$(grep -c "^TTITLE.
*\
-" "$CDDBDATA")" -gt "$(expr $NUMTRACKS / 2 )" ]; then
2699 # More than 1/2 contain a "-", so guess forward-dash
2701 elif [ "$(grep -c "^TTITLE.
*(.
*)" "$CDDBDATA")" -gt "$(expr $NUMTRACKS / 2 )" ]; then
2702 # More than 1/2 contain something in parens, so guess trailing-paren
2706 echo "1) Artist / Title" >&2
2707 echo "2) Artist - Title" >&2
2708 echo "3) Title / Artist" >&2
2709 echo "4) Title - Artist" >&2
2710 echo "5) Artist: Title" >&2
2711 echo "6) Title (Artist)" >&2
2712 echo "7) This is a single-artist CD" >&2
2713 echo -n "Which style of multiple artist entries is it? [1-7] ($DEFAULTSTYLE): " >&2
2714 if [ "$INTERACTIVE" = "y" ]; then
2715 read VARIOUSARTISTSTYLE
2717 echo $DEFAULTSTYLE >&2
2718 VARIOUSARTISTSTYLE
=$DEFAULTSTYLE
2720 VARIOUSARTISTSTYLE
=$
(echo 0$VARIOUSARTISTSTYLE |
xargs printf %d
)
2721 # If they press Enter, then the default style (0) was chosen
2722 while [ $VARIOUSARTISTSTYLE -lt 0 ] ||
[ $VARIOUSARTISTSTYLE -gt 7 ]; do
2723 echo "Invalid selection. Please choose a number between 1 and 7."
2724 echo -n "Selection [1-7]: "
2725 read VARIOUSARTISTSTYLE
2726 VARIOUSARTISTSTYLE
=$
(echo 0$VARIOUSARTISTSTYLE |
xargs printf %d
)
2728 if [ "$VARIOUSARTISTSTYLE" = "0" ]; then
2729 VARIOUSARTISTSTYLE
=$DEFAULTSTYLE
2731 vecho
"Selected: $VARIOUSARTISTSTYLE"
2732 case "$VARIOUSARTISTSTYLE" in
2734 VARIOUSARTISTSTYLE
=forward
2737 VARIOUSARTISTSTYLE
=forward-dash
2740 VARIOUSARTISTSTYLE
=reverse
2743 VARIOUSARTISTSTYLE
=reverse-dash
2746 VARIOUSARTISTSTYLE
=colon
2749 VARIOUSARTISTSTYLE
=trailing-paren
2757 echo "variousartists=$VARIOUSARTISTS" >> "$ABCDETEMPDIR/status"
2758 echo "variousartiststyle=$VARIOUSARTISTSTYLE" >> "$ABCDETEMPDIR/status"
2760 if [ "$EDITCDDB" = "y" ] && [ "$UNINTENTIONALLY_ANGER_THE_FREEDB_PEOPLE" = "y" ]; then
2761 if [ "$CDDBDATAMD5SUM" != "" ] && [ "$CDDBDATAMD5SUM" != "$($MD5SUM "$CDDBDATA" | cut -d " " -f 1)" ]; then
2762 # This works but does not have the necessary error checking
2763 # yet. If you are familiar with the CDDB spec
2764 # (see http://www.freedb.org/src/latest/DBFORMAT)
2765 # and can create an error-free entry on your own, then put
2766 # UNINTENTIONALLY_ANGER_THE_FREEDB_PEOPLE=y in your
2767 # abcde.conf to enable it. Put CDDBSUBMIT=email@address in
2768 # your abcde.conf to change the email address submissions are
2771 # submit the modified file, if they want
2772 if [ "$NOSUBMIT" != "y" ]; then
2773 echo -n "Do you want to submit this entry to $CDDBSUBMIT? [y/n] (n): "
2775 while [ "$YESNO" != "y" ] && [ "$YESNO" != "n" ] && [ "$YESNO" != "Y" ] && \
2776 [ "$YESNO" != "N" ] && [ "$YESNO" != "" ]
2778 echo -n 'Invalid selection. Please answer "y" or "n": '
2781 if [ "$YESNO" = "y" ] ||
[ "$YESNO" = "Y" ]; then
2782 echo -n "Sending..."
2783 $CDDBTOOL send
"$CDDBDATA" $CDDBSUBMIT
2790 # User CDDBLOCALPOLICY to find out if we store the file or not...
2791 # Cache edited CDDB entry in the user's cddb dir
2792 if [ "$CDDBCOPYLOCAL" = "y" ]; then
2793 # Make sure the cache directory exists
2794 mkdir
-p $CDDBLOCALDIR
2795 cat "$CDDBDATA" |
tail -n $
(expr $
(cat "$CDDBDATA" |
wc -l ) - 1 ) > ${CDDBLOCALDIR}/$
(echo "$TRACKINFO" | cut
-d' ' -f1)
2798 echo "cddb-edit" >> "$ABCDETEMPDIR/status"
2801 # do_cdread [tracknumber]
2802 # do_cdread onetrack [firsttrack] [lasttrack]
2806 # The commands here don't go through run_command because they're never supposed to be silenced
2807 # return codes need to be doublechecked anyway, however
2808 if [ "$1" = "onetrack" ]; then
2809 # FIXME # Add the possibility of grabbing ranges of tracks in onetrack
2810 # FIXME # Until then, we grab the whole CD in one track, no matter what
2812 # We need the first and last track for cdda2wav/icedax
2814 LASTTRACK
=$
(expr $3 + 0)
2815 UTRACKNUM
=$FIRSTTRACK
2816 case "$CDROMREADERSYNTAX" in
2817 flac
) READTRACKNUMS
="$FIRSTTRACK.1-$(($LASTTRACK + 1)).0" ;;
2820 # Add a variable to check if tracks are provided in command line and if not, use "0-" to rip the tracks
2821 READTRACKNUMS
="$FIRSTTRACK-$LASTTRACK" ;;
2822 cdda2wav | icedax
) READTRACKNUMS
="$FIRSTTRACK+$LASTTRACK" ;;
2823 *) echo "abcde error: $CDROMREADERSYNTAX does not support ONETRACK mode"
2829 CDDBTRACKNUM
=$
(expr $UTRACKNUM - 1)
2830 if [ "$USEPIPES" = "y" ]; then
2831 TEMPARG
="PIPERIPPER_$CDROMREADERSYNTAX"
2832 FILEARG
="$( eval echo "\$
$TEMPARG" )"
2834 PIPE_MESSAGE
="and encoding "
2836 WAVDATA
="$ABCDETEMPDIR/track$UTRACKNUM.wav"
2837 case "$CDROMREADERSYNTAX" in
2838 ## FIXME ## Find the cases for dagrab and flac, to avoid exceptions
2840 FILEARG
="--output-name=$WAVDATA"
2843 FILEARG
="-f $WAVDATA"
2851 if [ "$1" = "onetrack" ]; then
2852 echo "Grabbing ${PIPE_MESSAGE}tracks $UTRACKNUM - $LASTTRACK as one track ..." >&2
2854 if [ -r "$CDDBDATA" ]; then
2855 getcddbinfo TRACKNAME
2856 echo "Grabbing ${PIPE_MESSAGE}track $UTRACKNUM: $TRACKNAME..." >&2
2858 echo "Grabbing ${PIPE_MESSAGE}track $UTRACKNUM..." >&2
2861 case "$CDROMREADERSYNTAX" in
2862 ### FIXME ### use an exception for flac, since it uses -o
2863 ### FIXME ### Shall we just use -o $FILEARG ??
2865 # Avoid problems wit math expressions by unpadding the given UTRACKNUM
2866 STRIPTRACKNUM
=$
(expr $UTRACKNUM + 0)
2867 nice
$READNICE $FLAC -d -f --cue=${READTRACKNUMS:-$STRIPTRACKNUM.1-$(($STRIPTRACKNUM + 1)).0} "$FILEARG" "$CDROM" ;;
2869 if [ "$REDIR" = "y" ]; then
2870 nice
$READNICE $CDROMREADER -$CDPARANOIACDROMBUS "$CDROM" ${READTRACKNUMS:-$UTRACKNUM} "$FILEARG" >&2
2872 nice
$READNICE $CDROMREADER -$CDPARANOIACDROMBUS "$CDROM" ${READTRACKNUMS:-$UTRACKNUM} "$FILEARG"
2876 if [ "$OSFLAVOUR" = "OSX" ] ; then
2877 # Hei, we have to unmount the device before running anything like cdda2wav/icedax in OSX
2878 disktool
-u ${CDROM#/dev/} 0
2879 # Also, in OSX the cdrom device for cdda2wav/icedax changes...
2880 CDDA2WAVCDROM
="IODVDServices"
2881 elif [ "$OSFLAVOUR" = "FBSD" ] ; then
2882 CDDA2WAVCDROM
="$CDROMID"
2884 if [ "$CDROMID" = "" ]; then
2885 CDDA2WAVCDROM
="$CDROM"
2887 CDDA2WAVCDROM
="$CDROMID"
2890 if [ "$REDIR" = "y" ]; then
2891 nice
$READNICE $CDROMREADER -D $CDDA2WAVCDROM -t ${READTRACKNUMS:-$UTRACKNUM} "$FILEARG" >&2
2893 nice
$READNICE $CDROMREADER -D $CDDA2WAVCDROM -t ${READTRACKNUMS:-$UTRACKNUM} "$FILEARG"
2895 ## FIXME ## We have an exception for dagrab, since it uses -f
2896 ## FIXME ## Shall we just use -f $FILEARG ??
2898 if [ "$REDIR" = "y" ]; then
2899 nice
$READNICE $CDROMREADER -d "$CDROM" -v $UTRACKNUM "$FILEARG" >&2
2901 nice
$READNICE $CDROMREADER -d "$CDROM" -v $UTRACKNUM "$FILEARG"
2904 # Find the track's mounted path
2905 REALTRACKNUM
=$
(expr $UTRACKNUM + 0)
2906 FILEPATH
=$
(mount |
grep "$CDROM on" |
sed 's/^[^ ]* on \(.*\) (.*/\1/')
2907 FILEPATH
=$
(find "$FILEPATH" |
grep "/$REALTRACKNUM ");
2908 # If the file exists, copy it
2909 if [ -e "$FILEPATH" ] ; then
2910 if [ "$REDIR" = "y" ]; then
2911 nice
$READNICE $CDROMREADER "$FILEPATH" "$FILEARG" >&2
2913 nice
$READNICE $CDROMREADER "$FILEPATH" "$FILEARG"
2919 if [ "$REDIR" = "y" ]; then
2920 nice
$READNICE $CDROMREADER -$CDPARANOIACDROMBUS "$CDROM" -w $UTRACKNUM-[:1] "$FILEARG" >&2
2922 nice
$READNICE $CDROMREADER -$CDPARANOIACDROMBUS "$CDROM" -w $UTRACKNUM-[:1] "$FILEARG"
2926 # If we get some error or we get some missing wav
2927 # (as long as we dont use pipes)
2928 if [ "$RETURN" != "0" -o \
( ! -s "$WAVDATA" -a X
"$USEPIPES" != "Xy" \
) ]; then
2929 # Thank goodness errors is only machine-parseable up to the
2930 # first colon, otherwise this woulda sucked
2931 if [ "$RETURN" = "0" -a ! -s "$WAVDATA" ]; then
2932 RETURN
=73 # fake a return code as cdparanoia return 0 also on aborted reads
2934 if [ "$USEPIPES" = "y" ]; then
2935 echo "readencodetrack-$UTRACKNUM: $CDROMREADER returned code $RETURN" >> "$ABCDETEMPDIR/errors"
2937 echo "readtrack-$UTRACKNUM: $CDROMREADER returned code $RETURN" >> "$ABCDETEMPDIR/errors"
2941 if [ "$USEPIPES" = "y" ]; then
2942 echo readencodetrack-
$UTRACKNUM >> "$ABCDETEMPDIR/status"
2944 echo readtrack-
$UTRACKNUM >> "$ABCDETEMPDIR/status"
2946 if [ "$1" = "onetrack" ]; then
2947 echo onetrack
>> "$ABCDETEMPDIR/status"
2953 # No values accepted, only uses env variables
2956 if "$CDSPEED" "$CDSPEEDOPTS" "$CDSPEEDVALUE" >/dev
/null
; then
2957 vecho
"Setting CD speed to ${CDSPEEDVALUE}x"
2959 echo "abcde: unable to set the device speed" >&2
2965 # vecho outputs a message if EXTRAVERBOSE is selected
2968 if [ x
"$EXTRAVERBOSE" != "x" ]; then
2970 warning
) shift ; log warning
"$@" ;;
2978 # decho outputs a debug message if DEBUG is selected
2981 if [ x
"$DEBUG" != "x" ]; then
2982 if echo $1 |
grep "^\[" > /dev
/null
2>&1 ; then
2983 DEBUGECHO
=$
(echo "$@" |
tr -d '[]')
2984 echo "[DEBUG] $DEBUGECHO: `eval echo \\$${DEBUGECHO}`"
2991 # User-redefinable functions
2992 # Custom filename munging:
2995 #echo "$@" | sed s,:,\ -,g | tr \ /\* __+ | tr -d \'\"\?\[:cntrl:\]
2996 echo "$@" |
sed s
,:,\
-,g |
tr \
/ __ |
tr -d \'\"\?\
[:cntrl
:\
]
2999 # Custom genre munging:
3002 echo $CDGENRE |
tr "[:upper:]" "[:lower:]"
3006 # Empty pre_read function, to be defined in the configuration file.
3013 # Empty post_read function, to be defined in the configuration file.
3020 # Empty post_encode function, to be defined in the configuration file.
3026 ###############################################################################
3029 # Start of execution
3030 ###############################################################################
3035 # Defaults to FreeDB, but musicbrainz can be used too, via the abcde-musicbrainz-tool script
3037 CDDBURL
="http://freedb.freedb.org/~cddb/cddb.cgi"
3038 CDDBSUBMIT
=freedb-submit@freedb.org
3040 HELLOINFO
="$(whoami)@$(hostname)"
3042 CDDBLOCALPOLICY
="always"
3043 CDDBLOCALRECURSIVE
="y"
3044 CDDBLOCALDIR
="$HOME/.cddb"
3047 # List of fields we parse and show during the CDDB parsing...
3048 SHOWCDDBFIELDS
="year,genre"
3051 #CDROMREADERSYNTAX=cdparanoia
3052 ENCODERSYNTAX
=default
3054 MP3ENCODERSYNTAX
=default
3055 OGGENCODERSYNTAX
=default
3056 FLACENCODERSYNTAX
=default
3057 SPEEXENCODERSYNTAX
=default
3058 MPPENCODERSYNTAX
=default
3059 AACENCODERSYNTAX
=default
3060 NORMALIZERSYNTAX
=default
3061 CUEREADERSYNTAX
=default
3063 OUTPUTFORMAT
='${ARTISTFILE}-${ALBUMFILE}/${TRACKNUM}.${TRACKFILE}'
3064 # Use the following VAOUTPUTFORMAT to revert to 2.0.x VA format:
3065 #VAOUTPUTFORMAT=${OUTPUTFORMAT}
3066 VAOUTPUTFORMAT
='Various-${ALBUMFILE}/${TRACKNUM}.${ARTISTFILE}-${TRACKFILE}'
3067 ONETRACKOUTPUTFORMAT
='${ARTISTFILE}-${ALBUMFILE}/${ALBUMFILE}'
3068 VAONETRACKOUTPUTFORMAT
='Various-${ALBUMFILE}/${ALBUMFILE}'
3069 PLAYLISTFORMAT
='${ARTISTFILE}-${ALBUMFILE}.${OUTPUT}.m3u'
3070 PLAYLISTDATAPREFIX
=''
3071 VAPLAYLISTFORMAT
='${ARTISTFILE}-${ALBUMFILE}.${OUTPUT}.m3u'
3072 VAPLAYLISTDATAPREFIX
=''
3080 VARIOUSARTISTSTYLE
=forward
3087 # If using scsi devices, cdda2wav/icedax needs a CDROMID, instead of a device node
3088 # i.e. CDROMID="1,0,0"
3090 # If we are using the IDE bus, we need CDPARANOIACDROMBUS defined as "d"
3091 # If we are using the ide-scsi emulation layer, we need to define a "g"
3092 CDPARANOIACDROMBUS
="d"
3094 # program paths - defaults to checking your $PATH
3101 XINGMP3ENC
=xingmp3enc
3118 VORBISCOMMENT
=vorbiscomment
3122 CDPARANOIA
=cdparanoia
3128 MUSICBRAINZ
=abcde-musicbrainz-tool
3132 NORMALIZE
=normalize-audio
3134 VORBISGAIN
=vorbisgain
3142 # Options for programs called from abcde
3155 VORBISGAINOPTS
="--album"
3158 FLACGAINOPTS
="--add-replay-gain"
3180 VORBISCOMMENTOPTS
="-R"
3181 METAFLACOPTS
="--no-utf8-convert"
3184 # Default to one process if -j isn't specified
3187 # List of actions to perform - by default, run to completion
3188 ACTIONS
=cddb
,read,encode
,tag
,move
,clean
3190 # This option is basicaly for Debian package dependencies:
3191 # List of prefered outputs - by default, run with whatever we have in the path
3192 DEFAULT_OUTPUT_BINARIES
=vorbis
:oggenc
,flac
:flac
,mp3
:toolame
,mp3
:lame
,mp3
:bladeenc
,spx
:speex
,m4a
:faac
3194 # List of prefered cdromreaders - by default, run whichever we have in the path
3195 DEFAULT_CDROMREADERS
="cdparanoia icedax cdda2wav"
3197 # List of quality levels associated with the encoders:
3198 DEFAULT_QUALITY_XLO
="oggenc:-q -1,lame:-q 9,speex:--quality 1,m4a:"
3199 DEFAULT_QUALITY_LO
="oggenc:-q 1,lame:-q 7,speex:--quality 5,m4a:"
3200 DEFAULT_QUALITY_HI
="oggenc:-q 7,lame:--preset standard,speex:--quality 9,m4a:"
3201 DEFAULT_QUALITY_XHI
="oggenc:-q 10,lame:--preset extreme,speex:--quality 10,m4a:"
3203 # Asume fetch if under FreeBSD. curl is used for Mac OS X. wget is used for
3204 # Linux/OpenBSD. ftp is user for NetBSD.
3205 # Let's use these checkings to determine the OS flavour, which will be used
3207 if [ X$
(uname
) = "XFreeBSD" ] ; then
3212 elif [ X$
(uname
) = "XDarwin" ] ; then
3215 # We should have disktool in OSX, but let's be sure...
3217 CDROMREADERSYNTAX
=cddafs
3218 elif [ X$
(uname
) = "XOpenBSD" ] ; then
3222 elif [ X$
(uname
) = "XNetBSD" ] ; then
3226 elif [ X$
(uname
) = "SunOS" ] ; then
3234 # If CDDBAVAIL is set to n, no CDDB read is done
3235 # If USEID3 is set to n, no ID3 tagging is done
3241 # But before we get into business, let us chop off any GREP environmental
3246 if [ -z "$OUTPUTDIR" ]; then
3250 if [ -z "$WAVOUTPUTDIR" ]; then
3251 WAVOUTPUTDIR
="$OUTPUTDIR"
3254 # Load system defaults
3255 if [ -r /etc
/abcde.conf
]; then
3258 # Load user preference defaults
3259 if [ -r $HOME/.abcde.conf
]; then
3263 # By this time, we need some HTTPGETOPTS already defined.
3264 # If the user has defined a non-default HTTPGET method, we should not be empty.
3266 if [ "$HTTPGETOPTS" = "" ] ; then
3268 wget
) HTTPGETOPTS
="-q -nv -e timestamping=off -O -";;
3269 curl
) HTTPGETOPTS
="-f -s";;
3270 fetch
)HTTPGETOPTS
="-q -o -";;
3271 ftp) HTTPGETOPTS
="-a -V -o - ";;
3272 *) log warning
"HTTPGET in non-standard and HTTPGETOPTS are not defined." ;;
3276 # If the CDROM has not been set yet, find a suitable one.
3277 # If this is a devfs system, default to /dev/cdroms/cdrom0
3278 # instead of /dev/cdrom
3279 if [ "$CDROM" = "" ] ; then
3280 if [ -e /dev
/cdroms
/cdrom0
]; then
3281 CDROM
=/dev
/cdroms
/cdrom0
3282 elif [ -e /dev
/cdrom
]; then
3284 elif [ -e /dev
/cd0c
]; then
3286 elif [ -e /dev
/acd0c
]; then
3288 elif [ -e /dev
/disk1
]; then
3293 # Parse command line options
3294 #while getopts 1a:bc:C:d:Dehj:klLmMnNo:pPq:r:Rs:S:t:T:vVxw:W: opt ; do
3295 while getopts 1a
:bBc
:C
:d
:Defghj
:klLmMnNo
:pPr
:s
:S
:t
:T
:UvVxX
:w
:W
:z opt
; do
3298 a
) ACTIONS
="$OPTARG" ;;
3299 A
) EXPACTIONS
="$OPTARG" ;;
3301 B
) NOBATCHREPLAYGAIN
=y
;;
3302 c
) if [ -e "$OPTARG" ] ; then .
"$OPTARG" ; else log error
"config file \"$OPTARG\" cannot be found." ; exit 1 ; fi ;;
3303 C
) DISCID
="$( echo ${OPTARG#abcde.} | tr -d /)" ;;
3304 d
) CDROM
="$OPTARG" ;;
3307 e
) ERASEENCODEDSTATUS
=y
;;
3308 E
) ENCODING
="$OPTARG" ;;
3312 j
) MAXPROCS
="$OPTARG" ;;
3315 L
) CDDBUSELOCAL
=y
;;
3320 o
) OUTPUTTYPE
="$OPTARG" ;;
3323 q
) QUALITYLEVEL
="$OPTARG" ;;
3324 r
) REMOTEHOSTS
="$OPTARG" ;;
3325 R
) CDDBLOCALRECURSIVE
=y
;;
3326 s
) SHOWCDDBFIELDS
="$OPTARG" ;;
3327 S
) CDSPEEDVALUE
="$OPTARG" ;;
3328 t
) STARTTRACKNUMBER
="$OPTARG" ;;
3329 T
) STARTTRACKNUMBER
="$OPTARG" ; STARTTRACKNUMBERTAG
="y" ;;
3332 echo "This is abcde v$VERSION."
3333 echo "Usage: abcde [options] [tracks]"
3334 echo "abcde -h for extra help"
3337 V
) EXTRAVERBOSE
="y" ;;
3339 X
) CUE2DISCID
="$OPTARG" ;;
3340 w
) COMMENT
="$OPTARG" ;;
3341 W
) if echo $OPTARG |
grep "[[:digit:]]" > /dev
/null
2>&1 ; then
3342 STARTTRACKNUMBER
="${OPTARG}01"
3343 STARTTRACKNUMBERTAG
="y"
3344 COMMENT
="CD${OPTARG}"
3345 DISCNUMBER
="${OPTARG}"
3347 log error
"argument of -W must be integer"
3351 z
) DEBUG
=y
; CDROMREADERSYNTAX
=debug
; EJECTCD
="n" ;;
3356 shift $
(($OPTIND - 1))
3358 # Here it comes the worse part of the whole thing. From here until we start
3359 # ripping, we have a mixture of sanity checks, verifications, default settigs
3360 # and other crazy stuff that interdepends, but hey, someone has to do it.
3362 # If NOCDDBQUERY is set, don't query the CDDB server.
3363 if [ "$NOCDDBQUERY" = "y" ]; then
3367 # If the user specified a flac file, then switch to special flac mode
3368 if echo "$CDROM" |
grep -i '.flac$' > /dev
/null
2>&1 ; then
3369 if [ ! -f "$CDROM" ]; then
3370 log error
"the defined file for FLAC ripping cannot be found" >&2
3373 vecho warning
"switching to flac CDROMREADERSYNTAX..."
3374 CDROMREADERSYNTAX
=flac
3375 # We have a builtin version of cue2discid...
3376 case "$CUE2DISCID" in
3378 *) NEEDCUE2DISCID
=y
;;
3384 # If the user provided a DISCID, disable eject
3385 if [ -n "$DISCID" ] ||
[ "$CDROMREADERSYNTAX" = "flac" ]; then EJECTCD
=n
; fi
3387 # Check the available cd rippers in the system, from the ones we know.
3388 if [ "$CDROMREADERSYNTAX" = "" ]; then
3389 for DEFAULT_CDROMREADER
in $DEFAULT_CDROMREADERS; do
3390 if new_checkexec
$DEFAULT_CDROMREADER; then
3391 CDROMREADERSYNTAX
=$DEFAULT_CDROMREADER
3395 if [ "$CDROMREADERSYNTAX" = "" ]; then
3396 log error
"no cdreader found in your PATH"
3397 log error
"hints: are all dependencies installed? has the \$PATH been modified?"
3402 # Decide if we can continue.
3403 if [ "$ONETRACK" = "y" ]; then
3404 # FIXME # remove check as soon as we find out about the other readers
3405 case "$CDROMREADERSYNTAX" in
3408 cdda2wav | icedax
) ;;
3409 *) log error
"$CDROMREADERSYNTAX does not support ONETRACK mode"
3412 if [ "$BATCHNORM" = "y" ]; then
3413 log warning
"BATCHNORM mode is not compatible with ONETRACK mode. Disabling..."
3416 if [ "$NOGAP" = "y" ]; then
3417 log warning
"NOGAP mode is not compatible with ONETRACK mode. Disabling..."
3420 # It does not matter how many tracks we want. In ONETRACK mode we grab them all
3421 # FIXME # allow ranges of tracks to be selected for onetrack ripping
3422 if [ $# -gt 0 ]; then
3423 log warning
"ONETRACK mode selected, grabbing all tracks..."
3426 while [ $# -gt 0 ]; do
3427 # Range parsing code courtesy of Vincent Ho
3428 # Cleaned up to use shell built-ins by Charles Steinkuehler
3429 if [ "${1#*[^0-9-]}" != "$1" ]; then
3430 log error
"syntax error while processing track numbers"
3434 while [ ${RSTART:=1} -le ${REND:=0} ] ; do
3435 TRACKQUEUE
="$TRACKQUEUE $RSTART"
3436 RSTART
=$
(( $RSTART + 1 ))
3443 # List of valid actions: cddb,read,normalize,encode,tag,move,playlist,clean
3444 # List of experimental actions: retag,transcode
3446 # Determine what actions are to be done from $ACTIONS and set the
3447 # following environment variables for them:
3459 ## FIXME ## Lets keep compatibility with -M
3460 [ "$DOCUE" != "y" ] && DOCUE
=n
3462 for ACTION
in $
(echo $ACTIONS |
tr , \
)
3465 default
) DOCDDB
=y
; DOREAD
=y
; DOENCODE
=y
; DOTAG
=y
; DOMOVE
=y
; DOCLEAN
=y
;;
3466 cue
) DOCUE
=y
; MAKECUEFILE
=y
;;
3469 normalize
) DONORMALIZE
=y
; DOREAD
=y
;;
3470 # preprocess) DOPREPROCESS=y; DOREAD=y;;
3471 encode
) DOENCODE
=y
; DOREAD
=y
;;
3472 # postprocess) DOPREPROCESS=y; DOENCODE=y; DOREAD=y;;
3473 tag
) DOTAG
=y
; DOREAD
=y
; DOENCODE
=y
; DOCDDB
=y
;;
3474 move
) DOMOVE
=y
; DOTAG
=y
; DOREAD
=y
; DOENCODE
=y
; DOCDDB
=y
;;
3475 replaygain
) DOCDDB
=y
; DOREAD
=y
; DOENCODE
=y
; DOTAG
=y
; DOMOVE
=y
; DOREPLAYGAIN
=y
;;
3476 playlist
) DOCDDB
=y
; DOPLAYLIST
=y
;;
3481 if [ "$DONORMALIZE" = "y" ] && [ "$DOREPLAYGAIN" = "y" ]; then
3482 # FIXME # should we abort on error or just inform the user?
3483 log warning
"selected both normalize and replaygain actions"
3486 for SHOWCDDBFIELD
in $
(echo $SHOWCDDBFIELDS |
tr , \
); do
3487 case $SHOWCDDBFIELD in
3488 y
*|Y
*) SHOWCDDBYEAR
="y";;
3489 g
*|G
*) SHOWCDDBGENRE
="y";;
3494 # At this point a CDROM has to be defined, so we check it exists.
3495 if [ X
"$CDROM" != "X" ] ; then
3496 if ( [ "$CDROMREADERSYNTAX" = "cdda2wav" ] ||
[ "$CDROMREADERSYNTAX" = "icedax" ] ) && [ "$NEEDCDROMID" = "y" ] ; then
3497 if [ "$OSFLAVOUR" = "FBSD" ]; then
3498 if echo "$CDROMID" |
grep "^[0-9],[0-9],[0-9]$" >/dev
/null
2>&1 ; then :; else
3499 log error
"CDROMID not in the right format for $CDROMREADERSYNTAX"
3500 log error
"Use \"cdrecord -scanbus\" to obtain a adecuate ID an set CDROMID accordingly"
3504 elif [ ! -e "$CDROM" -a X
"$DOREAD" = "Xy" ]; then
3505 log error
"CDROM device cannot be found."
3508 # avoid processing if we are not going to hit the CDROM.
3509 elif [ X
"$DOREAD" = "Xy" ]; then
3510 log error
"CDROM has not been defined or cannot be found"
3514 # USEPIPES pre-tests, before we get into more serious stuff
3515 # Not compatible with:
3516 # - multiple outputs
3518 # - lowdisk algorithm
3520 if [ X
"$USEPIPES" = "Xy" ]; then
3521 if [ $
(echo "$OUTPUTTYPE" |
tr , \ |
wc -w ) -gt 1 ]; then
3522 log error
"Unix pipes not compatible with multiple outputs"
3525 if [ X
"$DONORMALIZE" = "Xy" ]; then
3526 log error
"Unix pipes not compatible with normalizer"
3527 # FIXME # Do we need to exit or shall we just disable the mode?
3530 if [ X
"$BATCHNORM" = "Xy" ]; then
3531 log error
"Unix pipes not compatible with BATCHNORM encoding"
3534 if [ X
"$NOGAP" = "Xy" ]; then
3535 log error
"Unix pipes not compatible with NOGAP encoding"
3538 if [ X
"$DOENCODE" = "Xn" ]; then
3539 vecho warning
"Disabling Unix pipes since we are not encoding!"
3542 if [ X
"$LOWDISK" = "Xy" ]; then
3543 log error
"Unix pipes not compatible with lowdisk algorithm"
3548 # LOWDISK pre-tests, before we get into more problematic stuff
3549 # Not compatible with anything that needs all the files in the hard disc:
3552 if [ X
"$LOWDISK" = "Xy" ]; then
3553 if [ X
"$BATCHNORM" = "Xy" ]; then
3554 log error
"Unix pipes not compatible with BATCHNORM encoding"
3557 if [ X
"$NOGAP" = "Xy" ]; then
3558 log error
"Unix pipes not compatible with NOGAP encoding"
3563 # BATCHNORM pre-tests, before we get into serious problems
3564 # Not compatible with
3565 if [ "$BATCHNORM" = "y" ] && [ "$DONORMALIZE" = "n" ]; then
3566 vecho warning
"Disabling BATCHNORM since we are not normalizing!"
3570 # Check the encoding format from the ones available in the system, if nothing has been configured.
3571 if [ X
"$OUTPUTTYPE" = "X" ]; then
3572 for DEFAULT_OUTPUT
in $
( echo "$DEFAULT_OUTPUT_BINARIES" |
tr , \
); do
3573 DEFAULT_OUTPUT_FORMAT
="$(echo $DEFAULT_OUTPUT | cut -d ":" -f 1)"
3574 DEFAULT_OUTPUT_BINARY
="$(echo $DEFAULT_OUTPUT | cut -d ":" -f 2)"
3575 if [ -x $
(which $DEFAULT_OUTPUT_BINARY) ] ; then
3576 OUTPUTTYPE
=$DEFAULT_OUTPUT_FORMAT
3577 vecho
"No default output type defined. Autoselecting $OUTPUTTYPE..." >&2
3581 if [ X
"$OUTPUTTYPE" = "X" ]; then
3582 log error
"no encoder found in the PATH"
3583 log error
"hints: are all dependencies installed? has the \$PATH been modified?"
3588 # Decide which CDROM reader we're gonna use
3589 case "$CDROMREADERSYNTAX" in
3591 CDROMREADER
="$CDPARANOIA"
3592 CDROMREADEROPTS
="$CDPARANOIAOPTS"
3595 CDROMREADER
="$CDDA2WAV"
3596 CDROMREADEROPTS
="$CDDA2WAVOPTS"
3599 CDROMREADER
="$DAGRAB"
3600 CDROMREADEROPTS
="$DAGRABOPTS"
3603 CDROMREADER
="$CDDAFS"
3604 CDROMREADEROPTS
="$CDDAFSOPTS"
3608 CDROMREADEROPTS
="$FLACOPTS"
3612 # There's only one normalize...
3613 case "$NORMALIZERSYNTAX" in
3615 NORMALIZER
="$NORMALIZE"
3616 NORMALIZEROPTS
="$NORMALIZEOPTS"