Search found 2 matches

by skeltoac
2011-05-06T12:35:28-07:00
Forum: Users
Topic: FIFO thumbnail
Replies: 3
Views: 6486

Re: FIFO thumbnail

try convert - -thumbnail "200x200>" -write $THUMBNAIL miff:- Getting convert to write to stdout is no problem. The issue is that it starts output only after the entire image has been read on stdin. (The same is true for stream AFAICT.) I'm looking for a way to output a thumbnail one line at a time ...
by skeltoac
2011-05-06T11:25:53-07:00
Forum: Users
Topic: FIFO thumbnail
Replies: 3
Views: 6486

FIFO thumbnail

I'm trying to produce thumbnails in real-time. It must read input as available and flush output as frequently as possible. For example, if I'm reducing by 50%, I want one line of output every time two lines of input are read. No waiting for the entire image to load. Reduced sampling quality is ...