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

Description

Configures a Video Title Set.

<titleSet>
   <menus>
   <titles>
   <audioStreams>
   <subpictureStreams>
</titleSet>
Child Elements
Element Description
<menus> Configures the menus of a title set.
<titles> Configures the titles of a title set.
<audioStreams> Configures the audio streams of a title set.
<subpictureStreams>

Configures the sub-picture/subtitle streams of a title set.

Remarks

There can be a maximum of 99 Video Title Sets (VTS) numbered from 01 to 99 on a DVD. Each title set can have up to 10 Video OBjects (VOB) and menus. Each Video Title Set must have at least 1 Video Object. A Video Title Set is a container for a number of Titles. The maximum number of Titles on a DVD is also 99 - these can be all in one Video Title Set or spread across multiple title sets.

Example

The following example shows the project file for a DVD with two titles grouped in two title sets.

<?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>
<titleSet>
<titles>
<title id='2' chapters='00:00:00;'>
<videoObject file='2.mpg'/>
</title>
</titles>
</titleSet>
</dvd>