DVD authoring adventures

Dan Moren on Six Colors walks through his use of ffmpegX to convert a video to MPEG2 format for DVD.

An alternative to ffmpegX is to use ffmpeg directly from the command line. If you have used Don Melton's transcode-video tools (and you definitely should) you will have already installed ffmpeg via Homebrew.

To do the conversion open a terminal and type the following replacing "source-video.mkv" and "destination-video.mpg" with your own source and destination file names:

ffmpeg -i "source-video.mkv" -target ntsc-dvd  "destination-video.mpg"

Oh and make sure you set your target for your region, either PAL (pal-dvd) or NTSC (ntsc-dvd).

Now to creating your DVD. Burn is still around for OSX and working great on El Capitan for burning DVD's. It also lets you add DVD menus from a selection of themes. Simply drag your new file into the "Video" tab to burn your DVD and again make sure your region is set to either NTSC or PAL in the preferences.

Tags:
 link