Android, split gif to frames with ffmpeg

2019-06-04 23:57发布

I need to split my gif file to separate frames of any format (gif, png, doesnt matter).

ffmpeg -i path/to/gif -c:v gif -f image2 path/to/output$03d.gif

this command really splits gif to frames, but only first frame have a normal quality. All other frames looks like some damaged images

enter image description here

library I use is com.writingminds:FFmpegAndroid:0.3.2

What should Ido to get all frames with normal quality

1条回答
来,给爷笑一个
2楼-- · 2019-06-05 00:32

Use

ffmpeg -i path/to/gif -vsync 0 path/to/output$03d.png
查看更多
登录 后发表回答