Fimagena / raw2dng

Linux utility for converting raw photo files into DNG, TIFF or JPEG format
Other
106 stars 31 forks source link

Getting started #24

Open culmat opened 3 years ago

culmat commented 3 years ago

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

L1ghtmann commented 2 years ago

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.

befocken commented 2 years ago

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
trasferetti commented 2 years ago

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