I've been trying to make a movie using a bunch of png files, however without any success. The following command
convert -delay 100 -loop 0 *.png animation.mpeg
yields
convert.im6: delegate failed `"ffmpeg" -v -1 -mbd rd -trellis 2
-cmp 2 -subcmp 2 -g 300 -i "%M%%d.jpg" "%u.%m" 2> "%Z"' @
error/delegate.c/InvokeDelegate/1065.
The odd thing is that I am successfully be able to make a gif using the following command
convert -delay 100 -loop 0 *.png animation.gif
Does anybody know how to solve this problem?