Can someone tell me how to take 4 video clips, make each of them be a 1/4 size and have each clip play in one corner of of the screen.
AND, this might sound dumb, but: do I have to take into consideration how much stuff I have moving?
(i.e. because some players will struggle to play that much on screen all at once???)
Any replies would be appreciated.
Thanks.
OM
+ Reply to Thread
Results 1 to 8 of 8
-
-
I would use Avisynth using the Lanczos4Resize, StackVertical, and StackHorizontal commands.
"Shut up Wesley!" -- Captain Jean-Luc Picard
Buy My Books -
Live or as an edit?
For live what you want is a "quad split". I'd start with Extron for dedicated hardware.
If edit, most programs will allow you to build the effect in four passes.Recommends: Kiva.org - Loans that change lives.
http://www.kiva.org/about -
thanks for the replies.
can i use vitrualdubmod?
live????
wow... that sounds kewl.
but... would that be only for professional tv channels?
what else? cctv?? if cctv... doesn'tt hat mean a lot of programming to interface witht he cameras...? -
Originally Posted by OM2
-
"Shut up Wesley!" -- Captain Jean-Luc Picard
Buy My Books -
The script would look something like this:
A = aviSource(Clip1)
B = aviSource(Clip2)
C = aviSource(Clip3)
D = aviSource(Clip4)
A = Lanczos4Resize(A, halfwidth, halfheight)
B = Lanczos4Resize(B, halfwidth, halfheight)
C = Lanczos4Resize(C, halfwidth, halfheight)
D = Lanczos4Resize(D, halfwidth, halfheight)
Top = StackHorizontal(A,B)
Bottom = StackHorizontal(C,D)
StackVertical(Top,Bottom)"Shut up Wesley!" -- Captain Jean-Luc Picard
Buy My Books
Similar Threads
-
How to put black colour on screen without re-encoding?
By swalih in forum EditingReplies: 6Last Post: 16th Feb 2012, 03:44 -
How to put clips together in AVCHD/m2ts format?
By vpelton in forum Newbie / General discussionsReplies: 2Last Post: 17th Jan 2011, 08:31 -
is there a DV editor that can import all clips and put them in order?
By Onceler2 in forum EditingReplies: 0Last Post: 15th Oct 2010, 21:38 -
Free Green screen clips
By Eaglebot in forum Newbie / General discussionsReplies: 2Last Post: 12th May 2009, 18:17 -
How to change the subtitle position?How to put it on the top of the screen?
By user2008 in forum Newbie / General discussionsReplies: 3Last Post: 12th Feb 2009, 06:07