I have four video files (H264 - avi) from different small cameras I would like to combine them into a single video, so I'm looking for a (free? portable?) software that can get these concurrent four avi files and then combine them to a single avi (with 4 areas, please see the example attached). Synching and joining capabilities are a surplus.
Can you help me? I can't find anything doing this.
Thanks
+ Reply to Thread
Results 1 to 5 of 5
-
-
Any NLE should be able to do that. Doing it in AviSynth is easy although it uses text based scripts:
Code:ch1 = AviSource("channel1.avi") ch2 = AviSource("channel2.avi") ch3 = AviSource("channel3.avi") ch4 = AviSource("channel4.avi") StackVertical(StackHorizontal(ch1, ch2), StackHorizontal(ch3, ch4))