I found several questions with answers on how to create a video from images. I setup two of them and was able to produce the videos correctly. I tried the following:
ImageMagick convert -delay 100 -quality 75 photo1.jpg photo2.jpg movie.mpg
FFMPEG ffmpeg -r 10 -b 1800 -i photo1.jpg photo2.jpg movie.mpg
The end result is the video displaying images with timing, no effects. I looking to learn how they add a Fade In and Fade Out Transition between those images.
I doubt this can be done by either library out of the box, short of creating every frame one by one. Both libraries don't really focus on Video effects.
One command line solution I can see is dvd-slideshow:
It can output DVD (MPEG-something) and FLV among other this. You may have to do two transitions, but you should be able to build any kind of video file using a combination of this and ffmpeg.