-
ffmpeg GIF output ugly.
Am I missing out on some important command line syntax for quality, or is ffmpeg’s GIF encoder really lousy?
Original JPEG :
https://i37.tinypic.com/14bothe.jpgTranscoded into GIF with ImageMagick convert.exe :
https://i33.tinypic.com/juuwaq.gifTranscoded into GIF with ffmpeg.exe :
https://i35.tinypic.com/34y5vgw.jpgYes, I know GIF isn’t targeted on photos. However, with it’s 256 color limit, it still seems able to encode “descent” output through ImageMagick (I also tried another converter, with similar results). Also, when running a color counter on the output, it seems that the ffmpeg-produced GIF only uses 103 colors, whereas encoded by other software go up to the 256 limit. Strange? What am I missing out on? Is ffmpeg GIF buggy or what?
This is my command line:
ffmpeg -i original.jpg -pix_fmt rgb24 output.gif