How to limit the number of frames ffprobe interprets? -
i have command
ffprobe -show_frames -select_streams v -print_format json -i c:\test.mpg
however, prints off frame info. there anyway can limit ffprobe @ first 10 frames? thanks
b
-read_intervals
trick. e.g. %+2
read first 2 sec, %+#2
read 2 frames.
for example: -read_intervals "%+2"
Comments
Post a Comment