Elżbieta Jakubska <elzbieta.jakubska <at> gmail.com> writes: > I have a problem with A/V synchronization when the > source signal is disturbed. I am using the > following command for transcoding my video: > > ffmpeg -y -probesize 6000000 -threads 1 -i $filename > -vf scale=256:144 -b:v 192k -acodec libmp3lame > -b:a 128k -ac 1 -af aresample=async=1000 -ss 0 > -threads 1 -t 3720 -f avi $filename.avi
I believe the following works fine: $ ffmpeg -i input -vf scale=256:144 -b:v 192 -acodec libmp3lame -b:a 128k -ac 1 -async 1 -ss 0 out.avi This is not a regression, -async 1 was always necessary for such files with reception errors. Carl Eugen _______________________________________________ ffmpeg-user mailing list [email protected] http://ffmpeg.org/mailman/listinfo/ffmpeg-user
