ac82fb07dd
normalize is a tool for adjusting the volume of audio files to a standard level. This is useful for things like creating mixed CD's and mp3 collections, where different recording levels on different albums can cause the volume to vary greatly from song to song.
19 lines
652 B
Plaintext
19 lines
652 B
Plaintext
$OpenBSD: patch-src_normalize-mp3_in,v 1.1.1.1 2002/04/28 09:11:37 jasoni Exp $
|
|
--- src/normalize-mp3.in.orig Sat Feb 23 12:49:57 2002
|
|
+++ src/normalize-mp3.in Wed Apr 24 11:59:06 2002
|
|
@@ -27,10 +27,10 @@
|
|
# %b becomes bitrate of re-encoded file, as specified by the -b option
|
|
# Example: $OGGENCODE="oggenc -Q -b %b -o %m %w"
|
|
|
|
-$MP3DECODE = "@MP3DECODE@";
|
|
-$MP3ENCODE = "@MP3ENCODE@";
|
|
-$OGGDECODE = "@OGGDECODE@";
|
|
-$OGGENCODE = "@OGGENCODE@";
|
|
+$MP3DECODE = "mpg321 -q -w %w %m";
|
|
+$MP3ENCODE = "lame --quiet -h -b %b %w %m";
|
|
+$OGGDECODE = "ogg123 -q -d wav -f %w %m";
|
|
+$OGGENCODE = "oggenc -Q -b %b -o %m %w";
|
|
|
|
$VORBISCOMMENT = "@VORBISCOMMENT@";
|
|
|