A new OS experience

2008-05-02

Image Magick Update

I couldn't find ImageMagick in the repositories, and the version I had was old:

$ convert --version

which returned ImageMagick-6.1.4

I downloaded ImageMagick 6.4.1 from their site and built it from source:

$ sudo tar -zxvf ImageMagick-6.4.1-0.tar.gz
$ cd ImageMagick-6.4.1
$ sudo ./configure
$ sudo make
$ sudo make install

and verfied installation:

$ /usr/local/bin/convert logo: logo.gif

This program is part of the requirement for dvd-slideshow.

DVD Creation

I have a bunch of mpeg-s I've been taking for some time, and in switching to linux I had no idea what to use. I've been searching around and the penultimate tools seems to be dvdauthor and it seems nearly every other tool to create video DVDs is based on dvdauthor. Alongside dvdauthor, a set of useful tools can be beneficial including Mjpeg Tools, FFMpeg, Toolame, Vrobistools, and Kino.

There are also tools out there that make it possible to create DVD slideshows such as dvd-slideshow. It's requirements are dvdauthor, Mjpegtools, ImageMagick, urw-fonts, ffmpeg, mkisofs, dvdrecord from dvdrtools, and the following codecs lame, oggdec, and toolame.

To preview and play the DVDs mplayer can be used, albeit a command line tool.