[FFmpeg-user] audio delay while converting flv to avi

John Saturday stozher at gmail.com
Fri Feb 17 14:26:43 CET 2012


> this command line produces and audio delay of 2-3 seconds
>
>  /usr/bin/ffmpeg -loglevel 0 -i 202.flv -ar 44100 -b 700k -sameq -f avi  -ab
> 160k 202.avi

Check with "async" option:

ffmpeg -loglevel 0 -async 1 -i 202.flv -f avi -b 700k -sameq -ab 160k
-ar 44100 202.avi

see also "shortest" option -- finish encoding when the shortest input
stream ends.


More information about the ffmpeg-user mailing list