DVto DVDIntroductionSuppose you have your DV material you want to turn into a DVD somewhere on your linux system. Use Kino to edit your materialSee Use transcode to get your MPEG2/MP3 streamsThe SMIL file in this example is called movie_smil.xml, the output files will be called like this:
transcode \ -J smartdeinter=highq=1:threshold=3:cubic=1 \ -i movie_smil.xml -y mpeg2enc,mp2enc \ -F "8, -b 9000 -r 24 -4 2 -2 1 -f 8" -o my_video_output Use mplex to multiplex your streamThis multiplexes ("joins") the two streams from the previous step into one (split) file:
Each one of these files is max. 2000 megabytes in size. mplex --format 8 -o my_video_mulitplexed_%d my_video_output.m2v my_video_output.mpa Use dvdauthor to create the DVD layoutThis step produces the VOB and IFO files for the DVD. Save the following content as my_video_dvd.xml. Add as many <vob/> tags as multiplexed file pieces you have-
<dvdauthor>
<vmgm />
<titleset>
<titles>
<pgc>
<vob file="my_video_mulitplexed_1" chapters="0" />
<vob file="my_video_mulitplexed_2" />
</pgc>
</titles>
</titleset>
</dvdauthor>
Now run this: dvdauthor -o my_video_dvd_layout -x my_video_dvd.xml All files will now be placed into the automatically created sub-directory called my_video_dvd_layout. Use mksisofs to generate the DVD ISOmkisofs --dvd-video -o my_video_dvd.iso my_video_dvd_layout This will produce a DVD video compliant DVD image in a file called my_video_dvd.iso. What now?Use any burning software to burn the my_video_dvd.iso file to a DVD or CD (if it's small enough). © Copyright 2004 - 2006 Nicola Fankhauser. All Rights Reserved. |