Created
November 10, 2023 15:03
-
-
Save samuelbezerrab/48b8e8d79a19c5eb5c8c974be2b6cb7b to your computer and use it in GitHub Desktop.
Resize iPhone screenshots to 5.5 inches
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 f in *; | |
do | |
ffmpeg -i ${f} -vf "scale=1242:-1, crop=1242:2208:0:0" "iphone5,5-resized-${f}"; | |
done; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment