Editing Batch Converting Image Files

Revision as of 17:15, 26 April 2022 by Video8 (talk | contribs) (Created page with "== `ffmpeg` == Use `ffmpeg`. If `ffmpeg` is not available on the command line, install with `brew install ffmpeg`. == Batch convert `webp` to `jpg` == <syntaxhighlight lang=bash> $ for i in *.webp; do ffmpeg -i "$i" "{i%.webp}.jpg"; done </syntaxhighlight> == Batch convert `png` to `jpg` and scaling images proportionally == The `scale=1024:-1` tells ffmpeg to scale the images to 1024 pixels wide. The height will be scaled proportionally. To scale to a consistent h...")
(diff) ← Older revision | Latest revision (diff) | Newer revision β†’ (diff)
Jump to navigation Jump to search
Warning: You are editing an out-of-date revision of this page. If you publish it, any changes made since this revision will be lost.
Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.
Please note that all contributions to Littledamien Wiki may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see Littledamien Wiki:Copyrights for details). Do not submit copyrighted work without permission!
Cancel Editing help (opens in new window)