Hello, I am trying to make a video for my Church. My uncle is letting me use his computer to do it while he is gone, and he has power director. I'm new at editing, but I took 2 years of Communication Arts (movie class) in High School.
So my question is how do I crop a movie, and then use it on another project. I have two needs for this.
1) I want to make a bubble pop up with someone talking. It would like something like my picture I made.
The guy would float from the right side of the screen, to the left at some point also.
2) In the raw footage, someone walked into the frame, just poked their head in. Then turned around. I know if this was photo shop and I had to pictures of the same take, I could select the good parts of the picture, and put it on the bad. Because I was using a tripod, and I have seconds of good video without them there, is there any way I could just select a circle of a square of the good footage, and put it over the head poking in? The shot was really hard to get, and I don't like the head there.
Thanks!
If there is another video editing software that might do the trick or has the ability to do it, let me know and I will see if I can get my hands on it through a friend.
+ Reply to Thread
Results 1 to 5 of 5
-
-
Just about every NLE will let you overay one video over another with a mask. You can even do it with free tools like VirtualDub and AviSynth.
-
If you can't imagine it, you won't be able to do it. It's called "cookie cutter" in some software. Or you can make your own.
-
Since the background in your image was fairly symmetrical I used a horizontally flipped image as an overlay. I quickly built a mask in a paint program. Then used the following script to overlay the flipped image onto the original:
Code:src=ImageSource("1qn1xs.jpg") flipped=FlipHorizontal(src) mask=ImageSource("mask.png") Overlay(src, flipped, 0, 0, mask)
mask:
-
Don't freak out, OP!
That example above is just the very essence of what you need to understand. The actual implementation in your NLE is much more friendly.
The concept is, white is "high" and black is "low", and the NLE will blend in the gradient. The gradient is the fuzz around the circle. To produce a soft blend, rather than a harsh hard circle.
Just think about it for a while.
Similar Threads
-
Circle or arrow to point out highlighted player
By adrian1472 in forum EditingReplies: 1Last Post: 10th Feb 2012, 23:45 -
Circle around or arrow to point out highlighted player
By adrian1472 in forum LinuxReplies: 0Last Post: 10th Feb 2012, 21:49 -
Clear inner plastic circle of discs (damaged)
By MattMVS7 in forum Newbie / General discussionsReplies: 7Last Post: 18th Sep 2011, 15:59 -
oval circle - aftereffects and illustrator
By perik in forum EditingReplies: 3Last Post: 3rd Apr 2009, 08:23 -
Question about visible fine circle on unburned DVDs
By jimdagys in forum MediaReplies: 4Last Post: 13th Feb 2009, 09:20