Преобразование файлов NEF в JPEG

987
fubo

Какой самый быстрый способ пакетного преобразования файлов NEF (Nikon RAW) в JPEG?

Я пробовал использовать FastStone Image Viewer и Nikon Capture-DX на моем RAM-диске, но они выглядят очень медленными, хотя Capture-DX использует многоядерную обработку.

Создание эскизов из NEF-файлов на моем Synology Atom выполняется так же быстро, как и мой Core i7.

2

3 ответа на вопрос

2
GeekyDaddy

I haven't tried Gimp batch conversion but I know it can do it. I have used Gimp for other stuff and works great.

Try Gimp. You'll need to get the plug-in for your file format.

Instructions on batch process

2
Ynhockey

You can do it with IrfanView. Do the following:

  1. Download IrfanView
  2. Download the Formats plugin. Note that if you downloaded the x64 version of IrfanView, you will need to download the x64 plugin. This is not obvious from their website! Their plugin page has 32-bit plugins, and a small link to the 64-bit ones, so get those.
  3. Go to File > Batch Conversion/Rename... and add your files to the batch. Don't forget to select a directory on the left, the default is usually not where you want it.
  4. Start the batch.
0
Adamq

Я снимаю в RAW на своем Nikon D3100 и использовал следующее для преобразования изображений в формат JPEG (Ubuntu): раздел «Работа с файлами RAW» на этой странице .

На странице показан пример использования pngtopng, который преобразует файлы NEF в PNG, но может быть заменен pnmtojpegдля преобразования их в JPEG:

  1. Установить инструменты: sudo apt-get install dcraw netpbm
  2. Преобразовать одно изображение: dcraw -c -w input.NEF | pnmtojpeg > output.jpg
  3. Пакетное преобразование всего в каталоге: for filename in *.NEF ; do dcraw -c -w $filename | pnmtojpeg > "$.jpg" ; done

Это более чем в 10 раз быстрее, чем Imagemagick, morgifyи не искажает изображение.

Похожие вопросы