---- Get the mpeg2 file off the Replay using DVArchive. --- Run it through evtdump: evtdump source.evt > source.evt --- Use rtvedit to chop it up into separate files for each chunk between commercials: rtvedit source.evt ---- Use rtvconvert to demux the stream: rtvconvert -d source.mpg dest This will generate two files: dest.m2v and dest.mp2 ---- Generate a DVD compatible mpeg file: mplex -t DVD -i ES_STREAM -o dest.mpg dest.mp2 dest.m2v ---- Create a dvdauthor XML file to define the structure of the DVD. Example: ---- Create the DVD filesystem: dvdauthor -o dvdvol -x dvd.xml ---- Create the image to burn to DVD: mkisofs -dvd-video -o dvd.iso dvdvol ---- Burn the DVD dvdrecord -v -eject speed=4 dev=0,0,0 -dao dvd.iso