Skip to content

Instantly share code, notes, and snippets.

@dudewheresmycode
Created March 17, 2023 18:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dudewheresmycode/157879392768d031933d6e4beeb5ee7d to your computer and use it in GitHub Desktop.
Save dudewheresmycode/157879392768d031933d6e4beeb5ee7d to your computer and use it in GitHub Desktop.
Generate a list of keyframes from a media file
#!/bin/bash
ffprobe \
-v error \
-select_streams v \
-show_entries frame=pict_type,pts_time \
-of csv=p=0 \
-skip_frame nokey \
$INPUT_FILE > iframes.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment