r160@frost: data | 2005-08-31 15:59:53 +0300
authordata <data@a0fa61bc-5347-0410-a1a9-7f54aa4e1825>
Wed, 31 Aug 2005 20:41:28 +0000 (20:41 +0000)
committerdata <data@a0fa61bc-5347-0410-a1a9-7f54aa4e1825>
Wed, 31 Aug 2005 20:41:28 +0000 (20:41 +0000)
 Added last bits of replaygain patch
 Changed lenth of 3,4 to 3,6 since we will be supporting both ogg and vorbis

git-svn-id: http://abcde.googlecode.com/svn/trunk@122 a0fa61bc-5347-0410-a1a9-7f54aa4e1825

abcde

diff --git a/abcde b/abcde
index de8dff3..b5b720e 100755 (executable)
--- a/abcde
+++ b/abcde
@@ -325,6 +325,14 @@ do_replaygain()
                for OUTPUT in $( echo $OUTPUTTYPE | tr , \ )
                # THE OUTPUT NEEDS TO BE CORRECTED WITH THE CONTAINER?
                do
                for OUTPUT in $( echo $OUTPUTTYPE | tr , \ )
                # THE OUTPUT NEEDS TO BE CORRECTED WITH THE CONTAINER?
                do
+                       case $OUTPUT in
+                               vorbis|ogg)
+                                       OUTPUT=$OGGOUTPUTCONTAINER
+                                       ;;
+                               flac)
+                                       OUTPUT=$FLACOUTPUTCONTAINER
+                                       ;;
+                       esac
                        OUTPUTFILES=""
                        for UTRACKNUM in $TRACKQUEUE
                        do
                        OUTPUTFILES=""
                        for UTRACKNUM in $TRACKQUEUE
                        do
@@ -343,17 +351,16 @@ do_replaygain()
                                OUTPUTFILES="$OUTPUTDIR/$OUTPUTFILE.$OUTPUT $OUTPUTFILES"
                        done
                        case "$OUTPUT" in
                                OUTPUTFILES="$OUTPUTDIR/$OUTPUTFILE.$OUTPUT $OUTPUTFILES"
                        done
                        case "$OUTPUT" in
-                               flac);;
-                               ogg);;
+                               flac)
+                                       run_command replaygain-flac $METAFLAC --add-replay-gain $OUTPUTFILES
+                                       ;;
+                               vorbis|ogg)
+                                       run_command replaygain-vorbis $VORBISGAIN --album $OUTPUTFILES
+                                       ;;
                                *);;
                        esac
                                *);;
                        esac
-                       if [ "$RETURN" = "0" ]; then
-                               run_command replaygain-$OUTPUT true
-                       else
-                               runcommand replaygain-$OUTPUT false
-                       fi
                done
                done
-               if checkerrors replaygain-.{3,4}; then
+               if checkerrors replaygain-.{3,6}; then
                        run_command replaygain false
                else
                        run_command replaygain true
                        run_command replaygain false
                else
                        run_command replaygain true
@@ -685,7 +692,7 @@ do_tag ()
                        ;;
                esac
        done
                        ;;
                esac
        done
-       if checkerrors "tagtrack-(.{3,4})-$1"; then
+       if checkerrors "tagtrack-(.{3,6})-$1"; then
                run_command tagtrack-$1 false
        else
                run_command tagtrack-$1 true
                run_command tagtrack-$1 false
        else
                run_command tagtrack-$1 true
@@ -868,7 +875,7 @@ do_encode ()
                        esac
                done
                # Only remove .wav if the encoding succeeded
                        esac
                done
                # Only remove .wav if the encoding succeeded
-               if checkerrors "encodetrack-(.{3,4})-$1"; then 
+               if checkerrors "encodetrack-(.{3,6})-$1"; then 
                        run_command encodetrack-$1 false
                else
                        run_command encodetrack-$1 true
                        run_command encodetrack-$1 false
                else
                        run_command encodetrack-$1 true