Mercurial > ~darius > hgwebdir.cgi > cddb-stuff
view gettracks.sh @ 4:3a7a8d8a070a
Added tag CDDB-STUFF_1_0 for changeset 74031379d3cb
author | darius@midget.dons.net.au |
---|---|
date | Tue, 23 Oct 2007 10:08:25 +0930 |
parents | 74031379d3cb |
children | cf06ab549064 |
line wrap: on
line source
#!/bin/sh cddev=/dev/acd0c root=`dirname $0` if [ $# -eq 0 ]; then tracks=`$root/cddb-id -f $cddev -n` else tracks=$* fi echo Ripping tracks $tracks ripper="cdd -t \$num -" comp="lame -x -b 192 - -" #comp="gogo -silent -offset 0 -b 192 stdin" for t in $tracks ; do num=`printf %02d $t` name=`printf track_%s.mp3 $num` echo Ripping $num to $name eval $ripper 2>> rip.log | sox -t cdr - -t wav - | $comp > $name if [ $? -ne 0 ]; then echo "Failed!" exit 1 fi done