X-Git-Url: http://git.scottworley.com/picsort/blobdiff_plain/cd368e974b63917e537306af77de71ded9f8e1ef..bb17aed57d1c495a50f1e4f2b1e02080bda0ea72:/pics-preprocess diff --git a/pics-preprocess b/pics-preprocess index 780acdc..a67f460 100755 --- a/pics-preprocess +++ b/pics-preprocess @@ -4,9 +4,6 @@ # This makes many variants of each .NEF file at different exposure levels # and makes reduced-size versions for faster browsing. -GREEN=1.105 -TEMPERATURE=5500 -JPEGCOMPRESSION=95 SMALLHEIGHT=700 @@ -16,22 +13,23 @@ for f;do mkdir -p {,sm/}"$level" base="$(basename "$f")" out="$level/${base%.NEF}.jpeg" - exposure=$(dc <<< "2k $level 4 / 3.5-p") # 10 to 30 -> -1 to 4 in .25 steps - if [[ ! -s "$out" ]];then - ufraw-batch --out-type=jpeg \ - --green="$GREEN" \ - --temperature="$TEMPERATURE" \ - --compression="$JPEGCOMPRESSION" \ - --exposure="$exposure" \ - --output="$out" \ - "$f" + if [[ -s "$out" ]];then + echo "Skipping $out" + else + exposure=$(dc <<< "2k $level 4 / 3.5-p") # 10 to 30 -> -1 to 4 in .25 steps + pics-run-ufraw "$exposure" "$f" "$out" fi - if [[ ! -s "sm/$out" ]];then + if [[ -s "sm/$out" ]];then + echo "Skipping sm/$out" + else convert "$out" -geometry "x$SMALLHEIGHT" "sm/$out" fi done else - if [[ ! -s "sm/$f" ]];then + if [[ -s "sm/$f" ]];then + echo "Skipping sm/$f" + else + mkdir -p sm convert "$f" -geometry "x$SMALLHEIGHT" "sm/$f" fi fi