I'm looking for a command line video editor in linux. Basically, I need to compose two 320x240 into a single 640x240 video, with both videos side to side.

I need to do it using command line so I can run it from a server.

Any ideas?

link|improve this question
feedback

migrated from stackoverflow.com Sep 6 '10 at 0:32

This question came from our site for professional and enthusiast programmers.

1 Answer

up vote 1 down vote accepted

Mencoder will convert a video to and from a directory of images (one image per frame) with audio on the side. Imagemagick should be able to put two 320x240 images in a single 640x240 one.

link|improve this answer
Thanks for the answer. How can I combine/merge the audio of both videos? – user48574 Sep 6 '10 at 2:54
You can use sox.sourceforge.net to mix sound in several way. Maybe you can start by using sox -m input1.wav input2.wav output.wav. There are several options, to pan the sound, adjust levels... – MaoPU Sep 7 '10 at 9:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.