hi PyRoMaNiA,
You can do that with a script like this:
Code:
#==============================================#
# -= AviSynth script by MovieStacker v1.1.1 =- #
#==============================================#
LoadPlugin("D:\Program Files\video tools\MovieStacker_v1.1.1\MovieStacker\Filters\MPEG2Dec.dll")
a=Mpeg2Source("C:\clipa.d2v").BilinearResize(528, 366, 14, 0, 692, 480).
\AddBorders(0, 57, 0, 57)
b=Mpeg2Source("C:\clipb.d2v").BilinearResize(528, 366, 14, 0, 692, 480).
\AddBorders(0, 57, 0, 57)
c=a+b
convertToYUY2(c)
The two clips need to be the same resolution though.
ren