I saw this, still no info if it uses a proprietary format, which I suspect it does, hence it is useless at least for me. But may be I am wrong, and it converts raws into to a standard DNG format.
Additionally, the compression ratio mentioned there is 196/291 = 67%, far from the ADobe DNG Converter with 50%.
The ideal solution would be to have the Adobe level of compression done by Sony cameras. Adobe DNG is a good workaround, likely to be better than the PAckRAW with it's proprietary format.
Again, you can't revert back to the original RAW file once you convert it to DNG.
PackRAW is a "proprietary" compressor optimised for RAW files, so you'll always have a copy of the original RAW archived.
It has a great balance of speed and compression ratio, I've been using it since 2016 without any issues.
If it's no use to you, fine, but others reading this thread might find it very useful.
Den
Speed? You spend extra time on manually compressing and uncompresssing raw files, fidgeting with scripts.
It might be a good option for a backup though.
Nonsense,
The time taken to compress RAW files using PackRAW is no more inconvenient than the time taken to convert RAW files to DNG.
The time to decompress RAW files using PackRAW is no more inconvenient than copying RAW or DNG files from one directory to another.
I use one batch file to compress all RAW files in a directory to half the size of the original uncompressed RAW, and another batch file to decompress all RAW files in a directory.
Here's all anyone needs to do:
1. Copy PackRAW.exe to the directory where the RAW (ARW) files are.
2. Copy and paste this line to notepad then save as Compress.bat to the same directory.
for %%a in ("*.arw") do (packraw.exe p "%%a")
3. Copy and paste this line to notepad then save as Uncompress.bat to the same directory.
for %%a in ("*.prw") do (packraw.exe u "%%a")
All it takes is a doubleclick of my mouse button, hardly what you claim "fidgeting with scripts".
NOTE: If anyone trying the above batch commands wants to delete the original after each file is converted, just add the following to the end of the command:
& DEL "%%a"
Examples below of the added delete command:
for %%a in ("*.arw") do (packraw.exe p "%%a" & DEL "%%a")
for %%a in ("*.prw") do (packraw.exe u "%%a" & DEL "%%a")
Den