raw2dng icon indicating copy to clipboard operation
raw2dng copied to clipboard

Getting started

Open culmat opened this issue 3 years ago • 3 comments

A little documentation on how to get started and what to expect ( man page / screen shots / feature list ) would be great.

culmat avatar May 19 '21 16:05 culmat

For anyone curious, if you run the executable w/o any args it'll print the 'help' page.

That being said, I do agree that this info would be useful to have in the README and/or associated with an 'h' flag.

L1ghtmann avatar Jun 04 '22 16:06 L1ghtmann

I agree that this would be helpful. E.g. some concrete installation/building instructions. I found this to work for Ubuntu 20.04:

# install dependencies
sudo apt-get install -y cmake gcc g++ libexiv2-dev libraw-dev libexpat-dev libjpeg-dev zlib1g-dev

# build
mkdir build && cd build && cmake ../ && make

# install binary
sudo make install

befocken avatar Jun 23 '22 11:06 befocken

Batch converting: just cd to your raw files (.CR2 in this example) folder and then: ls *.CR2 | xargs -I{} raw2dng {} -o {}.dng

trasferetti avatar Aug 08 '22 19:08 trasferetti