One more macro in a new version. See it as a lite version of the "big" version I am working on.
It has the name "Open DSLR raw files and convert to Tiff 16 bit", you find it here in the middle of the page:
http://www.astrofriend.eu/astronomy/...wn-macros.html
What I have done is to add a menu from where you choose which raw format you want to convert to Tiff format. You can also add the option to read the overscan areas of the sensor if it has it. Maybe only Canon.
I think this can open all DSLR cameras raw files, at least as long DCRaw can read them. I have included the most common, Canon .cr2, Canon .cr3, Nikon .nef, Sony .arw.
It's easy to add more raw files extension.
Open the macro in Notepad and add some extra rows with your raw files extensions. Don't forget to change newArray(X) to correspond to how many rows you have.
fileformatDef = newArray(4);
fileformatDef[0] = ".cr2"; // Canon RAW
fileformatDef[1] = ".cr3"; // Canon RAW
fileformatDef[2] = ".nef"; // Nikon RAW
fileformatDef[3] = ".arw"; // Sony RAW
If you use it a lot I can add some extra raw formats and they will be there in future updates. Let me know but I can't test the files, you have to do it and let me know if it works.
You download and use the macro at your own risk ! Backup your files before !
/Lars