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
Peace Monk wrote:
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.
What version of libmagick?
Re.
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.
What version of libmagick?
libmagic1-4.10-2 (Mandrake rpm).
Peace Monk wrote:
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.
What version of libmagick?
libmagic1-4.10-2 (Mandrake rpm).
You might want to be sure that dvdauthor compiles correctly with that version of libmagick. I am using 6.0.6.2-2.4. dvdauthor is what creates your menus.
Re,
You might want to be sure that dvdauthor compiles correctly with that version of libmagick. I am using 6.0.6.2-2.4. dvdauthor is what creates your menus.
Hmm.. they are RPM installs, and used to work fine with version burn version 0.0.5. I will try and do a seperate compile of dvdauthor and see if it works with burn.
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.
S.
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"