On Monday, December 15 2008, 17:28 (-0200), Manuel Quiñones wrote:
> > Manuel,
> > don't worry. I think this is very on-topic.
> > Cin's Manual agrees:
> > http://cinelerra.org/docs/split_manual_en/cinelerra_cv_manual_en_20.html#SEC284
> > ("How to burn a DVD" section)
> 
> and that is a nice reference for schoappied, the one who asked this question.

For me, the most straightforward way of creating a DVD from a video
project is:

- Export in the highest possible quality from Cinelerra (preferably
  uncompressed YUV2 video and PCM audio in a QuickTime container) 
  to, say, "video.mov"

- run a two pass ffmpeg encoding to transcode the high quality 
  video master file into DVD-compatible MPEG video file:

  ffmpeg -i video.mov -target pal-dvd -pass 1 video.mpg
  ffmpeg -i video.mov -target pal-dvd -pass 2 -y video.mpg

- create the following simple text file and save it as dvdauthor.xml:

<dvdauthor dest="VIDEO">
       <vmgm />
         <titleset>
           <titles>
             <video format="pal" aspect="16:9" />
               <pgc>
                 <vob file="video.mpg"/>
               </pgc>
             </titles>
           </titleset>
         </dvdauthor>

- run:
  dvdauthor -x dvdauthor.xml
  [This creates a directory "VIDEO" containing the DVD file structure.]

- run:
  growisofs -dvd-compat -dvd-video VIDEO
  [This burns the DVD; growisofs is the DVD burn utility that all 
  GUI burn utilities such as k3b, Nautilus etc. run under their hood.]

Of course, all these steps can be trivially automated and run in a
single shell script.

-F

-- 
http://cramer.plaintext.cc:70
gopher://cramer.plaintext.cc

_______________________________________________
Cinelerra mailing list
[email protected]
https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra

Reply via email to