Created
May 24, 2015 21:26
-
-
Save eddie/6a10c60fc027a15f52e0 to your computer and use it in GitHub Desktop.
MPG Thumbnails
This file contains hidden or 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
| for file in *.mp4; do out=`basename "$file" .mp4`.jpg; ffmpeg -ss 00:10:10 -i ./"$file" -vcodec mjpeg -vframes 1 -an -f rawvideo "$out"; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment