Search found 1 match

by jdevelop
2013-11-15T23:28:55-07:00
Forum: Users
Topic: Convert set of images streamed to STDIN into animated GIF
Replies: 2
Views: 4082

Convert set of images streamed to STDIN into animated GIF

Hello!

I have third-party app which writes set of PNG images to STDOUT. Is there any way to get animated GIF from these images? I tried so far

Code: Select all

app | convert png:- output.gif
but that captures only first image and skips all subsequent frames.

Please advice.