Wednesday, August 22, 2012

Mass convert CR2 file to JPEG with Ubuntu


  1. apt-get install ufraw
  2. cd <dir of cr2>
  3. for i in *.CR2; do ufraw-batch $i --out-type=jpeg --output $i.jpg; done;

2 comments:

  1. The following works just as well:
    find -iname '*.cr2' | xargs -I% -P4 nufraw-batch % --out-type=jpeg

    ReplyDelete