A sample DVDBuilder project that uses elementary streams

by Valentin K. 21. September 2010 07:13

The following example shows a DVD that has one title made of a video object using audio/video elementary streams. Note that the version attribute in the <dvd> tag is set to 2.1.1.1, because the <audioStream> and <videoStream> tags require DVDBuilder 2.1.1.1 or later. 


<?xml version="1.0" encoding="utf-8"?>
<dvd version="2.1.1.1" xmlns="http://www.primosoftware.com/dvdbuilder">
  <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>

For more information, see the <videoObject> Element section from the DVDBuilder online documentation.

Tags: ,

DVDBuilder