On 9/1/05, Sebastian Frei <Sebastian@schnapsleichen.de> wrote:
Am Donnerstag 01 September 2005 02:17 schrieb Peace Monk:
> 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.
>
I have exactly the same problem with vdrconvert. It is somehow related with
dvdauthor. But until now I had not the time to look at it.



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"