I had the same problem on Ubuntu 9.04. It seems to come from the line

dd if=/dev/zero bs=4 count=1920 | lame -b 128 -s 48 /dev/stdin
silent.mpa

in the script menu.sh. Apparently, newer versions of lame need the switch -r to 
accept raw data
(i.e. without header). Thus,

dd if=/dev/zero bs=4 count=1920 | lame -b 128 -s 48 -r /dev/stdin
silent.mpa

or better

dd if=/dev/zero bs=4 count=1920 | lame -b 128 -s 48 -r - silent.mpa

works.
As a workaround, execute the above command in the destination directory before 
clicking
on the "Generate DVD structure" icon.

-- 
Unable to open file silent.mpa for reading
https://bugs.launchpad.net/bugs/401366
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to