I was joining avi video files a good while back and had the same sound problems. I have this script left over in my bag of tricks. I almost certainly pinched it from a forum somewhere because I really don't know what I'm doing with video content.<div>
<br></div><div><div>#!/bin/bash</div><div>for f in *_full.avi</div><div>do</div><div><span class="Apple-tab-span" style="white-space:pre">        </span>OUTF=$(echo "$f" | sed "s/.avi/_final.avi/g")</div><div>
<span class="Apple-tab-span" style="white-space:pre">        </span>mencoder -forceidx -oac copy -ovc copy "$f" -o "$OUTF"</div><div>done</div><div><br></div><div><br></div><div>HTH,</div><div><br></div><div>
Dan</div><div><br></div><br><div class="gmail_quote">On 11 September 2012 21:40, Nick Leverton wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="im">
On Tue, Sep 11, 2012 at 09:24:41PM +0100, Jason Irwin wrote:<br>
> On 11/09/12 19:53, Martin wrote:<br>
> > cat file??.mp4 >video.mp4<br>
> Shouldn't you be using ffmpeg or something? I'll confess to only using<br>
> it for basic transcoding.<br>
><br>
> Kdenlive? Kino? LiVES?<br>
> <a href="http://kdenlive.org/" target="_blank">http://kdenlive.org/</a><br>
> <a href="http://kinodv.org/" target="_blank">http://kinodv.org/</a><br>
> <a href="http://lives.sourceforge.net/" target="_blank">http://lives.sourceforge.net/</a><br>
><br>
> The easiest thing might be to keep the vids as separate files and just<br>
> use a playlist.<br>
><br>
> Heck, VLC can take a playlist and spit out a single, contiguous file.<br>
> Won't let you do all the fancy-shmancy levelling of the others; but<br>
> should do it if you are in a bind.<br>
<br>
</div>If just display is wanted then Xine has good playlist behaviour, we<br>
used to use it (minus GUI) at the last place I worked for displaying<br>
video adverts. We did the playlists programmatically but I believe<br>
there are third party editors for Xine playlists that are better than<br>
the built-in editor.<br>
<span class="HOEnZb"><font color="#888888"><br>
Nick<br>
</font></span><div class="HOEnZb"><div class="h5"><br>
_______________________________________________<br>
Nottingham mailing list<br>
<a href="mailto:Nottingham@mailman.lug.org.uk">Nottingham@mailman.lug.org.uk</a><br>
<a href="https://mailman.lug.org.uk/mailman/listinfo/nottingham" target="_blank">https://mailman.lug.org.uk/mailman/listinfo/nottingham</a><br>
</div></div></blockquote></div><br></div>