Code: Select all
convert -delay 5 -antialias -quality 100% -loop 0 -compress None -density 300 *.png out.mpeg
Any ideas on how I can avoid all compression and retain the quality of the image files?
Code: Select all
convert -delay 5 -antialias -quality 100% -loop 0 -compress None -density 300 *.png out.mpeg
You're the man for replying, but I've made the change in parameter order and there's still some obvious compression going on.fmw42 wrote:try putting your images before the options
convert -delay 5 *.png -antialias -quality 100% -compress None -density 300 -loop 0 out.mpeg
see http://www.imagemagick.org/Usage/basics/#why