How to create a dvd structure with a mpg file
Feb 7, 2011
1 minute read

How to create a dvd structure with a mpg file

First, you’ll need dvdauthor :

aptitude install dvdauthor

Next, you’ll have to create an xml (file.xml) file for dvdauthor :

<dvdauthor>
    <vmgm />
    <titleset>
        <titles>
            <pgc>
                <vob file="file.mpg" />
            </pgc>
        </titles>
    </titleset>
</dvdauthor>

Finally, launch dvdauthor and wait, you’ll have a directory with AUDIO_TS and VIDEO_TS structure :

dvdauthor -o file -x file.xml


comments powered by Disqus