Hi<br>When i want to use ffmpeg for extracting raw images from some video stream with 1 second iterval i use the below command:<br>d:\\ffmpeg -i D:\\myvideo1.mp4 -r 1 -f image2 -s 80x60 -pix_fmt yuv420p d:\\myVideoImages\\myvideoImg-%03d.y<br>
i use above command line in my c program by "system()" function. I call this function to run ffmpeg more than 1000 times in a loop. <br>It seems the ffmpeg doing its work well but i see a yellow line among ffmpeg text on my screen which says:<br>
[mpeg @ ......] max_analyse_duration 5000000 reached at 5005000<br>I want to know what does it mean and does it affect my process for extracting images from the video stream?<br clear="all"><br>Thanks<br>Amir<br>