You could do that like this:
Code:
DirectShowSource("C:\My Documents\movie_1.mpg) ++
\DirectShowSource("C:\My Documents\movie_2.mpg) ++
\DirectShowSource("C:\My Documents\movie_3.mpg) ++
\DirectShowSource("C:\My Documents\movie_4.mpg) ++
\DirectShowSource("C:\My Documents\movie_5.mpg) ++
\DirectShowSource("C:\My Documents\movie_6.mpg) ++
each source has to be the same resolution but if they're not, you can resize each seperately like this:
Code:
a=AviSource("C:\My Documents\movie_1.avi",false). LanczosResize(528, 462, 2, 0, 476, 352)
b=AviSource("C:\My Documents\movie_2.avi",false). LanczosResize(528, 462, 2, 0, 476, 352)
c=AviSource("C:\My Documents\movie_3.avi",false). LanczosResize(528, 462, 2, 0, 476, 352)
d=AviSource("C:\My Documents\movie_4.avi",false). LanczosResize(528, 462, 2, 0, 476, 352)
e=AviSource("C:\My Documents\movie_5.avi",false). LanczosResize(528, 462, 2, 0, 476, 352)
f=AviSource("C:\My Documents\movie_6.avi",false). LanczosResize(528, 462, 2, 0, 476, 352)
movie=a+b+c+d+e+f
AddBorders(movie, 0, 9, 0, 9)
ren