On Tue, Mar 26, 2019 at 21:41:38 +0100, Mohammed Bey Ahmed Khernache wrote: > Can we check with *ffprobe/ffmpeg* whether a video sequence is encoded in > intra-only? > > I didn't succeed to get such information using those tools.
You can show each frame's properties with "ffprobe -show_frames", e.g. by looking at the pict_type and or key_frame entries: $ ffprobe -show_frames -show_entries frame=key_frame,pict_type inputfile With some parsing, you could avoid visual inspection of the complete output. Moritz _______________________________________________ ffmpeg-user mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-user To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".
