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
#!/usr/bin/env sh | |
# original from http://stackoverflow.com/a/30819570/187663 | |
if [ $# -lt 2 ] | |
then | |
echo "Usage: devert {input video filename} {input image filename}" | |
echo "Usage: devert {input video filename} {input image filename} {width} {height}" | |
echo "" | |
echo "Excluding the width and height will generate a video at 1280x720" | |
exit; | |
fi |