commit:fbe1b7ccba5a22087244d72cd2aefa2b4c4555a6
author:Chip Black
committer:Chip Black
date:Sat Aug 16 16:00:43 2014 -0500
parents:9c192a57c8b3c2233d12a7fe198db31bc6706aa5
Better flesh out examples
diff --git a/Convfile.example b/Convfile.example
line changes: +6/-0
index a8cc6bd..e8ae2c9
--- a/Convfile.example
+++ b/Convfile.example
@@ -1,6 +1,12 @@
 VORBIS_Q = 5
 LAME_BITRATE = 192
 
+# Convert FLAC to Ogg Vorbis
 flac => ogg : oggenc --quiet -q $VORBIS_Q $<
+# Convert FLAC to MP3
 flac => mp3 : lame --quiet -h -b $LAME_BITRATE $< $@
+# Decode FLAC to WAV (output file is implicitly chosen by flac)
 flac => wav : flac -s -d $<
+
+# Convert Ogg Vorbis to MP3 by way of an intermediary WAV file
+ogg => mp3 : oggdec $< -o $*.wav && lame -h -b $LAME_BITRATE $*.wav $@ && rm $*.wav