[SLUG] looking for a command to composite sequentially numbered files

2008-04-13 Thread elliott-brennan
Hi all, Okay, I've googled about this too... My example is as follows. I have a collection of images I wish to superimpose another image over. Each of the images is a sequence in a video. I've collected the stream as sequentially numbered stills. I wish to superimpose an image (of a frame)

Re: [SLUG] looking for a command to composite sequentially numbered files

2008-04-13 Thread Alex Samad
On Mon, Apr 14, 2008 at 02:24:50AM +1000, elliott-brennan wrote: Hi all, [snip] $ for i in `seq 1 999`;do j=`printf %04d $i`; composite -compose atop bubbles.png 0*.png image$j.png; done but I get the following error: bash: syntax error near unexpected token `do' works here for i in

Re: [SLUG] looking for a command to composite sequentially numbered files

2008-04-13 Thread Richard Heycock
Excerpts from Alex Samad's message of Mon Apr 14 07:13:12 +1000 2008: On Mon, Apr 14, 2008 at 02:24:50AM +1000, elliott-brennan wrote: Hi all, [snip] $ for i in `seq 1 999`;do j=`printf %04d $i`; composite -compose atop bubbles.png 0*.png image$j.png; done but I get the following