[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[abcde] Vorbize
This patch to abcde ver 1.9.1 will allow "vorbize" to work when
"ENCODERSYNTAX=vorbize" is in /etc/abcde.conf or ~/.abcde.conf.
Stereo sounds as good as Joint Stereo to me, so I don't miss JS in
OGG. I've been using vorbize to oggify my CD collection for a while
now. For those considering OGG, I recommend encoding some selections
in both OGG and MP3 formats. It doesn't take long (setup's easy as
well with Debian packages), and if you still think MP3 is better, then
wait until Vorbis 1.0 hits the street. For me, though, OGG currently
sounds a little bit better and is currently a little smaller than the
equivalent MP3 (due to the finer VBR).
Sidenote: setting CDDBURL="http://freedb.freedb.org/~cddb/cddb.cgi"
works well for me, and means that you're not breaking Escient's
horrible little licensing deal. According to TODO, this is still under
consideration: what's preventing this change?
Kevin.
-- Attached file included as plaintext by Listar --
--- abcde-1.9.1/abcde Thu Aug 17 23:56:03 2000
+++ /usr/bin/abcde Tue Aug 22 12:14:11 2000
@@ -168,7 +168,7 @@
;;
ogg)
case "$ENCODERSYNTAX" in
- vorbize) run_command encodetrack-$1 $ENCODER $ENCODEROPTS "$IN" > "$OUT" ;;
+ vorbize) run_command encodetrack-$1 $ENCODER $ENCODEROPTS -w "$OUT" "$IN" ;;
oggenc) run_command encodetrack-$1 $ENCODER $ENCODEROPTS "$IN" -o "$OUT" ;;
esac
;;
@@ -599,6 +599,7 @@
BLADEENC=bladeenc
L3ENC=l3enc
MP3ENC=mp3enc
+VORBIZE=vorbize
ID3=id3
CDPARANOIA=cdparanoia
CDDA2WAV=cdda2wav
@@ -614,6 +615,7 @@
BLADEENCOPTS=
L3ENCOPTS=
MP3ENCOPTS=
+VORBIZEOPTS=
ID3OPTS=
CDPARANOIAOPTS=
CDDA2WAVOPTS=
@@ -724,6 +726,10 @@
ENCODEROPTS="$MP3ENCOPTS"
ENCODER="$MP3ENC"
;;
+ vorbize)
+ ENCODEROPTS="$VORBIZEOPTS"
+ ENCODER="$VORBIZE"
+ ;;
esac
if [ "$REMOTEHOSTS" != "" ]; then
To unsubscribe: echo unsubscribe | mail abcde-request@whimsica.lly.org