From a2881ebabd4f264d948b219b36f68bec4c1dc3e9 Mon Sep 17 00:00:00 2001 From: data Date: Thu, 6 Oct 2005 15:27:43 +0000 Subject: [PATCH] r192@frost: data | 2005-10-06 18:26:48 +0300 Allow USEPIPES for -1 singletrack reads, too Reject to continue if in USEPIPES mode and no ripper/encoder with pipes support is used Separate PIPE for rippers and encoders git-svn-id: http://abcde.googlecode.com/svn/trunk@139 a0fa61bc-5347-0410-a1a9-7f54aa4e1825 --- abcde | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/abcde b/abcde index ad23759..def090c 100755 --- a/abcde +++ b/abcde @@ -2140,7 +2140,7 @@ do_cdread () fi CDDBTRACKNUM=$(expr $UTRACKNUM - 1) if [ "$USEPIPES" = "y" ]; then - TEMPARG="PIPE_$CDROMREADERSYNTAX" + TEMPARG="PIPERIPPER_$CDROMREADERSYNTAX" FILEARG="$( eval echo "\$$TEMPARG" )" REDIR="" PIPE_MESSAGE="and encoding " @@ -3011,19 +3011,20 @@ fi # Rippers with USEPIPE support # FIXME # Include here all the rippers we can figure out support pipes -PIPE_cdparanoia="-" -PIPE_flac="-c " +PIPERIPPER_cdparanoia="-" +PIPERIPPER_flac="-c " # Encoders with USEPIPE support # FIXME # Include here all the encoders we can figure out support pipes PIPE_lame="-" PIPE_bladeenc="-" PIPE_oggenc="-" +PIPE_flac="-" # Figure out if we can use pipes with the ripper/encoder combination # exit otherwise if [ "$USEPIPES" = "y" ]; then - PIPERIPPERSVARCHECK="PIPE_${CDROMREADER}" + PIPERIPPERSVARCHECK="PIPERIPPER_${CDROMREADERSYNTAX}" case "$OUTPUT" in mp3) PIPEENCODERSVARCHECK="PIPE_$MP3ENCODERSYNTAX" ;; @@ -3036,13 +3037,14 @@ if [ "$USEPIPES" = "y" ]; then mpc) PIPEENCODERSVARCHECK="PIPE_$MPPENCODER" ;; esac - if [ ! -n "$( eval echo "\$$PIPERIPPERSVARCHECK" )" ] ; then + if [ "$( eval echo "\$$PIPERIPPERSVARCHECK" )" = "$" ] ; then log error "no support for pipes with given ripper" log error "read the USEPIPES file from the source tarball to get help." log error "On a Debian system, it is under /usr/share/doc/abcde/USEPIPES.gz" exit 1; fi - if [ ! -n "$( eval echo "\$$PIPEENCODERSVARCHECK" )" ] ; then + vecho PIPES: "$( eval echo "\$$PIPEENCODERSVARCHECK" )" + if [ "$( eval echo "\$$PIPEENCODERSVARCHECK" )" = "$" ] ; then log error "no support for pipes with given encoder" log error "read the USEPIPES file from the source tarball to help" log error "on a Debian system, read /usr/share/doc/abcde/USEPIPES.gz" @@ -3158,7 +3160,11 @@ fi if [ "$ONETRACK" = "y" ]; then TRACKS="$FIRSTTRACK" if checkstatus readtrack-$FIRSTTRACK; then :; else - do_cdread onetrack $FIRSTTRACK $LASTTRACK + if [ "$USEPIPES" = "y" ]; then + do_cdread onetrack $FIRSTTRACK $LASTTRACK | do_encode $FIRSTTRACK %local0% > /dev/null 2>&1 + else + do_cdread onetrack $FIRSTTRACK $LASTTRACK + fi fi else for UTRACKNUM in $TRACKQUEUE -- 2.20.1