2

I do not understand some attributes in the output by FFprobe

For a sample file

$ ffprobe -v error -show_format -show_streams input.mp4
[STREAM]
index=0
codec_name=h264
codec_long_name=H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10
profile=High
width=320
height=240
has_b_frames=2
pix_fmt=yuv420p
level=13                <= This one!
color_range=N/A

What does "level" mean here? Is there any document explain those attributes?

Gyan
  • 85,394
  • 9
  • 169
  • 201
shintaroid
  • 1,556
  • 3
  • 20
  • 34

1 Answers1

0

The [level][1] means a set of constraints (mostly resolution but bit depth as well) that indicate a degree of required decoder performance for a profile. The 13 probably refers to 1.3

Leandro Moreira
  • 377
  • 3
  • 16