StopMotion is to slow to load my projects. There are examples on the web of how to create time laps videos from the command line but they either do not work or are not effective for what I need. Reading up on Mencoder at this Link I think that the command offers a solution. At the bottom of the page it recommends options for .H264 and MPEG4 encoding.
MPEG4
mencoder -nosound -ovc lavc -lavcopts vcodec=mpeg4:mbd=2:mv0:trell:v4mv:cbp:last_pred=3:predia=2:dia=2:vmax_b_frames=2:vb_strategy=1:precmp=2:cmp=2:subcmp=2:preme=2:qns=2 -mf type=png:fps=15 mf://*.png -o MPEG4.15fps.avi
This worked but the quality wasn’t great and I couldn’t find examples of how to improve it.
MJPEG
mencoder -nosound -ovc lavc -lavcopts vcodec=mjpeg -o MJPEG.15fps.avi -mf type=png:fps=15 mf://*.png
.H264
mencoder -nosound -ovc x264 -x264encopts subq=6:partitions=all:8x8dct:me=umh:frameref=5:bframes=3 -mf type=png:fps=15 mf://*.png -o H264.15fps.avi
I altered examples found on the Internet for .H264 and PNG, but removed options b_pyramid:weight_b. Good quality and small file, best of both worlds. Not perfect but without more information it is the best I can come up with. I added -vf scale=1920:1080 for HD resizing.
Conclusion
I need to read more. Somewhere there is an example with the settings I need for better video output. StopMotion is a good GUI tool but is very slow. The command is much faster if not easy to setup.




