I've tried to look for programs that would enable you to "conjoin" two or more videos to play simultaneously but haven't had any luck. I also tried the search bar to see if there was anything like that in this forum, but couldn't find what I was looking for. Anyway, I was just wondering if any of you knew of a program that could let you import 2 or more video files and make merge them with their audio for a split screen kind of deal. Like this video...
http://youtube.com/watch?v=1HwurUBRnyg
Thanks in advance.
+ Reply to Thread
Results 1 to 11 of 11
-
-
That effect is called a "Quad Split". Are you looking to do just that or more general layering where dozens of elements are stacked like this along with their shadows?
What are you willing to spend? Programs like Premiere Pro or Vegas Pro handle this as routine. Consumer versions limit layers to two or three.
The most difficult "art" of video effects is translating "vision" into detailed storyboard so the techies can work their magic.
http://en.wikipedia.org/wiki/Compositing
http://en.wikipedia.org/wiki/Alpha_compositingRecommends: Kiva.org - Loans that change lives.
http://www.kiva.org/about -
Originally Posted by SamZeeRecommends: Kiva.org - Loans that change lives.
http://www.kiva.org/about -
What I would do is, have like 3 video files of me playing the different parts of a song simultaneously, so have like the top half of the screen be something, then 2 different things below it. Kind of like that
-
Originally Posted by SamZee
You can do this one layer over backgound at a time with loss each pass or all at once with more expensive software.
Google "video quad split" to see if anything simple is out there.Recommends: Kiva.org - Loans that change lives.
http://www.kiva.org/about -
AviSynth works via text scripts. You creat the scripts with a text editor (Notepad) and then open the scripts with your encoder -- as if was a video file.
Code:v1=AviSource("video1.avi") v2=AviSource("video2.avi") v3=AviSource("video3.avi") v4=AviSource("video4.avi") StackVertical(StackHorizontal(v1, v2), StackHorizontal(v3, v4))
You can use AvsP to help you create scripts. -
Hey Guys.
Im a noob to video editing. the most Ive messed with was movie maker. How ever id like to do something similar. Except Id just like to do a split screen type thing with two clips instead of 4. have the audio overlay and everything. What software would u guys recommend for a noob like mysel that can do this?
Thanks. -
With AviSynth you can do the following to view 2 videos side by side:
Code:v1=AviSource("video1.avi") v2=AviSource("video2.avi") StackHorizontal(v1, v2)
Code:v1=AviSource("video1.avi") v2=AviSource("video2.avi") StackVertical(v1, v2)
Code:v1=AviSource("video1.avi").Crop(180,0,-180,-0) v2=AviSource("video2.avi").Crop(180,0,-180,-0) (StackHorizontal(v1, v2)
Or you could resize and add borders:
Code:v1=AviSource("video1.avi").LanczosResize(360,240) v2=AviSource("video2.avi").LanczosResize(360,240) (StackHorizontal(v1, v2).AddBorders(0,120,0,120)
Similar Threads
-
Help with simultaneous video outputs
By Rob #3 in forum Media Center PC / MediaCentersReplies: 0Last Post: 7th May 2010, 21:53 -
Multiple Simultaneous Video Capture - is it possible?
By PortoLad19 in forum Capturing and VCRReplies: 6Last Post: 31st Jan 2010, 08:10 -
Simultaneous video playout ?
By bertoa in forum MacReplies: 0Last Post: 9th Feb 2009, 08:06 -
How to merge parallel(simultaneous) video streams ?
By buddhikasgj in forum ProgrammingReplies: 0Last Post: 31st Oct 2008, 12:56 -
Single video with multiple simultaneous audio playback
By vhdmi in forum EditingReplies: 0Last Post: 27th Dec 2007, 15:50