Skip to content

Instantly share code, notes, and snippets.

@Realitian
Created June 2, 2021 05:01
Show Gist options
  • Select an option

  • Save Realitian/80b35f284d2cbb2c27c16a979401115b to your computer and use it in GitHub Desktop.

Select an option

Save Realitian/80b35f284d2cbb2c27c16a979401115b to your computer and use it in GitHub Desktop.
Extract all non-duplicated frames from a video using ffmpeg.

1. remove all duplicated frames and export another video file.

ffmpeg -i videoplayback.mp4 -vf mpdecimate,setpts=N/FRAME_RATE/TB out.mp4

2. extract all frames from exported video and save images.

ffmpeg -i out.mp4 frames/out-%04d.jpg

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment