VideoHelp Forum
+ Reply to Thread
Results 1 to 2 of 2
Thread
  1. This is going to sound strange, but here goes. I have 4 video clips, videoA, videoB, videoC and videoD, each 1920x270 and the same length (# frames). I want to merge them into one 1920x1080 video

    BUT

    for each frame, I want to interlace each line from each video like so:

    videoA-line1
    videoB-line1
    videoC-line1
    videoD-line1
    videoA-line2
    videoB-line2
    videoC-line2
    videoD-line2
    ... etc until there are 1080 lines

    how can I do this using avisynth?
    Quote Quote  
  2. Like this:

    Code:
    A=WhateverSource("A.EXT")
    B=WhateverSource("B.EXT")
    C=WhateverSource("C.EXT")
    D=WhateverSource("D.EXT")
    
    Interleave(A,C,B,D)
    AssumeFieldBased()
    AssumeTFF()
    Weave()
    AssumeFieldBased()
    AssumeTFF()
    Weave()
    Quote Quote  



Similar Threads

Visit our sponsor! Try DVDFab and backup Blu-rays!