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

Description

Specifies an audio stream.

<audioStream file="file" format="format" />
Required Attributes
Attribute Description
file Specifies an audio elementary stream file.
format Specifies the audio elementary stream format. It must be AC3, MPA or DTS.

Example

The following example shows a DVD with one movie. Note that the version attribute in the <dvd> tag is set to 2.3, because the <audioStream> and <videoStream> tags require DVDBuilder project schema 2.2 or later.

<?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='EN' mpegStreamID='0xC0' mpegSubstreamID='0x00'/>
</audioStreams>
<titles>
<title id='1' chapters='00:00:00'>
<videoObject>
<audioStream file='movie1.mpa' format='MPA'/>
<videoStream file='movie1.mpv' />
</videoObject>
</title>
</titles>
</titleSet>
</dvd>