1. How can you create, in DVD Maestro, dynamic subpictures (Animated Buttons) on a DVD menu with a static background image?
2. Is there an undo option in DVD Maestro?
Thanks
+ Reply to Thread
Results 1 to 11 of 11
-
-
1. What sort of animation are you talking about? You can have motion buttons but as far as I know you cannot animate the sub picture.
2.try ctrl-z. -
I would like to create a menu, with multiple buttons, where each button is a picture representing the beginning of a chapter. I would like those pictures to be dynamic (video, lasting about 10 sec). Clicking on those buttons should start playing the chapter they are linked to.
Thanks -
What you want can be done, but not in Maestro. You need to create a menu video, then map the buttons in Maestro.
ICBM target coordinates:
26° 14' 10.16"N -- 80° 16' 0.91"W -
this sure can be done in maestro. i just did this on a DVD of my own. you must first create a movie file in an editing software with the little clips shrunk to the size you want and then you can put a still background picture behind those videos in the editing software and render it to a dvd video file and then just create the menu as normal. the subpicture can still be a still image too. i dont know what editing software you have, but if you use premiere i could help you out more.
-
Maybe I wasn't clear on my last response. Maestro can IMPORT and USE your magical movie button video, but it CANNOT create it on its own. You'll have to use something like AfterFX, or like I use, an AVISynth script.
ICBM target coordinates:
26° 14' 10.16"N -- 80° 16' 0.91"W -
Originally Posted by BJ_MICBM target coordinates:
26° 14' 10.16"N -- 80° 16' 0.91"W -
Originally Posted by Zetti
it was a question -- not a statement ..
i would use a NLE to do this -- but if someone can use AVISynth , all the power to them (far far far better than I with scripting)"Each problem that I solved became a rule which served afterwards to solve other problems." - Rene Descartes (1596-1650) -
Here's a script I used years ago. It has a static background (RED_V5_BG.BMP), a black and white mask (MENU_MASK_BG.BMP) and a video clip (OT). The mask defines areas where one part shows (the "white" area) and the area where the other part shows (the "black" area). Read the AVISynth manual for more info on LAYERS and MASKS. The end result is a video that fades in in the area that the MASK defines, then fades back out at the end. This is for a single video in the menu, but you could add other overlay areas for more videos.
LoadPlugin("e:\program files\mpeg2dec\mpeg2dec.dll")
OT=mpeg2source("H:\MENUS\SINGA.D2V")
LEN=1250
TOP=converttoRGB32(OT)
BASE=converttoRGB32(IMAGESEQUENCE("H:\MENUS\RED_V5 _BG.BMP",1,1,24).loop(LEN))
MASK_CLIP=converttoRGB32(IMAGESEQUENCE("H:\MENUS\M ENU_MASK_BG.BMP",1,1,24).loop(LEN))
overlay_clip=MASK(top,mask_clip)
out=layer(base,overlay_clip,"add",255,0,0,0)
converttoyuy2(out)
out2=fadeout2(out,42)
out3=reverse(fadeout2(reverse(out2),48))ICBM target coordinates:
26° 14' 10.16"N -- 80° 16' 0.91"W
Similar Threads
-
Editing the commands of the buttons on the DVD menu?
By rone in forum Authoring (DVD)Replies: 24Last Post: 18th Jun 2011, 04:35 -
Active Buttons on DVD Menu
By dartmanx in forum Authoring (DVD)Replies: 1Last Post: 22nd Jun 2009, 04:53 -
GUI for dvdauthor Animated Menu Buttons
By deco81 in forum Authoring (DVD)Replies: 3Last Post: 6th Dec 2008, 18:41 -
Is it possible to make animated buttons and info box?
By leffe in forum Authoring (DVD)Replies: 5Last Post: 17th Sep 2007, 17:53 -
Animated Buttons
By Paulodemoc in forum Authoring (DVD)Replies: 3Last Post: 27th May 2007, 15:39