Skip to content

Instantly share code, notes, and snippets.

@yasinuygun
Created January 20, 2024 13:49
Show Gist options
  • Save yasinuygun/f88553cfc9044571e7b4dfe7b8c9f6e2 to your computer and use it in GitHub Desktop.
Save yasinuygun/f88553cfc9044571e7b4dfe7b8c9f6e2 to your computer and use it in GitHub Desktop.
downsize images and videos

Downsize images

ls *.jpg | xargs -I{} convert {} -resize '800x800>' resized_{}

Downsize videos

ls *.mp4 | xargs -I{} ffmpeg -i {} -vf "scale=800:800:force_original_aspect_ratio=decrease,pad=800:800:(ow-iw)/2:(oh-ih)/2" resized_{}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment