Log in

View Full Version : Mixing cutting videos


jpsdr
15th August 2008, 16:11
Hello.

I want to do something "simple", but i've no idea how to
do it !

I want to split 2 video in half, and mix them to one.
I explain with an exemple.
I've 2 640x480 videos, named src1 and src2.
I want to produce a 640x480 video, having on the left
the left 320x480 part of src1, and on the right, the right
320x480 part of src2.
Having a vertical black line splitting them in two would be
a big bonus.

Is this possible under avisynth ?
If yes, can someone prodive me an exemple script file ?

Also, if someone know a premiere (v6.5) plugin wich can
do that, i'm also interested.

Thanks.

Guest
15th August 2008, 16:19
vid1=avisource("vid1.avi").crop(as needed)
vid2=avisource("vid2.avi").crop(as needed)
stackhorizontal(vid1,vid2)

You can work out the "as needed" numbers. :)

To add a black bar, use BlankClip to make one and then do two successive stacks to stack them all together.

jpsdr
16th August 2008, 00:40
Wonderful, thanks.