VideoHelp Forum




+ Reply to Thread
Results 1 to 5 of 5
  1. Member
    Join Date
    Jul 2014
    Location
    Italy
    Search PM
    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
    Image Attached Thumbnails Click image for larger version

Name:	videoresult.jpg
Views:	424
Size:	125.1 KB
ID:	26542  

    Quote Quote  
  2. 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))
    Then open the script in any editor/encoder/player that supports AviSynth input.
    Quote Quote  
  3. Member
    Join Date
    Jul 2014
    Location
    Italy
    Search PM
    this is quite awesome! THANKS!
    Quote Quote  
Visit our sponsor! Try DVDFab and backup Blu-rays!