It's clear from the following lines at the start of /usr/bin/normalize- mp3 that the paths to an mp3 encoder and decoder is missing.
$OGGDECODE = "oggdec -Q -o %w %m"; $OGGENCODE = "oggenc -Q -b %b -o %m %w"; $MP3DECODE = " -q -o %w %m"; $MP3ENCODE = " -quiet %w %m"; I specified lame as the encoder, and mp3-decoder as the decoder. (mp3-decoder is a symlink to the default decoder, mpg321, for which i had to fiddle the arguments slightly, as below) $MP3DECODE = "mp3-decoder -q --wav %w %m"; $MP3ENCODE = "lame -quiet %w %m"; -- normalize-mp3 0.7.7 fails at line 741 (0.7.6 worked) https://bugs.launchpad.net/bugs/109581 You received this bug notification because you are a member of Ubuntu Bugs, which is the bug contact for Ubuntu. -- ubuntu-bugs mailing list [email protected] https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
