patch-src_normalize-mp3_in 784 B

12345678910111213141516171819202122
  1. --- src/normalize-mp3.in.orig Mon Sep 12 09:31:15 2005
  2. +++ src/normalize-mp3.in Sat Jul 7 22:44:02 2007
  3. @@ -26,12 +26,12 @@
  4. # %b becomes bitrate of re-encoded file, as specified by the -b option
  5. # Example: $OGGENCODE="oggenc -Q -b %b -o %m %w"
  6. -$MP3DECODE = "@MP3DECODE@";
  7. -$MP3ENCODE = "@MP3ENCODE@";
  8. -$OGGDECODE = "@OGGDECODE@";
  9. -$OGGENCODE = "@OGGENCODE@";
  10. -$FLACDECODE = "@FLACDECODE@";
  11. -$FLACENCODE = "@FLACENCODE@";
  12. +$MP3DECODE = "mpg321 -q -w %w %m";
  13. +$MP3ENCODE = "lame --quiet -h -b %b %w %m";
  14. +$OGGDECODE = "ogg123 -q -d wav -f %w %m";
  15. +$OGGENCODE = "oggenc -Q -b %b -o %m %w";
  16. +$FLACDECODE = "flac -d -o %w";
  17. +$FLACENCODE = "flac -o %m %w";
  18. # The %w etc. substitutions should *not* be used in the following, as
  19. # this script knows about their options already.