k3b

Comment 5 for bug 1041819

Revision history for this message
In , Janet (bugzilla-kerridis) wrote :

Workaround: http://forum.ubuntuusers.de/topic/k3b-und-normalize-audio/

mv /usr/bin/normalize-audio /usr/bin/normalize

Then create file /usr/bin/normalize-audio with the following content:

#/bin/bash
case "$1" in
        --version)
        normalize --version | sed -e 's/normalize /normalize-audio /g'
        ;;
        *)
        normalize $*
        ;;
esac