Batch convert NEF photos to JPEG using ufraw
ufraw converts camera RAW images to standard image files (like jpeg).
Using the ufraw-batch
we can massively convert the images in a folder in one call without the need of external scripts to invoke each separate call.
ufraw-batch --out-type=jpeg --out-path=./ ./*.NEF
In the above example we set the output type to jpeg
, the folder to write the new images the one we are currently in (./
) and the input all NEF
files in the current folder.