<span style="font-weight: bold; font-style: italic;">I'll give </span><font style="font-weight: bold; font-style: italic;">DVDauthor</font><span style="font-weight: bold; font-style: italic;"> a go - is that the windows version?
<br><br></span>No, Linux it's already installed if you've got MythBurn installed. I only used Windows for playing file as sort of a test.<br><br>This is the script:<br><br><font color="black" face="Verdana,Arial,Helvetica" size="2">
<font color="black" face="Verdana,Arial,Helvetica" size="2"><font color="#660066">#!/bin/sh  <br></font><b style="color: black; background-color: rgb(255, 255, 128);">mkfifo</b> aud0  <br><b style="color: black; background-color: rgb(255, 255, 128);">
mkfifo</b> vid0  <br><b style="color: black; background-color: rgb(255, 255, 128);">mkfifo</b> dvdmpg  <br> <br>mpeg2desc -a0 &lt; $1 &gt; aud0 &amp;  <br>mpeg2desc -v0 &lt; $1 &gt; vid0 &amp;  <br>mplex -f 8 -V -o dvdmpg aud0 vid0 &amp;  
<br>dvdauthor -o $2 -f dvdmpg  <br>dvdauthor -o $2 -T  <br> <br>rm aud0  <br>rm vid0  <br>rm dvdmpg  <br><br>and this runs it from the command line:<br><br></font></font><font style="font-weight: bold;" color="black" face="Verdana,Arial,Helvetica" size="2">
<font color="black" face="Verdana,Arial,Helvetica" size="2"># ./makedvd.sh /path_to/input.mpg /path_to/outputdirectory</font></font><br><br><span style="font-weight: bold; font-style: italic;"></span><br><br><br>