Pretty much I want to add green screen video and add it over the other one.
I'm pretty sure it needs AviSynth and MeGUI, but I don't know much about them.
What I'm trying to achieve:
1. I already have the videos
2. How do I make them to overlay
3. How to time the green screen one to the other and remove the color (by the way the green screen video will be made by me,
and can it be rendered in Sony Vegas without the green screen, maybe make it somehow like a png without the background)
4. And how to render them
I watched a video of how to add a watermark, but I want to know how to add a video and time it to the other.
+ Reply to Thread
Results 1 to 5 of 5
-
-
Regarding AviSynth, you can learn about Layer and related functions (e.g. ColorKeyMask producing a mask based on RGB tolerance ranges). For a PiP (Picture in Picture) case, you don't even need a mask, just a rectangular area.
To limit this feature to a range of frames, you can use ApplyRange, a special case of Animate. -
Use Corel Videostudio Pro X10 - quick and easy - not like Vegas.
The best is Green Screen Wizard but, you will pay and get what you pay for. http://www.greenscreenwizard.com/ -
You can use AVISYNTH and feed it to your video converter/editor (even FFMPEG) for one or several overlays.
The code you need is similar to this:
Code:v1 = Directshowsource("C:\Users\Bud\Desktop\[dp]Manjandani-1.mp4").ConvertToRGB32.Lanczosresize(854, 480) img1 = DirectShowSource("C:\Users\Bud\Desktop\[dp]Manjandani-1.mp4", pixel_type="RGB32", fps=29.97).converttoRGB32.LanczosResize(160,90) img2 = DirectShowSource("C:\Users\Bud\Desktop\[dp]Manjandani-1.mp4", pixel_type="RGB32", fps=29.97).converttoRGB32.LanczosResize(160,90) clip1 = v1.trim(0, -100) \ ++ v1.trim(100, -50).Overlay(img1, 10, 10,Opacity=1.0, img1.ShowAlpha()) \ ++ v1.trim(150, -50).Overlay(img1, 10, 10,Opacity=1.0, img1.ShowAlpha()).Overlay(img2, 180, 110,Opacity=1.0, img2.ShowAlpha()) \ ++ v1.trim(200, -100).Overlay(img2, 180, 110,Opacity=1.0, img2.ShowAlpha()) \ ++ v1.trim(300, 0) return clip1
Similar Threads
-
timer overlay on video
By onlyone1 in forum Newbie / General discussionsReplies: 4Last Post: 13th Oct 2015, 11:27 -
Video Production: video overlay in real time over existing video
By tobyoneknobi in forum Newbie / General discussionsReplies: 4Last Post: 6th Feb 2015, 08:11 -
AVS video editor's video overlay effect is not good !
By kwanami in forum EditingReplies: 9Last Post: 6th Oct 2014, 20:13 -
Scoreboard overlay for video
By shredder2 in forum EditingReplies: 5Last Post: 27th Jan 2014, 19:24 -
video overlay
By chamel in forum EditingReplies: 2Last Post: 20th Sep 2013, 10:59