convert
command can make the mpeg video from the several pictures.
For example:
convert -delay 300 *.png test.mpg
Well, is it possible to add Fade-out and Fade-in effects into the mpeg video by using convert
?
If it is possible, how can I do it?
I'd personally stick to video tools for generating video. Imagemagick is pretty awesome but it's no ffmpeg. ffmpeg (or avconv as it's now known) can handle both frame-stitching and fade options in one go:
If you're not familiar with ffmpeg, here's a quick translation of that command:
ffmpeg also gives you a ton of options about handling audio, codecs, containers, etc that Imagemagick wont, but I'm leaving that well alone. Have a play.
Edit: I was originally making this up on the spot but I can confirm that this works just as expected/described.