Mastodon Mastodon - Convert RAW files on a Mac using "sips"
 logo
  • Home 
  • Tags 
  • Blog posts 
  1. Home
  2. Blog posts
  3. Convert RAW files on a Mac using "sips"

Convert RAW files on a Mac using "sips"

Posted on July 25, 2021  (Last modified on July 11, 2024) • 1 min read • 56 words
Cli   Mac  
Cli   Mac  
Share via

I recently needed to convert Canon *.CR2 RAW files to JPEG. What I did not know is that a Mac brings all you need preinstalled in form of a CLI tool called sips.

for i in *.CR2; do
  sips -s format jpeg $i --out "${i%.*}.jpg"
done

Also: man sips works just fine for more information.

Source: Coderwall

 Auto-rebuild Docker images if base image changes using GitHub actions
Unattended upgrades in Debian/Ubuntu 
In case you want to follow me

Here are some links. The further to the right, the less active.

           
(c) Axel Bock | Powered by Hinode.
Link copied to clipboard
Code copied to clipboard