Ok first I would like to point out the effect I need for what I am making:
I have 2 videos, one where I am playing guitar hero, and the other is of the TV while I am playing the same song.
I want to combine these videos so they play at the same time so I have a video where you can see me playing, and also the TV.
There are several ways I know of that would work... something like a split screen, where each side of a center line is the respective videos. Or perhaps a insert... so you have the shot of the TV with a little box in the top corner where you can see me playing etc.
Firstly, are there any cheap or free programs that can do this task and or another way I could do this???
+ Reply to Thread
Results 1 to 3 of 3
-
-
Use avisynth with a script based on the following:
The file loaded with Imagesource is a simple black and white mask (white to show that part of the video, black for transparent). You'll need to change QTInput to DirectShowSource() or equivalent for the type of videos that you want to load and may want to resize the videos, add different borders etc. before overlaying them.Code:bg = QTInput("ray belly dancer.MOV",color=2,audio=false).Addborders(352,302,48,32).ConvertToRGB32() mk = Imagesource("bellydancer mask.jpg").ConvertToRGB32() top = QTInput("bellydancer.mov",color=2,audio=true).TurnRight().Addborders(48,128,432,128).ConvertToRGB32().Mask(mk) Layer(bg, top)
Slainte
middersVolunteer for https://www.computersforkids.org.uk/ -
That script is OK, but has a lot of details specific to the videos it was originally written for.
For the OP's purpose, a simpler script using StackHorizontal (for split-screen) or Overlay (picture insert) would be more appropriate.
Similar Threads
-
Combining Image and Video
By black5 in forum Newbie / General discussionsReplies: 4Last Post: 5th Aug 2010, 20:41 -
Combining video and audio files
By lbblock in forum Newbie / General discussionsReplies: 1Last Post: 10th Jan 2010, 11:17 -
Combining video and subtitles...
By jpresto in forum Newbie / General discussionsReplies: 1Last Post: 28th Jan 2009, 19:43 -
Combining Powerpoint and Video
By gurot in forum EditingReplies: 3Last Post: 16th Dec 2008, 20:38 -
Audio and Video not combining
By adeleander in forum ffmpegX general discussionReplies: 9Last Post: 23rd Sep 2008, 16:52



Quote