K3b
From KevinWiki
(Difference between revisions)
(Created page with "Category:Linux = Known Bugs = Although normalize-audio is installed and available, K3b cannot find it and keep asking to install it (<code>sudo apt-get install normalize-audi...") |
|||
Line 3: | Line 3: | ||
Although normalize-audio is installed and available, K3b cannot find it and keep asking to install it (<code>sudo apt-get install normalize-audio</code>). | Although normalize-audio is installed and available, K3b cannot find it and keep asking to install it (<code>sudo apt-get install normalize-audio</code>). | ||
There is a workaround for this issue. | There is a workaround for this issue. | ||
- | |||
create normalize-audio in the /usr/local/bin/ and put the following script. | create normalize-audio in the /usr/local/bin/ and put the following script. | ||
Line 24: | Line 23: | ||
If it doesn't work, open K3b -> Configure K3b -> Programs -> Select the "Search Path" tab -> move /usr/local/bin/ up to position it before /usr/bin/. | If it doesn't work, open K3b -> Configure K3b -> Programs -> Select the "Search Path" tab -> move /usr/local/bin/ up to position it before /usr/bin/. | ||
+ | |||
+ | == Reference == | ||
+ | http://machine-cycle.blogspot.com.au/2011/04/fixing-normalize-audio-feature-in-k3b.html |
Latest revision as of 08:59, 7 September 2012
Known Bugs
Although normalize-audio is installed and available, K3b cannot find it and keep asking to install it (sudo apt-get install normalize-audio
).
There is a workaround for this issue.
create normalize-audio in the /usr/local/bin/ and put the following script.
#!/bin/bash case "$1" in --version) /usr/bin/normalize-audio --version | sed -e 's/normalize/normalize-audio/g' ;; *) /usr/bin/normalize-audio "$@" ;; esac
make it executable.
$ chmod a+x /usr/local/bin/normalize-audio
If it doesn't work, open K3b -> Configure K3b -> Programs -> Select the "Search Path" tab -> move /usr/local/bin/ up to position it before /usr/bin/.
Reference
http://machine-cycle.blogspot.com.au/2011/04/fixing-normalize-audio-feature-in-k3b.html