DVDBuilder for C++  3.4
DVD Authoring Software Development Kit
<videoManager> Element

Description

Configures the DVD video manager.

<videoManager
   firstPlayNavigate="Menu=id;|Title=id;">
   <menus>
   <firstPlayCommands>
<videoManager/>
Required Attributes
Attribute Option Description
firstPlayNavigate This is the command that a DVD player executes when a disc is loaded into the DVD player.
Menu=id;

Navigates to a video manager menu or a titleset root menu with ID equal to "id". The DVD player will automatically display the selected menu.

Example: Menu=50001;

Title=id;

Navigates to a Title with ID equal to "id". The DVD player will automatically play the first chapter of the selected title.

Example: Title=1;

Child Elements
Element Description
<menus> Configures the menus of the DVD video manager.
<firstPlayCommands> Specifies the commands to be executed when the DVD player starts.

Remarks

If <firstPlayCommands> child element is specified then the attribute "firstPlayNavigate" is not required. If both <firstPlayCommands>child element and attribute "firstPlayNavigate" are specified then the program will use only the <command>child element.

Example

The following example shows <videoManager> configuration that will play the title with ID=1 when a disc is loaded into a DVD player.

<?xml version='1.0' encoding='utf-8'?>
<dvd version='2.3' xmlns='http://www.primosoftware.com/dvdbuilder/2.3'>
<videoManager firstPlayNavigate='Title=1'/>
<titleSet>
<titles>
<title id='1' chapters='00:00:00;'>
<videoObject file='1.mpg'/>
</title>
</titles>
</titleSet>
</dvd>