VideoHelp Forum




+ Reply to Thread
Results 1 to 5 of 5
  1. I want to split the screen into 4 equal simultaneous movies (top-left/right and bottom-left/right... do I use PIP (picture-in-picture)... do it once, then again, then again, then again...producing a dv-avi each time...will quality degrade doing that... is there a better way... I use PowerDirector 5.0 (Cyberlink)... is there a program that does this?
    Thanks in advance.
    Quote Quote  
  2. Member dipstick's Avatar
    Join Date
    Jan 2005
    Location
    Dark side of the Moon
    Search Comp PM
    Any NLE that supports multiple video tracks should let you do it. I never used PowerDirector 5.0, so I can't comment on it other than read the support files.

    Premiere, vegas and many more will do this easily. You can also do it for Free with Wax2.
    I stand up next a mountain and chop it down with the ledge of my hand........ I'm a Voodoo child.... Jimi Hendrix,
    Quote Quote  
  3. Always Watching guns1inger's Avatar
    Join Date
    Apr 2004
    Location
    Miskatonic U
    Search Comp PM
    If you have avisynth installed, look up the help files for stack, or search this forum for it. I have seen a couple of posts that have scripts to do just what you need.
    Read my blog here.
    Quote Quote  
  4. VH Veteran jimmalenko's Avatar
    Join Date
    Aug 2003
    Location
    Down under
    Search PM
    Originally Posted by guns1inger
    If you have avisynth installed, look up the help files for stack, or search this forum for it. I have seen a couple of posts that have scripts to do just what you need.
    https://www.videohelp.com/forum/userguides/99389.php#crop



    Code:

    AVISource("e:cap.avi")
    q1=crop(0,0,360,288)
    q2=crop(360,0,360,288)
    q3=crop(0,288,360,288)
    q4=crop(360,288,360,288)
    l1=StackHorizontal(q4,q3)
    l2=StackHorizontal(q2,q1)
    StackVertical(l1,l2)
    With 4 seperate videos, you'd need to do something like the following:

    q1=AVISource("e:cap1.avi")
    q2=AVISource("e:cap2.avi")
    q3=AVISource("e:cap3.avi")
    q4=AVISource("e:cap4.avi")
    l1=StackHorizontal(q4,q3)
    l2=StackHorizontal(q2,q1)
    StackVertical(l1,l2)
    If in doubt, Google it.
    Quote Quote  
  5. Member gadgetguy's Avatar
    Join Date
    Feb 2002
    Location
    West Mitten, USA
    Search Comp PM
    With 4 seperate videos, you'd need to do something like the following:

    q1=AVISource("e:cap1.avi")
    q2=AVISource("e:cap2.avi")
    q3=AVISource("e:cap3.avi")
    q4=AVISource("e:cap4.avi")
    l1=StackHorizontal(q4,q3)
    l2=StackHorizontal(q2,q1)
    StackVertical(l1,l2)
    ... and you'll have to resize to fit it on the screen.
    You can resize using Lanczos4resize. You have the option of resizing the whole thing after the StackVertical, or you can resize each video to a quarter of the screen size before the Stack commands. Try them both to see which works better with your specific videos.
    "Shut up Wesley!" -- Captain Jean-Luc Picard
    Buy My Books
    Quote Quote  



Similar Threads

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