On 31 Mar 2011, at 16:01, Shevek wrote:

> This is possibly a stupid question, but can ffmpeg pipe to itself to
> do both things separately but in one command?

This worked for me:

ffmpeg -i test.flv -vn -acodec copy -f adts - | ffmpeg -i - -vn -acodec copy 
-absf aac_adtstoasc -y test.m4a

I think the trick is choosing the right output format from the first ffmpeg 
command.  It needs to use a muxer that doesn't require seekable output, so adts 
seemed like the right choice.
_______________________________________________
get_iplayer mailing list
get_iplayer@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/get_iplayer

Reply via email to