Created
June 28, 2021 03:08
-
-
Save sungmin-park/d5b991d0f43975996716945bffabd813 to your computer and use it in GitHub Desktop.
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
#!/bin/sh -e | |
if [ $# -eq 0 ] ; then | |
echo "usage> $0 [movie files] ..." >&2 | |
exit 1 | |
fi | |
for TARGET in "$@" | |
do | |
RESULT=${TARGET%.*}.png | |
ffmpeg -i "$TARGET" -vframes 1 "$RESULT" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment