On 10/12/2013 12:52 PM, James Board wrote:
In a C program with libav, how can I determine what is the largest best_effort_timestamp for my input video file, which is AVI container and compressed with ffvhuff?



_______________________________________________
Libav-user mailing list
[email protected]
http://ffmpeg.org/mailman/listinfo/libav-user
An AVI container should specify a frame rate, and the time stamp is always 1/framerate * total_frames_read there abouts...

If the length of the video payload is zero, then count that as a dropped encoder frame, and increment the total_frames_read for it, continue.

Andy
_______________________________________________
Libav-user mailing list
[email protected]
http://ffmpeg.org/mailman/listinfo/libav-user

Reply via email to