Comment 68 for bug 529696

Revision history for this message
Vincent Caron (vincent-zerodeux) wrote : Re: brasero can't copy audio cd (useless error message)

I used this workaround on Lucid, which wraps icedax and pretends to be "cdda2wav 2.0.0" : create a /usr/local/bin/cdda2wav executable file with:
<code>
#!/bin/sh

# See http://launchpadlibrarian.net/41444030/cdda2wav.patch
# and https://bugs.launchpad.net/ubuntu/+source/brasero/+bug/529696

if [ "$1" = "--version" ]; then
  echo "cdda2wav 2.0.0" >&2
  exit 0
fi

exec /usr/bin/icedax "$@"
</code>

Then "aptitude install icedax". You might need to "pkill gvfsd-burn" which seems to cache the plugin test.

And "brasero -c" now works here.