PDA

View Full Version : how to do simple composite add?


FredThompson
13th March 2007, 16:56
I've got 2 320x240 ntsc clips. One is longer than the other.

I'd like to create a single 640x240 clip which is both of the source clips, side by side. The last frame of the shorter clip should be persistent for the duration of the longer clip.

How can this be done with AviSynth?

gzarkadas
13th March 2007, 17:11
This will do the job:

StackHorizontal(clip1, clip2)

FredThompson
13th March 2007, 18:15
danke