Created
August 9, 2012 17:03
-
-
Save eribeiro/3305926 to your computer and use it in GitHub Desktop.
Extract PNG frames from mp4 video
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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