0

When you do a command like:

ffprobe -show_frames inputfile

In what order does it give you the frames? Because Presentation order and Decode Order will be different... I am thinking that depending on which order it gives you, then others who are trying to count the size of the GOP by grepping for pict-type and then counting it that way may be getting slightly different results?

Thanks

Baba.S
  • 324
  • 2
  • 14

1 Answers1

1

Presentation order; see the coded_picture_number progression - for streams with B-frames, the sequence won't be monotonic.

Gyan
  • 85,394
  • 9
  • 169
  • 201