On Fri, Jul 5, 2024 at 4:49 AM Mark Filipak <[email protected]> wrote: > > Has anyone figured out how to discern IDR frames v non-IDR frames in either > FFmpeg or FFprobe? > > --Mark. > _______________________________________________ > 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".
ffprobe -select_streams v -show_frames -print_format json sample.mp4 2>/dev/null | jq '.frames[] | select( .key_frame == 1)' _______________________________________________ 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".
