Skip to content

Instantly share code, notes, and snippets.

@eribeiro
Created August 9, 2012 17:03
Show Gist options
  • Save eribeiro/3305926 to your computer and use it in GitHub Desktop.
Save eribeiro/3305926 to your computer and use it in GitHub Desktop.
Extract PNG frames from mp4 video
#!/bin/bash
# A command to extract PNG files from a MP4 video
# Write out 200 png format frames from video starting at 4 minutes, 40 seconds.
mplayer -vo png -ss 04:40 -frames 200 dvvideo.mp4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment