I need to merge two AVI files where sound tracks are substantially shorter than video ones - i.e. it can be minutes of video without sound at the end. When I merge either with transcode or mencoder, the sound and video are merged together "independently", so I am resulting in an AVI file where all the audio is glued together and all the silence is also glued together and put at the end causing enormous loss of sync between audio and video. Is there any way to merge those files so that the file boundaries are left intact and sound is attached to the proper video frames? I need a Linux command-line solution.

EDIT: Here is the code I am using:

avimerge -i file.avi file2.avi -o result.avi  
mencoder -oac copy -ovc copy -o result.avi file1.avi file2.avi
link|improve this question

56% accept rate
Show us what code you have so far. – leppie Jan 26 '11 at 7:24
@leppie: edited the question to add code. – Michael Pliskin Jan 26 '11 at 8:27
That's not code... This question belongs on superuser. – leppie Jan 26 '11 at 8:34
@leppie Well not really - I am developing an application where I need to convert videos on the server.. – Michael Pliskin Jan 26 '11 at 12:54
feedback

1 Answer

There is a tool in the Ubuntu repository called avidemux which seems like it should do what you need.

link|improve this answer
Thanks for the pointer, gonna give it a try! – Michael Pliskin Jan 26 '11 at 8:31
Tried that and it also behaves in a weird way in fact. It 'tiles' the shorter soundtrack instead of injecting silence.. It looks like I will have to resolve to generating silence manually and joining all together then. – Michael Pliskin Jan 26 '11 at 14:51
You can demux the video and audio tracks, use a command line tool to pad the audio track with silence, and then remux the file. – Jason LeBrun Jan 27 '11 at 20:13
feedback

Your Answer

 
or
required, but never shown

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