<div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;"><div style="word-wrap:break-word"><div>I haven&#39;t managed to get lossless transcoding working for H.264, only MPEG-2. Anyone else had better luck?</div>

</div></blockquote></div><div><br></div><div>Yes, slightly. I&#39;ve been using the script below in a user job (with cvlc from VLC) to do a stream copy of H.264 video while transcoding the audio from LATM to straight AAC.</div>

<div><br></div><div>I couldn&#39;t figure out how to get audio sync perfect, but that&#39;s not a big enough problem for me (or WAF). I wonder if ffmpeg has stable mainline LATM support planned for the near future?</div>
<div>
<br></div><div><br></div><div><div><font class="Apple-style-span" face="&#39;courier new&#39;, monospace">#!/bin/bash</font></div><div><font class="Apple-style-span" face="&#39;courier new&#39;, monospace">if echo $1 | egrep -q &#39;^2003&#39;; then</font></div>

<div><span class="Apple-tab-span" style="white-space:pre"><font class="Apple-style-span" face="&#39;courier new&#39;, monospace">        </font></span><font class="Apple-style-span" face="&#39;courier new&#39;, monospace">exit 0</font></div>

<div><font class="Apple-style-span" face="&#39;courier new&#39;, monospace">fi</font></div><div><font class="Apple-style-span" face="&#39;courier new&#39;, monospace">FILE=/var/lib/mythtv/recordings/$1</font></div><div><font class="Apple-style-span" face="&#39;courier new&#39;, monospace">cvlc $FILE --quiet --sout=&quot;#transcode{acodec=mp4a,ab=192,channels=2,samplerate=48000}:standard{mux=ts,dst=$FILE.new,access=file}:sout-transcode-soverlay=0&quot; vlc://quit 2&gt;/dev/null</font></div>

<div><font class="Apple-style-span" face="&#39;courier new&#39;, monospace">mv $FILE $FILE.old</font></div><div><font class="Apple-style-span" face="&#39;courier new&#39;, monospace">mv $FILE.new $FILE</font></div><div><font class="Apple-style-span" face="&#39;courier new&#39;, monospace">rm $FILE.old</font></div>

<div><font class="Apple-style-span" face="&#39;courier new&#39;, monospace">/usr/bin/mythcommflag --rebuild --very-quiet -f $FILE</font></div><div><font class="Apple-style-span" face="&#39;courier new&#39;, monospace">chown mythtv:mythtv $FILE</font></div>

<div><font class="Apple-style-span" face="&#39;courier new&#39;, monospace">chmod 6775 $FILE</font></div><div><br></div></div>