On Thu, December 20, 2007 7:14 am, Nick Rout wrote:
> Don Gould wrote:
>> Hi,
>>
>> See: http://www.bowenvale.pointclark.net/VideoLayout.gif
>>
>> I want to edit 4 videos in to one.
>>
>> What easy to use tool do people recommend?
>>
>> Cheers Don
>>
> I can't think of anything other than this:
>
> Extract every frame out of each of the four videos. (mplayer -vo png or
> mplayer -vo jpeg)
>
> Construct each frame of the new video with either montage or similar
> from imagemagick OR scripting the gimp. Have them numbered consecutively
> like framexxxx.png.
>
> Make the constructed frames into a video. (ffmpeg -i frame%04d.png
> outputfile.mpg)
>
> You may want to do something about audio too, thats left to you.
>
>
> Actually cinelerra may be able to do it via some sort of compositing
> tricks with masks etc, but thats also an exercise for you.
>
>
Of course if you just want to play 4 videos all at once you can use 4
instances of mplayer with -geometry set to occupy the appropriate portion
of the screen. Sorry about the layout of this which i cut and paste from
the man page.
-geometry x[%][:y[%]] or [WxH][+x+y]
Adjust where the output is on the screen initially. The x
and y specifications are in pixels measured from
the top-left of the screen to the top-left of the image
being displayed, however if a percentage sign is
given after the argument it turns the value into a
percentage of the screen size in that direction. It al-
so supports the standard X11 -geometry option format. If
an external window is specified using the -wid
option, then the x and y coordinates are relative to the
top-left corner of the window rather than the
screen.
NOTE: This option is only supported by the x11, xmga, xv,
xvmc, xvidix, gl, gl2, directx and tdfxfb video
output drivers.
EXAMPLE:
50:40
Places the window at x=50, y=40.
50%:50%
Places the window in the middle of the screen.
100%
Places the window at the middle of the right edge of
the screen.
100%:100%
Places the window at the bottom right corner of the
screen.
--
Nick Rout