Hi,
I am using the burn plugin version 0.0.6f. It creates good mpeg, and iso files, however, then I play the dvd in any player, the menu displays only for a split second and disappears. It then shows a black screen. When I press remote buttons, I can view title description again, just for a split second.
Any ideas what is happening? Any more information I can provide to help isolate the problem? I use vdr 1.3.30. dvdauthor version is 0.6.10., growisofs version is 5.21.
Also, another problem, which is minor is when I add multiple vdr files to burn, the burn plugin does not show the total size for dvd compiling.
Thanks, Monk
On 9/1/05, Sebastian Frei Sebastian@schnapsleichen.de wrote:
I think I found the problem. It is the spumux process that is messing it up. Here is the changes I made to the vdrburn.sh script. I basically removed invoking the spumux program, and let mplex write the .mpg file directly. PS: I am not using TCMPLEX, so I only made change to the one using mplex.
if [ "$USE_TCMPLEX" == "yes" ]; then convert "$2/menu-bg-$3.png" pnm:- | ppmtoy4m -n 1 -F30000:1001 -A 10:11 -I t -L -r -v 0 | mpeg2enc -q 2 -a 2 -n n -f 8 -v 0 -o "$2/menu-bg-$3.m2v" && tcmplex -i "$2/menu-bg-$3.m2v" -p "$4/menu-silence.mp2" -m d -o /dev/stdout | spumux -v 2 "$2/menu-$3.xml" > "$2/menu-bg-$3.mpg" else //convert "$2/menu-bg-$3.png" pnm:- | // ppmtoy4m -n 1 -F30000:1001 -A 10:11 -I t -L -r -v 0 | // mpeg2enc -q 2 -a 2 -n n -f 8 -v 0 -o "$2/menu-bg-$3.m2v" && // mplex -f 8 -vbr -v 1 -o /dev/stdout "$2/menu-bg-$3.m2v" "$4/menu- silence.mp2" | // spumux -v 2 "$2/menu-$3.xml" > "$2/menu-bg-$3.mpg"
convert "$2/menu-bg-$3.png" pnm:- | ppmtoy4m -n 1 -F30000:1001 -I t -A 10:11 -L | mpeg2enc -f 8 -n p -o "$2/menu-bg-$3.m2v" && mplex -f 8 -vbr -v 1 -o $2/menu-bg-$3.mpg "$2/menu-bg-$3.m2v" "$4/menu- silence.mp2"