How to create a DVD that plays in a loop
With DVDBuilder, it is possible to create a DVD that plays in a loop. That can be done via the postNavigate
attribute of the <title>
element. The postNavigate
attribute specifies the action to be taken after the title playback is completed.
Example
This is a sample XML project that will play the file “movie.mpg” in a loop:
<?xml version="1.0" encoding="utf-8"?>
<dvd version="2.3" xmlns="http://www.primosoftware.com/dvdbuilder/2.3">
<videoManager firstPlayNavigate="Title = 1">
</videoManager>
<titleSet>
<titles>
<title id="1" chapters="00:00:00;" postNavigate="Title = 1">
<videoObject file="movie.mpg" />
</title>
</titles>
</titleSet>
</dvd>