]>
Commit | Line | Data |
---|---|---|
e18c13a6 SW |
1 | #!/bin/bash |
2 | ||
cd368e97 SW |
3 | # Pass .NEF and .jpeg files as $@. |
4 | # This makes many variants of each .NEF file at different exposure levels | |
5 | # and makes reduced-size versions for faster browsing. | |
e18c13a6 | 6 | |
9952a1a7 | 7 | SMALLHEIGHT=700 |
e18c13a6 SW |
8 | |
9 | ||
10 | for f;do | |
cd368e97 SW |
11 | if [[ "$f" == *.NEF ]];then |
12 | for level in {10..30};do | |
13 | mkdir -p {,sm/}"$level" | |
14 | base="$(basename "$f")" | |
15 | out="$level/${base%.NEF}.jpeg" | |
16 | exposure=$(dc <<< "2k $level 4 / 3.5-p") # 10 to 30 -> -1 to 4 in .25 steps | |
17 | if [[ ! -s "$out" ]];then | |
7e0b085a | 18 | pics-run-ufraw "$exposure" "$f" "$out" |
cd368e97 SW |
19 | fi |
20 | if [[ ! -s "sm/$out" ]];then | |
21 | convert "$out" -geometry "x$SMALLHEIGHT" "sm/$out" | |
22 | fi | |
23 | done | |
24 | else | |
25 | if [[ ! -s "sm/$f" ]];then | |
26 | convert "$f" -geometry "x$SMALLHEIGHT" "sm/$f" | |
fd69f569 | 27 | fi |
cd368e97 | 28 | fi |
e18c13a6 | 29 | done |