One of our cameras takes raw photos in ORF format, which I believe stands for "Olympus Raw Format". Here's a recipe I found for converting them to JPEG on macOS:
brew install dcraw imagemagick
mkdir -p jpegs
for f in *.ORF; do
dcraw -c "$f" | magick -quality 90 - jpegs/"${f%.*}.jpg"
doneThe result is a jpegs/ directory containing a .jpg file for every one of the .ORF files.
Created 2025-06-26T10:57:29-07:00 · Edit