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

Description

The root element in every project file used by DVDBuilder.

<dvd version='2.3' xmlns='http://www.primosoftware.com/dvdbuilder/2.3'>
   <videoManager>
   <titleSet>
</dvd>
Required Attributes
Attribute Description
version Runtime version. Must be set to 2.3
xmlns XML namespace. Must be set to http://www.primosoftware.com/dvdbuilder/2.3
Child Elements
Element Description
<videoManager> Configures the Video Manager (VMG).
<titleSet> Configures a Video Title Set (VTS). There can be up to 99 VTS per DVD disc.

Remarks

A DVD compliant disc contains one Video Manager and multiple Video Title Sets.

Example

The following example shows a simple DVD project file.

<?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>