>>2954807what they said:
>>2954820Probably best to pick a platform and use one.
...after installing and comparing everyhting of course.
Rawtherapee seems more fully featured, but it lacks hotkeys (afaik) and renders in a way thats almost unavoidably a kind of quazi-HDR... everything ends up pastelly and sort of weird looking. That's the only reason i stopped using it
Darktable is also very good, has hotheys, and can mask. I use DT.
There is also Ufraw, but it will seem a little primitive to windedows users. It's quite capable however.
You do need to put a leash on it, or opening a lot of files at once is almost completely unstoppable.
ie:
#!/bin/bash
# betlog - 2016-05-25--00-07-48
# make ufraw a litte more stoppable after selecting a ton of files.
OLDIFS=$IFS
IFS="\n"
for f in $@; do
filename=${f##*/}
if [[ ${f} != ${1} ]];then
kdialog --title "UFRAW QUEUE" --warningcontinuecancel "Continue with ${filename}?"
fi
if [[ $? == 0 ]];then
echo ${f}
ufraw ${f}
else
kdialog --title "UFRAW QUEUE" --passivepopup "QUEUE TERMINATED"
echo "UFRAW QUEUE TERMINATED"
break
fi
done
echo "--------------"
IFS=$OLDIFS
image related is ufraw on a pi3 viewed via VNC on a tablet.