I need to take 2 different short movies and fuse or overlay them together so that one sees both sets of images on top of each other as it plays. This probably would have to be done by making one more transparent to the other (or both equally transparent). Someone at work suggested using a fade-in tool, but that seems to only work when transitioning from one movie to the next in line. What program or tool would let me do this?
Mike
+ Reply to Thread
Results 1 to 4 of 4
-
-
Originally Posted by Sniffy
A = top layer
B = background
New pixel = A x alpha x (B x (1-alpha))
Where alpha = foreground transparency
If you want both equally transparent, you would set foreground alpha to 0.5.
Separate from alpha, a mask can be applied to restrict the foreground over an area defined by the mask. You can also modify the edge of the mask to be a blend or other.
The mask follows a similar formula of
New foreground = Old foreground x mask x (background x (1 - mask))
All compositing special effects use this technique. -
What program or tool would let me do this?
The Overlay command in AviSynth:
http://www.avisynth.org/Overlay
Similar Threads
-
overlaying an image to a video
By videolearner1234 in forum EditingReplies: 3Last Post: 13th Jan 2009, 12:18 -
Overlaying two objects
By niritav in forum EditingReplies: 4Last Post: 21st Oct 2008, 17:24 -
Weird horizontal line on top of the black area when playing movies(screen).
By Nitrius in forum Software PlayingReplies: 2Last Post: 23rd Aug 2008, 13:12 -
Why do some Widescreen Movies still have black bars top and bottom?
By the_importer in forum DVD & Blu-ray PlayersReplies: 3Last Post: 13th Dec 2007, 09:09 -
Overlaying EXIF data onto video
By fredfillis in forum Newbie / General discussionsReplies: 6Last Post: 12th Jul 2007, 04:37