Log in

View Full Version : Stacking Horizontally In AVISynth


Geewhzz
23rd February 2002, 22:57
Anyone know how to do this? Or have any walkthroughs on how to script it and make it work?

I'm new to AVISynth and have no clue how to use it.

What I'm trying to do is take 2 AVIs, 1.avi and 2.avi and join them into one avi but have them one on top of the other.

madoka
24th February 2002, 08:10
v1 = AVISource("1.avi")
v2 = AVISource("2.avi")
StackVertical(v1, v2)
OR
StackHorizontal(v1, v2)

You wrote "horizontally" in the subject yet you wrote "one on top of the other" in the message body, so make up your mind and use the corrosponding function. ;)

Maybe you should check out the AviSynth reference (do a Google search) before asking this.