Skip to content

Instantly share code, notes, and snippets.

@samuelbezerrab
Created November 10, 2023 15:03
Show Gist options
  • Save samuelbezerrab/48b8e8d79a19c5eb5c8c974be2b6cb7b to your computer and use it in GitHub Desktop.
Save samuelbezerrab/48b8e8d79a19c5eb5c8c974be2b6cb7b to your computer and use it in GitHub Desktop.
Resize iPhone screenshots to 5.5 inches
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