ffmpeg-tutorial icon indicating copy to clipboard operation
ffmpeg-tutorial copied to clipboard

A set of tutorials that demonstrates how to write a video player based on FFmpeg

Results 13 ffmpeg-tutorial issues
Sort by recently updated
recently updated
newest added

Regarding frameFinished in https://github.com/mpenkov/ffmpeg-tutorial/blob/master/tutorial01.c#L150 It is worth noting here that frameFinished might result in missed frames. Consider the following frame format: ``` F1 F2 F3 F4 II BB BB PP...

I noticed 2 problems about the function "synchronize_audio". 1) The parameter pts in never used. 2) In the block "else if(wanted_size > samples_size)", nb is computed as "nb = (samples_size...

Line 113 and Line 135 in Tutorial 1: PIX_FMT_RGB24 should be AV_PIX_FMT_RGB24. Thanks :-)