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

Description

Configures the audio streams of a title set.

<audioStreams>
   <stream>
</audioStreams>
Child Elements
Element Description
<stream> Adds an audio stream.

Remarks

There can be up to 8 audio streams in a video title set.

Example

The following example shows a DVD that has one title and audio available in two languages: Bulgarian and English. Viewers of this DVD will be able to select Bulgarian or English audio from the language menu of the 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>
<audioStreams>
<stream languageCode='BG' mpegStreamID='0xBD' mpegSubstreamID='0x80'/>
<stream languageCode='EN' mpegStreamID='0xBD' mpegSubstreamID='0x81'/>
</audioStreams>
<titles>
<title id='1' chapters='00:00:00'>
<videoObject file='1.mpg' />
</title>
</titles>
</titleSet>
</dvd>