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&#39;t know what I&#39;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 &quot;$f&quot; | sed &quot;s/.avi/_final.avi/g&quot;)</div><div>
<span class="Apple-tab-span" style="white-space:pre">        </span>mencoder -forceidx -oac copy -ovc copy &quot;$f&quot; -o &quot;$OUTF&quot;</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>
&gt; On 11/09/12 19:53, Martin wrote:<br>
&gt; &gt; cat file??.mp4 &gt;video.mp4<br>
&gt; Shouldn&#39;t you be using ffmpeg or something?  I&#39;ll confess to only using<br>
&gt; it for basic transcoding.<br>
&gt;<br>
&gt; Kdenlive?  Kino?  LiVES?<br>
&gt; <a href="http://kdenlive.org/" target="_blank">http://kdenlive.org/</a><br>
&gt; <a href="http://kinodv.org/" target="_blank">http://kinodv.org/</a><br>
&gt; <a href="http://lives.sourceforge.net/" target="_blank">http://lives.sourceforge.net/</a><br>
&gt;<br>
&gt; The easiest thing might be to keep the vids as separate files and just<br>
&gt; use a playlist.<br>
&gt;<br>
&gt; Heck, VLC can take a playlist and spit out a single, contiguous file.<br>
&gt; Won&#39;t let you do all the fancy-shmancy levelling of the others; but<br>
&gt; 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>