2016-03-05 21:29:51 +01:00
#!/bin/bash
2016-05-11 16:40:54 +02:00
#TODO:
#~ DNG Dump Speedup
#~ --> Progressively cut MLV into $THREADS different MLVs. Dump all & renumber
#~ over a certain amount of frames.
#~ Stats for .RAW files and DNG sequences, best as possible.
#~ --> Only read the file once into a long string, as opposed to once per setting.
#~ Better Preview:
#~ --> Essentially, a different module (like -e) for seeing, not developing, footage.
#~ --> To start, an option allowing one to see a single frame, developed.
2016-05-17 03:32:02 +02:00
#UNFIXED BUG: Run on all Charleston files; determine what's making Black Level not appear sometimes.
2016-04-12 18:47:47 +02:00
2016-03-21 00:48:10 +01:00
#~ The MIT License (MIT)
2016-03-28 21:55:58 +02:00
#~ Copyright (c) 2016 Sofus Rose
2016-03-21 00:48:10 +01:00
#~ Permission is hereby granted, free of charge, to any person obtaining a copy
#~ of this software and associated documentation files (the "Software"), to deal
#~ in the Software without restriction, including without limitation the rights
#~ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
#~ copies of the Software, and to permit persons to whom the Software is
#~ furnished to do so, subject to the following conditions:
2016-03-29 00:25:49 +02:00
#~
2016-03-21 00:48:10 +01:00
#~ The above copyright notice and this permission notice shall be included in all
#~ copies or substantial portions of the Software.
2016-03-29 00:25:49 +02:00
#~
2016-03-21 00:48:10 +01:00
#~ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
#~ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
#~ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
#~ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
#~ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
#~ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
#~ SOFTWARE.
2016-03-29 00:52:59 +02:00
#BASIC VARS
2016-05-17 03:32:02 +02:00
VERSION = "1.8.2" #Version string.
if [ [ $OSTYPE = = "linux-gnu" ] ] ; then
THREADS = $( cat /proc/cpuinfo | awk '/^processor/{print $3}' | tail -1)
else
THREADS = 4
fi
#sysctl -n hw.ncpu for Mac
2016-03-21 00:48:10 +01:00
2016-03-29 00:52:59 +02:00
#DEPENDENCIES
2016-03-28 21:55:58 +02:00
DEB_DEPS = "imagemagick dcraw ffmpeg python3 python3-pip exiftool" #Dependency package names (Debian). List with -K option.
2016-03-14 02:33:53 +01:00
PIP_DEPS = "numpy Pillow tifffile" #Technically, you don't need Pillow. I'm not really sure :).
2016-03-28 21:55:58 +02:00
MAN_DEPS = "mlv_dump raw2dng cr2hdr mlv2badpixels.sh balance.py"
2016-05-17 17:15:56 +02:00
PYTHON = "python3" #Different depending on OS. Probably just 'python'.
2016-03-14 02:33:53 +01:00
2016-03-29 00:52:59 +02:00
#PATHS
2016-03-13 08:04:18 +01:00
MLV_DUMP = "./mlv_dump" #Path to mlv_dump location.
RAW_DUMP = "./raw2dng" #Path to raw2dng location.
2016-03-20 16:17:40 +01:00
CR_HDR = "./cr2hdr" #Path to cr2hdr location.
2016-03-12 21:33:27 +01:00
MLV_BP = "./mlv2badpixels.sh"
2016-03-14 02:33:53 +01:00
PYTHON_BAL = "./balance.py"
2016-05-17 17:15:56 +02:00
PYTHON_SRANGE = "./sRange.py"
2016-03-14 02:33:53 +01:00
BAL = " ${ PYTHON } ${ PYTHON_BAL } "
2016-05-17 17:15:56 +02:00
SRANGE = " ${ PYTHON } ${ PYTHON_SRANGE } "
2016-03-15 05:40:55 +01:00
OUTDIR = " $( pwd ) /raw_conv "
isOutGen = false
2016-03-29 00:52:59 +02:00
#OUTPUT
2016-03-14 02:33:53 +01:00
MOVIE = false
2016-03-29 00:52:59 +02:00
FPS = 24 #Will be read from .MLV or .RAW.
2016-03-14 02:33:53 +01:00
IMAGES = false
2016-03-20 01:42:46 +01:00
IMG_FMT = "exr"
2016-03-18 13:36:53 +01:00
COMPRESS = ""
2016-05-11 16:40:54 +02:00
isCOMPRESS = true
2016-03-15 23:10:10 +01:00
isJPG = false
isH264 = false
2016-03-14 02:33:53 +01:00
KEEP_DNGS = false
2016-03-20 16:17:40 +01:00
2016-04-13 15:47:22 +02:00
#FRAME RANGE
FRAME_RANGE = "" #UPDATED LATER WHEN FRAME # IS AVAILABLE.
FRAME_START = "1"
FRAME_END = ""
2016-05-17 03:19:58 +02:00
RANGE_BASE = ""
2016-04-13 15:47:22 +02:00
isFR = true
2016-03-29 00:52:59 +02:00
#RAW DEVELOPOMENT
2016-03-05 21:29:51 +01:00
HIGHLIGHT_MODE = "0"
2016-04-15 14:50:13 +02:00
PROXY_SCALE = "50%"
2016-03-05 21:29:51 +01:00
DEMO_MODE = "1"
GAMMA = "1 1"
2016-04-12 18:47:47 +02:00
SPACE = "0" #Color Space. Correlates to Gamma.
DEPTH = "-W -6"
2016-03-18 13:36:53 +01:00
DEPTH_OUT = "-depth 16"
2016-03-11 04:09:21 +01:00
NOISE_REDUC = ""
2016-03-29 00:52:59 +02:00
FOUR_COLOR = ""
CHROMA_SMOOTH = "--no-cs"
#FEATURES
DUAL_ISO = false
2016-03-12 21:33:27 +01:00
BADPIXELS = ""
2016-03-15 05:40:55 +01:00
BADPIXEL_PATH = ""
2016-03-12 21:33:27 +01:00
isBP = false
2016-03-29 00:52:59 +02:00
DARKFRAME = ""
2016-04-12 18:47:47 +02:00
SETTINGS_OUTPUT = false
2016-04-15 14:50:13 +02:00
BLACK_LEVEL = ""
2016-03-14 02:33:53 +01:00
#White Balance
WHITE = ""
2016-04-13 15:47:22 +02:00
GEN_WHITE = false
CAMERA_WB = true
2016-03-21 00:48:10 +01:00
WHITE_SPD = 15
2016-05-17 03:19:58 +02:00
isScale = false
SATPOINT = ""
2016-03-14 02:33:53 +01:00
#LUT
LUT = ""
isLUT = false
2016-03-05 21:29:51 +01:00
2016-03-29 00:25:49 +02:00
help( ) {
cat << EOF
Usage:
$( echo -e "\033[1m./convmlv.sh\033[0m [OPTIONS] \033[2mmlv_files\033[0m" )
INFO:
A script allowing you to convert .MLV, .RAW, or a folder with a DNG sequence into a sequence/movie with optional proxies. Images
are auto compressed. Many useful options are exposed, including formats ( EXR by default) .
2016-04-13 00:20:10 +02:00
$( echo -e " VERSION: ${ VERSION } " )
2016-03-29 00:25:49 +02:00
DEPENDENCIES: If you don't use a feature, you don' t need the dependency, though it' s best to download them all.
-mlv_dump: For DNG extraction from MLV. http://www.magiclantern.fm/forum/index.php?topic= 7122.0
-raw2dng: For DNG extraction from RAW. http://www.magiclantern.fm/forum/index.php?topic= 5404.0
-mlv2badpixels.sh: For bad pixel removal. https://bitbucket.org/daniel_fort/ml-focus-pixels/src
-dcraw: For RAW development.
-ffmpeg: For video creation.
-ImageMagick: Used for making proxy sequence.
-Python 3 + libs: Used for auto white balance.
-exiftool: Used in mlv2badpixels.sh.
2016-03-05 21:29:51 +01:00
2016-03-29 00:25:49 +02:00
OPTIONS, BASIC:
-v version - Print out version string.
-o<path> OUTDIR - The path in which files will be placed ( no space btwn -o and path) .
-M<path> MLV_DUMP - The path to mlv_dump ( no space btwn -M and path) . Default is './mlv_dump' .
-R<path> RAW_DUMP - The path to raw2dng ( no space btwn -M and path) . Default is './raw2dng' .
-y<path> PYTHON - The path or command used to invoke Python. Defaults to python3.
-B<path> MLV_BP - The path to mlv2badpixels.sh ( by dfort) . Default is './mlv2badpixels.sh' .
-T[ int] Max process threads, for multithreaded parts of the program. Defaults to 8.
OPTIONS, OUTPUT:
-i IMAGE - Specify to create an image sequence ( EXR by default) .
-f[ 0:3] IMG_FMT - Create a sequence of <format> format. 0 is default.
--> 0: EXR ( default) , 1: TIFF, 2: PNG, 3: Cineon ( DPX) ."
2016-03-05 21:29:51 +01:00
2016-03-29 00:25:49 +02:00
-c COMPRESS - Specify to turn ***off*** automatic image compression. Auto compression options otherwise used:
--> TIFF: ZIP ( best for 16-bit) , PIZ for EXR ( best for grainy images) , PNG: lvl 9 ( zlib deflate) , DPX: RLE.
-m MOVIE - Specify to create a Prores4444 video.
2016-03-14 02:33:53 +01:00
2016-03-29 00:25:49 +02:00
-p[ 0:3] PROXY - Specifies the proxy mode. 0 is default.
--> 0: No proxies. 1: H.264 proxy. 2: JPG proxy sequence. 3: Both.
--> JPG proxy won' t be developed w/o -i. H.264 proxy will be developed no matter what, if specified.
2016-03-05 21:29:51 +01:00
2016-03-29 00:25:49 +02:00
-s[ 0%:100%] PROXY_SCALE - the size, in %, of the proxy output.
--> Use -s<percentage>% ( no space) . 50% is default.
2016-03-14 02:33:53 +01:00
2016-03-29 00:25:49 +02:00
-k KEEP_DNGS - Specify if you want to keep the DNG files.
2016-04-13 15:47:22 +02:00
--> If you run convmlv on the dng_<name> folder, you will reuse those DNGs - no need to redevelop!
-E<range> FRAME_RANGE - Specify to process only this frame range.
2016-05-17 03:19:58 +02:00
--> Use s and e appropriately to specify start and end.
2016-04-13 15:47:22 +02:00
--> <range> must be written as <start>-<end>, indexed from 0 to ( # of frames - 1).
--> If you write a single number, only that frame will be developed.
2016-03-20 16:17:40 +01:00
2016-03-05 21:29:51 +01:00
2016-03-29 00:25:49 +02:00
OPTIONS, RAW DEVELOPMENT:
-d[ 0:3] DEMO_MODE - DCraw demosaicing mode. Higher modes are slower. 1 is default.
--> Use -d<mode> ( no space) . 0: Bilinear. 1: VNG ( default) . 2: PPG. 3: AHD.
2016-03-15 05:40:55 +01:00
2016-03-29 00:25:49 +02:00
-r FOUR_COLOR - Interpolate as four colors. Can often fix weirdness with VNG/AHD.
2016-03-13 08:04:18 +01:00
2016-03-29 00:25:49 +02:00
-H[ 0:9] HIGHLIGHT_MODE - 2 looks the best, but can break. 0 is a safe bet.
--> Use -H<number> ( no space) . 0 clips. 1 allows colored highlights. 2 adjusts highlights to grey.
--> 3 through 9 do highlight reconstruction with a certain tone. See dcraw documentation.
2016-03-15 05:40:55 +01:00
2016-03-29 00:25:49 +02:00
-C[ 0:3] CHROMA_SMOOTH - Apply chroma smoothing to the footage, which may help ex. with noise/bad pixels.
--> 0: None ( default) . 1: 2x2. 2: 3x3. 3: 5x5.
--> Only applied to .MLV files.
2016-03-14 02:33:53 +01:00
2016-03-29 00:25:49 +02:00
-n[ int] NOISE_REDUC - This is the threshold of wavelet denoising - specify to use.
--> Use -n<number>. Defaults to no denoising. 150 tends to be a good setting; 350 starts to look strange.
2016-03-05 21:29:51 +01:00
2016-04-12 18:47:47 +02:00
-g[ 0:4] SPACE - This is output color space. 0 is default.
2016-03-29 00:25:49 +02:00
--> Use -g<mode> ( no space) . 0: Linear. 1: 2.2 ( Adobe RGB) . 2: 1.8 ( ProPhoto RGB) . 3: sRGB. 4: BT.709.
2016-03-05 21:29:51 +01:00
2016-03-29 00:25:49 +02:00
-S SHALLOW - Specifying this option will create an 8-bit output instead of a 16-bit output.
--> It' ll kind of ruin the point of RAW, though....
2016-03-05 21:29:51 +01:00
2016-03-14 02:33:53 +01:00
2016-03-29 00:25:49 +02:00
OPTIONS, COLOR:
2016-05-17 03:19:58 +02:00
-w[ 0:2] WHITE - This is a modal white balance setting. Defaults to 1.
2016-03-29 00:25:49 +02:00
--> Use -w<mode> ( no space) .
--> 0: Auto WB ( Requires Python Deps) . 1: Camera WB. 2: No Change.
2016-05-17 03:19:58 +02:00
-L WHITE_SCALE - Specify to allow channels to clip as a result of any white balance.
--> Information loss occurs in certain situations.
-t[ int] SATPOINT - Specify the 14-bit saturation point of your camera.
--> Lower if -H1 yields purple highlights. Must be correct for highlight reconstruction.
--> Determine using the max value of 'dcraw -D -j -4 -T'
2016-03-26 23:17:45 +01:00
2016-03-29 00:25:49 +02:00
-A[ int] WHITE_SPD - This is the amount of samples from which AWB will be calculated.
-->About this many frames, averaged over the course of the sequence, will be used to do AWB.
2016-03-05 21:29:51 +01:00
2016-03-29 00:25:49 +02:00
-l<path> LUT - This is a path to the 3D LUT. Specify the path to the LUT to use it.
--> Compatibility determined by ffmpeg ( .cube is supported) .
--> LUT cannot be applied to EXR sequences.
--> Path to LUT ( no space between -l and path) .
2016-03-11 04:09:21 +01:00
2016-03-12 21:33:27 +01:00
2016-03-29 00:25:49 +02:00
OPTIONS, FEATURES:
-u DUAL_ISO - Process file as dual ISO.
2016-03-28 21:55:58 +02:00
2016-03-29 00:25:49 +02:00
-b BADPIXELS - Fix focus pixels issue using dfort' s script.
--> His file can be found at https://bitbucket.org/daniel_fort/ml-focus-pixels/src.
2016-04-12 18:47:47 +02:00
-a<path> BADPIXEL_PATH - Use, appending to the generated one, your own .badpixels file.
2016-03-29 00:25:49 +02:00
--> Use -a<path> ( no space) . How to: http://www.dl-c.com/board/viewtopic.php?f= 4& t = 686
-F<path> DARKFRAME - This is the path to the dark frame MLV, for noise reduction.
--> This is a noise reduction technique: Record 5 sec w/lens cap on & same settings as footage.
--> Pass in that MLV file ( not .RAW) as <path> to get noise reduction on all passed MLV files.
--> If the file extension is '.darkframe' , the file will be used as the preaveraged dark frame.
2016-04-12 18:47:47 +02:00
OPTIONS, INFO:
-e Output MLV settings.
2016-03-29 00:25:49 +02:00
-K Debian Package Deps - Lists dependecies. Works with apt-get on Debian; should be similar elsewhere.
--> No operations will be done .
--> Example: sudo apt-get install $ ( ./convmlv -K)
-Y Python Deps - Lists Python dependencies. Works with pip.
--> No operations will be done .
--> Example: sudo pip3 install $ ( ./convmlv -Y)
-N Manual Deps - Lists manual dependencies, which must be downloaded by hand.
--> There' s no automatic way to install these. See the forum post.
EOF
2016-03-12 21:33:27 +01:00
}
mkdirS( ) {
path = $1
2016-04-13 15:47:22 +02:00
cleanup = $2
2016-04-12 18:47:47 +02:00
cont = false
2016-03-14 02:33:53 +01:00
if [ -d $path ] ; then
2016-03-12 21:33:27 +01:00
while true; do
2016-03-14 02:33:53 +01:00
read -p " Overwrite ${ path } ? [y/n] " yn
2016-03-12 21:33:27 +01:00
case $yn in
2016-03-18 21:05:18 +01:00
[ Yy] * ) echo -e "" ; rm -rf $path ; mkdir -p $path >/dev/null 2>/dev/null; break
2016-03-12 21:33:27 +01:00
; ;
2016-04-13 15:47:22 +02:00
[ Nn] * ) echo -e " \n\e[0;31m\e[1mDirectory ${ path } won't be created.\e[0m\n " ; cont = true; ` $cleanup ` ; break
2016-03-12 21:33:27 +01:00
; ;
* ) echo -e "\e[0;31m\e[1mPlease answer yes or no.\e[0m\n"
; ;
esac
done
2016-03-14 02:33:53 +01:00
else
mkdir -p $path >/dev/null 2>/dev/null
2016-03-12 21:33:27 +01:00
fi
2016-04-12 18:47:47 +02:00
if [ $cont = = true ] ; then
2016-04-15 14:50:13 +02:00
let ARGNUM--
2016-04-12 18:47:47 +02:00
continue
fi
2016-03-05 21:29:51 +01:00
}
2016-03-29 00:52:59 +02:00
parseArgs( ) { #Fixing this would be difficult.
2016-04-12 18:47:47 +02:00
if [ ${ ARG } = = "-e" ] ; then #This very special arguments would fuck everything up if left to roam free...
SETTINGS_OUTPUT = true
let ARGNUM--
continue
fi
if [ ` echo " ${ ARG } " | cut -c1-1` = "-" ] ; then
if [ ` echo " ${ ARG } " | cut -c2-2` = "H" ] ; then
HIGHLIGHT_MODE = ` echo " ${ ARG } " | cut -c3-3`
2016-03-05 21:29:51 +01:00
let ARGNUM--
fi
2016-04-12 18:47:47 +02:00
if [ ` echo " ${ ARG } " | cut -c2-2` = "s" ] ; then
PROXY_SCALE = ` echo " ${ ARG } " | cut -c3-${# ARG } >/dev/null 2>/dev/null` #Might error. We'll check, no worries.
if [ -z $PROXY_SCALE ] ; then
echo -e "\e[0;31m\e[1mNo proxy scale set!\e[0m\n"
exit 1
fi
2016-03-14 02:33:53 +01:00
let ARGNUM--
fi
2016-04-12 18:47:47 +02:00
#~ if [ `echo "${ARG}" | cut -c2-2` = "e" ]; then
#~ SETTINGS_OUTPUT=true
#~ let ARGNUM--
#~ fi
2016-03-20 01:42:46 +01:00
if [ ` echo ${ ARG } | cut -c2-2` = "u" ] ; then
2016-03-21 00:37:02 +01:00
DUAL_ISO = true
2016-03-20 16:17:40 +01:00
let ARGNUM--
fi
2016-04-13 15:47:22 +02:00
if [ ` echo ${ ARG } | cut -c2-2` = "E" ] ; then
2016-05-17 03:19:58 +02:00
RANGE_BASE = $( echo ${ ARG } | cut -c3-${# ARG } )
2016-04-13 15:47:22 +02:00
isFR = false
let ARGNUM--
fi
2016-03-26 23:17:45 +01:00
if [ ` echo ${ ARG } | cut -c2-2` = "F" ] ; then
DARKFRAME = ` echo ${ ARG } | cut -c3-${# ARG } `
let ARGNUM--
fi
2016-05-17 03:19:58 +02:00
if [ ` echo ${ ARG } | cut -c2-2` = "t" ] ; then
tmpSat = ` echo ${ ARG } | cut -c3-${# ARG } `
SATPOINT = " -S ${ tmpSat } "
let ARGNUM--
fi
2016-03-20 16:17:40 +01:00
if [ ` echo ${ ARG } | cut -c2-2` = "r" ] ; then
2016-03-15 05:40:55 +01:00
FOUR_COLOR = "-f"
2016-03-05 21:29:51 +01:00
let ARGNUM--
fi
2016-03-20 01:42:46 +01:00
if [ ` echo ${ ARG } | cut -c2-2` = "f" ] ; then
mode = ` echo ${ ARG } | cut -c3-3`
case ${ mode } in
"0" ) IMG_FMT = "exr"
; ;
"1" ) IMG_FMT = "tiff"
; ;
2016-03-21 00:37:02 +01:00
"2" ) IMG_FMT = "png"
; ;
"3" ) IMG_FMT = "dpx"
; ;
2016-03-20 01:42:46 +01:00
esac
let ARGNUM--
fi
2016-03-29 00:25:49 +02:00
if [ ` echo ${ ARG } | cut -c2-2` = "C" ] ; then
mode = ` echo ${ ARG } | cut -c3-3`
case ${ mode } in
"0" ) CHROMA_SMOOTH = "--no-cs"
; ;
"1" ) CHROMA_SMOOTH = "--cs2x2"
; ;
"2" ) CHROMA_SMOOTH = "--cs3x3"
; ;
"3" ) CHROMA_SMOOTH = "--cs5x5"
; ;
esac
let ARGNUM--
fi
2016-03-13 08:04:18 +01:00
if [ ` echo ${ ARG } | cut -c2-2` = "y" ] ; then
PYTHON = ` echo ${ ARG } | cut -c3-${# ARG } `
BAL = " ${ PYTHON } balance.py "
let ARGNUM--
fi
2016-03-11 04:09:21 +01:00
if [ ` echo ${ ARG } | cut -c2-2` = "v" ] ; then
2016-03-14 02:33:53 +01:00
echo -e " convmlv v ${ VERSION } "
2016-03-11 04:09:21 +01:00
let ARGNUM--
fi
2016-03-05 21:29:51 +01:00
if [ ` echo ${ ARG } | cut -c2-2` = "m" ] ; then
2016-03-14 02:33:53 +01:00
MOVIE = true
2016-03-05 21:29:51 +01:00
let ARGNUM--
fi
2016-03-18 13:36:53 +01:00
if [ ` echo ${ ARG } | cut -c2-2` = "c" ] ; then
2016-05-11 16:40:54 +02:00
isCOMPRESS = false
2016-03-18 13:36:53 +01:00
let ARGNUM--
fi
2016-05-17 03:19:58 +02:00
if [ ` echo ${ ARG } | cut -c2-2` = "L" ] ; then
isScale = true
let ARGNUM--
fi
2016-03-05 21:29:51 +01:00
if [ ` echo ${ ARG } | cut -c2-2` = "M" ] ; then
MLV_DUMP = ` echo ${ ARG } | cut -c3-${# ARG } `
let ARGNUM--
fi
2016-03-13 08:16:10 +01:00
if [ ` echo ${ ARG } | cut -c2-2` = "R" ] ; then
RAW_DUMP = ` echo ${ ARG } | cut -c3-${# ARG } `
let ARGNUM--
fi
2016-03-05 21:29:51 +01:00
if [ ` echo ${ ARG } | cut -c2-2` = "p" ] ; then
2016-03-14 02:33:53 +01:00
PROXY = ` echo ${ ARG } | cut -c3-3`
2016-03-15 05:40:55 +01:00
case ${ PROXY } in
2016-03-14 02:33:53 +01:00
"0" ) isJPG = false; isH264 = false
; ;
"1" ) isJPG = false; isH264 = true
; ;
"2" ) isJPG = true; isH264 = false
; ;
"3" ) isJPG = true; isH264 = true
; ;
esac
2016-03-05 21:29:51 +01:00
let ARGNUM--
fi
2016-03-14 02:33:53 +01:00
if [ ` echo ${ ARG } | cut -c2-2` = "i" ] ; then
IMAGES = true
2016-03-05 21:29:51 +01:00
let ARGNUM--
fi
if [ ` echo ${ ARG } | cut -c2-2` = "o" ] ; then
OUTDIR = ` echo ${ ARG } | cut -c3-${# ARG } `
let ARGNUM--
fi
2016-03-15 05:40:55 +01:00
if [ ` echo ${ ARG } | cut -c2-2` = "a" ] ; then
BADPIXEL_PATH = ` echo ${ ARG } | cut -c3-${# ARG } `
let ARGNUM--
fi
2016-03-11 04:09:21 +01:00
if [ ` echo ${ ARG } | cut -c2-2` = "n" ] ; then
setting = ` echo ${ ARG } | cut -c3-${# ARG } `
NOISE_REDUC = " -n ${ setting } "
let ARGNUM--
fi
2016-03-21 00:37:02 +01:00
if [ ` echo ${ ARG } | cut -c2-2` = "T" ] ; then
setting = ` echo ${ ARG } | cut -c3-${# ARG } `
THREADS = $setting
let ARGNUM--
fi
2016-03-05 21:29:51 +01:00
if [ ` echo ${ ARG } | cut -c2-2` = "h" ] ; then
help
2016-03-14 02:33:53 +01:00
exit 0
2016-03-05 21:29:51 +01:00
fi
if [ ` echo ${ ARG } | cut -c2-2` = "d" ] ; then
DEMO_MODE = ` echo ${ ARG } | cut -c3-3`
let ARGNUM--
fi
if [ ` echo ${ ARG } | cut -c2-2` = "g" ] ; then
mode = ` echo ${ ARG } | cut -c3-3`
case ${ mode } in
2016-04-12 18:47:47 +02:00
"0" ) GAMMA = "1 1" ; SPACE = "0"
2016-03-05 21:29:51 +01:00
; ;
2016-04-12 18:47:47 +02:00
"1" ) GAMMA = "2.2 0" ; SPACE = "2"
2016-03-05 21:29:51 +01:00
; ;
2016-04-12 18:47:47 +02:00
"2" ) GAMMA = "1.8 0" ; SPACE = "4"
2016-03-05 21:29:51 +01:00
; ;
2016-04-12 18:47:47 +02:00
"3" ) GAMMA = "2.4 12.9" ; SPACE = "1"
2016-03-05 21:29:51 +01:00
; ;
2016-04-12 18:47:47 +02:00
"4" ) GAMMA = "2.222 4.5" ; SPACE = "0"
2016-03-05 21:29:51 +01:00
; ;
esac
2016-04-12 18:47:47 +02:00
2016-03-05 21:29:51 +01:00
let ARGNUM--
fi
2016-03-14 02:33:53 +01:00
if [ ` echo ${ ARG } | cut -c2-2` = "S" ] ; then
2016-03-05 21:29:51 +01:00
DEPTH = ""
2016-03-18 13:36:53 +01:00
DEPTH_OUT = ""
2016-03-05 21:29:51 +01:00
let ARGNUM--
fi
2016-03-14 02:33:53 +01:00
if [ ` echo ${ ARG } | cut -c2-2` = "w" ] ; then
2016-03-05 21:29:51 +01:00
mode = ` echo ${ ARG } | cut -c3-3`
case ${ mode } in
2016-03-14 02:33:53 +01:00
"0" ) CAMERA_WB = false; GEN_WHITE = true #Will generate white balance.
2016-03-05 21:29:51 +01:00
; ;
2016-03-14 02:33:53 +01:00
"1" ) CAMERA_WB = true; GEN_WHITE = false;
2016-03-05 21:29:51 +01:00
; ;
2016-04-13 15:47:22 +02:00
"2" ) WHITE = "-r 1 1 1 1" ; CAMERA_WB = false; GEN_WHITE = false
2016-03-05 21:29:51 +01:00
; ;
esac
let ARGNUM--
fi
if [ ` echo ${ ARG } | cut -c2-2` = "K" ] ; then
2016-03-28 21:55:58 +02:00
echo $DEB_DEPS
2016-03-05 21:29:51 +01:00
exit 0
fi
if [ ` echo ${ ARG } | cut -c2-2` = "l" ] ; then
2016-03-14 02:33:53 +01:00
LUT_PATH = ` echo ${ ARG } | cut -c3-${# ARG } `
if [ ! -f $LUT_PATH ] ; then
2016-03-05 21:29:51 +01:00
echo "LUT not found!!!"
2016-03-14 02:33:53 +01:00
echo $LUT_PATH
2016-03-05 21:29:51 +01:00
exit 1
fi
2016-03-14 02:33:53 +01:00
LUT = " lut3d= ${ LUT_PATH } "
2016-03-05 21:29:51 +01:00
isLUT = true
let ARGNUM--
fi
2016-03-12 21:33:27 +01:00
if [ ` echo ${ ARG } | cut -c2-2` = "b" ] ; then
isBP = true
let ARGNUM--
fi
2016-03-14 02:33:53 +01:00
if [ ` echo ${ ARG } | cut -c2-2` = "k" ] ; then
KEEP_DNGS = true
let ARGNUM--
fi
2016-03-12 21:33:27 +01:00
if [ ` echo ${ ARG } | cut -c2-2` = "B" ] ; then
MLV_BP = ` echo ${ ARG } | cut -c3-${# ARG } `
2016-03-14 02:33:53 +01:00
let ARGNUM--
fi
if [ ` echo ${ ARG } | cut -c2-2` = "A" ] ; then
WHITE_SPD = ` echo ${ ARG } | cut -c3-${# ARG } `
2016-03-12 21:33:27 +01:00
let ARGNUM--
fi
2016-03-13 08:04:18 +01:00
if [ ` echo ${ ARG } | cut -c2-2` = "Y" ] ; then
echo $PIP_DEPS
exit 0
fi
2016-03-28 21:55:58 +02:00
if [ ` echo ${ ARG } | cut -c2-2` = "N" ] ; then
echo $MAN_DEPS
exit 0
fi
2016-03-05 21:29:51 +01:00
continue
fi
2016-03-14 02:33:53 +01:00
}
checkDeps( ) {
2016-03-26 23:17:45 +01:00
if [ ! -f $ARG ] && [ ! -d $ARG ] ; then
2016-03-14 02:33:53 +01:00
echo -e " \e[0;31m\e[1mFile ${ ARG } not found!\e[0m\n "
exit 1
fi
2016-04-13 15:47:22 +02:00
if [ ! -d $ARG ] && [ $( echo $( wc -c ${ ARG } | cut -d " " -f1) / 1000 | bc) -lt 1000 ] ; then #Check that the file is not too small.
2016-04-12 18:47:47 +02:00
cont = false
while true; do
read -p " ${ ARG } is unusually small at $( wc -c ${ ARG } ) KB. Continue, skip, or remove? [c/s/r] " csr
case $ysr in
[ Cc] * ) "\n\e[0;31m\e[1mContinuing.\e[0m\n" ; break
; ;
[ Ss] * ) echo -e "\n\e[0;31m\e[1mSkipping.\e[0m\n" ; cont = true; break
; ;
[ Rr] * ) echo -e " \n\e[0;31m\e[1mRemoving ${ ARG } .\e[0m\n " ; cont = true; rm $ARG ; break
; ;
* ) echo -e "\e[0;31m\e[1mPlease answer continue, skip, or remove.\e[0m\n"
; ;
esac
done
if [ $cont = = true ] ; then
continue
fi
fi
2016-03-26 23:17:45 +01:00
if [ ! -f $DARKFRAME ] && [ $DARKFRAME != "" ] ; then
echo -e " \e[0;31m\e[1mDarkframe MLV ${ DARKFRAME } not found!\e[0m\n "
exit 1
fi
2016-03-14 02:33:53 +01:00
if [ ! -f $PYTHON_BAL ] ; then
echo -e " \e[0;31m\e[1mAWB ${ PYTHON_BAL } not found! Execution will continue without AWB.\e[0m\n "
fi
if [ ! -f $MLV_DUMP ] ; then
echo -e " \e[0;31m\e[1m ${ MLV_DUMP } not found!\e[0m\n "
exit 1
fi
if [ ! -f $RAW_DUMP ] ; then
echo -e " \e[0;31m\e[1m ${ RAW_DUMP } not found! Execution will continue without .RAW processing capability.\e[0m\n "
fi
if [ ! -f $MLV_BP ] ; then
2016-03-21 00:37:02 +01:00
echo -e " \e[0;31m\e[1m ${ MLV_BP } not found! Execution will continue without badpixel removal.\e[0m\n "
fi
if [ ! -f $CR_HDR ] ; then
echo -e " \e[0;31m\e[1m ${ CR_HDR } not found! Execution will continue without Dual ISO processing capability.\e[0m\n "
2016-03-14 02:33:53 +01:00
fi
2016-03-13 08:04:18 +01:00
}
2016-04-15 14:50:13 +02:00
bold( ) {
echo -e " \e[1m ${ 1 } \e[0m "
}
prntSet( ) {
cat << EOF
$( bold CameraName) : ${ CAM_NAME }
$( bold RecordingDate) : ${ REC_DATE }
$( bold RecordingTime) : ${ REC_TIME }
$( bold FPS) : ${ FPS }
$( bold TotalFrames) : ${ FRAMES }
$( bold Aperture) : ${ APERTURE }
$( bold ISO) : ${ ISO }
$( bold ShutterSpeed) : ${ SHUTTER }
$( bold WBKelvin) : ${ KELVIN }
$( bold FocalLength) : ${ LEN_FOCAL }
2016-05-11 16:40:54 +02:00
2016-04-15 14:50:13 +02:00
EOF
}
mlvSet( ) {
FPS = ` ${ MLV_DUMP } -v -m ${ ARG } | grep FPS | awk 'FNR == 1 {print $3}' `
CAM_NAME = ` ${ MLV_DUMP } -v -m ${ ARG } | grep 'Camera Name' | cut -d "'" -f 2`
2016-05-17 17:15:56 +02:00
FRAMES = ` ${ MLV_DUMP } ${ ARG } | awk '/Processed/ { print $2; }' ` #Use actual processed frames as opposed to what the sometimes incorrect metadata thinks.
2016-04-15 14:50:13 +02:00
ISO = ` ${ MLV_DUMP } -v -m ${ ARG } | grep 'ISO' | sed 's/[[:alpha:] ]*: //' | cut -d$'\n' -f2`
APERTURE = ` ${ MLV_DUMP } -v -m ${ ARG } | grep 'Aperture' | sed 's/[[:alpha:] ]*: //' | cut -d$'\n' -f1`
LEN_FOCAL = ` ${ MLV_DUMP } -v -m ${ ARG } | grep 'Focal Len' | sed 's/[[:alpha:] ]*: //' | cut -d$'\n' -f1`
SHUTTER = ` ${ MLV_DUMP } -v -m ${ ARG } | grep 'Shutter' | sed 's/[[:alpha:] ]*: //' | grep -oP '\(\K[^)]+' | cut -d$'\n' -f1`
REC_DATE = ` ${ MLV_DUMP } -v -m ${ ARG } | grep 'Date' | sed 's/[[:alpha:] ]*: //' | cut -d$'\n' -f1`
REC_TIME = ` ${ MLV_DUMP } -v -m ${ ARG } | grep 'Time: [0-2][0-9]\:*' | sed 's/[[:alpha:] ]*: //' | cut -d$'\n' -f1`
KELVIN = ` ${ MLV_DUMP } -v -m ${ ARG } | grep 'Kelvin' | sed 's/[[:alpha:] ]*: //' | cut -d$'\n' -f1`
}
2016-03-18 13:36:53 +01:00
2016-03-13 08:04:18 +01:00
if [ $# = = 0 ] ; then
help
2016-03-14 02:33:53 +01:00
echo -e "\e[0;31m\e[1mNo arguments, no joy!!!\e[0m\n"
2016-03-13 08:04:18 +01:00
fi
ARGNUM = $#
for ARG in $* ; do
2016-03-14 02:33:53 +01:00
#Evaluate command line arguments. ARGNUM decrements to keep track of how many files there are to process.
2016-03-29 00:52:59 +02:00
parseArgs # <-- Has a continue statement inside of it if we haven't reached the output.
#Check that things exist.
2016-03-14 02:33:53 +01:00
checkDeps
2016-03-11 04:09:21 +01:00
2016-04-12 18:47:47 +02:00
#The Very Basics
BASE = " $( basename " $ARG " ) "
EXT = " ${ BASE ##*. } "
TRUNC_ARG = " ${ BASE %.* } "
2016-05-11 16:40:54 +02:00
setBL = true
2016-04-13 15:47:22 +02:00
2016-04-12 18:47:47 +02:00
#Potentially Print Settings
if [ $SETTINGS_OUTPUT = = true ] ; then
if [ $EXT = = "MLV" ] || [ $EXT = = "mlv" ] ; then
# Read the header for interesting settings :) .
2016-04-15 14:50:13 +02:00
mlvSet
2016-04-12 18:47:47 +02:00
echo -e " \n\e[1m\e[0;32m\e[1mFile\e[0m\e[0m: ${ ARG } \n "
2016-04-15 14:50:13 +02:00
prntSet
2016-04-12 18:47:47 +02:00
continue
else
echo -e " Cannot print settings from ${ ARG } ; it's not an MLV file! "
fi
fi
2016-03-14 02:33:53 +01:00
#List remaining files to process.
remFiles = ${ @ : ` echo " $# - ( $ARGNUM - 1) " | bc` : $# }
remArr = $( echo $remFiles )
2016-03-05 21:29:51 +01:00
2016-03-14 02:33:53 +01:00
list = ""
for item in $remArr ; do
2016-03-15 05:40:55 +01:00
if [ -z " ${ list } " ] ; then
2016-03-14 02:33:53 +01:00
list = " ${ item } "
else
list = " ${ list } , ${ item } "
fi
done
2016-03-21 00:37:02 +01:00
if [ $ARGNUM = = 1 ] ; then
echo -e " \n\e[1m ${ ARGNUM } File Left to Process:\e[0m ${ list } \n "
else
echo -e " \n\e[1m ${ ARGNUM } Files Left to Process:\e[0m ${ list } \n "
fi
2016-03-14 02:33:53 +01:00
#PREPARATION
2016-03-29 00:52:59 +02:00
#Establish Basic Directory Structure.
2016-03-15 05:40:55 +01:00
if [ $OUTDIR != $PWD ] && [ isOutGen = = false ] ; then
2016-03-29 00:52:59 +02:00
mkdir -p $OUTDIR #NO RISKS. WE REMEMBER THE LUT.py. RIP.
2016-03-15 05:40:55 +01:00
isOutGen = true
2016-03-14 03:00:00 +01:00
fi
2016-03-14 02:33:53 +01:00
2016-03-12 21:33:27 +01:00
FILE = " ${ OUTDIR } / ${ TRUNC_ARG } "
TMP = " ${ FILE } /tmp_ ${ TRUNC_ARG } "
2016-04-15 14:50:13 +02:00
2016-05-11 16:40:54 +02:00
#Manage if it's a DNG argument. Also, create FILE and TMP.
2016-04-13 15:47:22 +02:00
DEVELOP = true
if [ -d $ARG ] && [ ` basename ${ ARG } | cut -c1-3` = = "dng" ] && [ -f " ${ ARG } /../settings.txt " ] ; then #If we're reusing a dng sequence, copy over before we delete the original.
echo -e " \e[1m ${ TRUNC_ARG } :\e[0m Moving DNGs from previous run...\n " #Use prespecified DNG sequence.
2016-03-05 21:29:51 +01:00
2016-04-13 15:47:22 +02:00
DNG_LOC = ${ OUTDIR } /tmp_reused
mkdir -p ${ OUTDIR } /tmp_reused
2016-03-15 05:40:55 +01:00
2016-04-13 15:47:22 +02:00
find $ARG -iname "*.dng" | xargs -I { } mv { } $DNG_LOC #Copying DNGs to temporary location.
2016-03-15 05:40:55 +01:00
2016-04-13 15:47:22 +02:00
FPS = ` cat ${ ARG } /../settings.txt | grep "FPS" | cut -d $" " -f2` #Grab FPS from previous run.
FRAMES = ` cat ${ ARG } /../settings.txt | grep "Frames" | cut -d $" " -f2` #Grab FRAMES from previous run.
cp " ${ ARG } /../settings.txt " $DNG_LOC
2016-03-12 21:33:27 +01:00
2016-04-13 15:47:22 +02:00
TRUNC_ARG = ` echo $TRUNC_ARG | cut -c5-${# TRUNC_ARG } `
oldARG = $ARG
ARG = $( dirname $ARG ) /${ TRUNC_ARG }
BASE = " $( basename " $ARG " ) "
EXT = " ${ BASE ##*. } "
dngLocClean( ) {
find $DNG_LOC -iname "*.dng" | xargs -I { } mv { } $oldARG
rm -rf $DNG_LOC
}
FILE = " ${ OUTDIR } / ${ TRUNC_ARG } "
TMP = " ${ FILE } /tmp_ ${ TRUNC_ARG } " #Remove dng_ from ARG by redefining basic constants. Ready to go!
mkdirS $FILE dngLocClean
mkdirS $TMP #Make the folders.
find $DNG_LOC -iname "*.dng" | xargs -I { } mv { } $TMP #Moving files to where they need to go.
cp " ${ DNG_LOC } /settings.txt " $FILE
2016-05-11 16:40:54 +02:00
setBL = false
2016-04-13 15:47:22 +02:00
DEVELOP = false
rm -r $DNG_LOC
elif [ -d $ARG ] ; then #If it's a DNG sequence, but not a reused one.
mkdirS $FILE
mkdirS $TMP
FPS = 24 #Set it to a safe default.
echo -e " \e[1m ${ TRUNC_ARG } :\e[0m Using specified folder of RAW sequences...\n " #Use prespecified DNG sequence.
2016-05-11 16:40:54 +02:00
2016-04-13 15:47:22 +02:00
find $ARG -iname "*.dng" | xargs -I { } cp { } $TMP #Copying DNGs to TMP.
FRAMES = $( find ${ TMP } -name "*.dng" | wc -l)
else
mkdirS $FILE
mkdirS $TMP
2016-03-12 21:33:27 +01:00
fi
2016-03-05 21:29:51 +01:00
2016-03-26 23:17:45 +01:00
#Darkframe Averaging
2016-03-27 01:02:26 +01:00
if [ ! $DARKFRAME = = "" ] ; then
2016-03-26 23:17:45 +01:00
echo -e " \e[1m ${ TRUNC_ARG } :\e[0m Creating darkframe for subtraction...\n "
2016-03-27 00:12:53 +01:00
avgFrame = " ${ TMP } /avg.darkframe " #The path to the averaged darkframe file.
2016-03-26 23:17:45 +01:00
2016-03-27 00:12:53 +01:00
darkBase = " $( basename " $ARG " ) "
darkExt = " ${ BASE ##*. } "
if [ darkExt != 'darkframe' ] ; then
$MLV_DUMP -o " ${ avgFrame } " -a $DARKFRAME >/dev/null 2>/dev/null
else
cp $DARKFRAME $avgFrame #Copy the preaveraged frame if the extension is .darkframe.
fi
DARK_PROC = " -s ${ avgFrame } "
2016-03-13 08:04:18 +01:00
fi
2016-05-17 03:19:58 +02:00
setRange( ) {
#FRAMES must be set at this point.
if [ [ $isFR = = true ] ] ; then #Ensure that FRAME_RANGE is set.
FRAME_RANGE = " 1- ${ FRAMES } "
FRAME_START = "1"
FRAME_END = $FRAMES
else
base = $( echo $RANGE_BASE | sed -e 's:s:0:g' | sed -e " s:e: $( echo " $FRAMES - 1 " | bc) :g " ) #FRAMES is incremented in a moment.
#~ FRAME_RANGE_ZERO="$(echo $base | cut -d"-" -f1)-$(echo $base | cut -d"-" -f2)" #Number from 0. Useless as of now.
FRAME_RANGE = " $( echo " $( echo $base | cut -d"-" -f1) + 1 " | bc) - $( echo " $( echo $base | cut -d"-" -f2) + 1 " | bc) " #Number from 1.
FRAME_START = $( echo ${ FRAME_RANGE } | cut -d"-" -f1)
FRAME_END = $( echo ${ FRAME_RANGE } | cut -d"-" -f2)
fi
}
2016-05-11 16:40:54 +02:00
#Develop sequence if needed.
2016-04-13 15:47:22 +02:00
if [ $DEVELOP = = true ] ; then
2016-03-26 23:17:45 +01:00
echo -e " \e[1m ${ TRUNC_ARG } :\e[0m Dumping to DNG Sequence...\n "
2016-03-29 00:25:49 +02:00
if [ ! $DARKFRAME = = "" ] && [ ! $CHROMA_SMOOTH = = "--no-cs" ] ; then #Just to let the user know that certain features are impossible with RAW.
rawStat = " *Skipping Darkframe subtraction and Chroma Smoothing for RAW file ${ TRUNC_ARG } . "
elif [ ! $DARKFRAME = = "" ] ; then
2016-03-26 23:17:45 +01:00
rawStat = " *Skipping Darkframe subtraction for RAW file ${ TRUNC_ARG } . "
2016-03-29 00:25:49 +02:00
elif [ ! $CHROMA_SMOOTH = = "--no-cs" ] ; then
rawStat = " *Skipping Chroma Smoothing for RAW file ${ TRUNC_ARG } . "
2016-03-26 23:17:45 +01:00
else
rawStat = "\c"
fi
2016-03-14 02:33:53 +01:00
2016-05-17 03:19:58 +02:00
#IF extension is RAW, convert to MLV. All the newer features are MLV-only, because of mlv_dump's amazingness.
2016-03-26 23:17:45 +01:00
if [ $EXT = = "MLV" ] || [ $EXT = = "mlv" ] ; then
2016-04-12 18:47:47 +02:00
# Read the header for interesting settings :) .
2016-04-15 14:50:13 +02:00
mlvSet
2016-05-17 03:19:58 +02:00
setRange
2016-04-12 18:47:47 +02:00
2016-04-15 14:50:13 +02:00
prntSet > $FILE /settings.txt
sed -i -r "s/\x1B\[([0-9]{1,2}(;[0-9]{1,2})?)?[m|K]//g" $FILE /settings.txt #Strip escape sequences.
2016-04-13 15:47:22 +02:00
2016-05-17 03:19:58 +02:00
#Dual ISO might want to do the chroma smoothing. In which case, don't do it now!
2016-04-13 15:47:22 +02:00
if [ $DUAL_ISO = = true ] ; then
2016-05-17 17:15:56 +02:00
smooth = "--no-cs"
2016-04-13 15:47:22 +02:00
else
smooth = $CHROMA_SMOOTH
fi
2016-04-12 18:47:47 +02:00
2016-05-17 03:19:58 +02:00
#Create new MLV with adequate number of frames, if needed.
REAL_MLV = $ARG
2016-05-17 17:15:56 +02:00
REAL_FRAMES = $FRAMES
2016-05-17 03:19:58 +02:00
if [ $isFR = = false ] ; then
REAL_MLV = " ${ TMP } /newer.mlv "
$MLV_DUMP $ARG -o ${ REAL_MLV } -f ${ FRAME_RANGE } >/dev/null 2>/dev/null
2016-05-17 17:15:56 +02:00
REAL_FRAMES = ` ${ MLV_DUMP } ${ REAL_MLV } | awk '/Processed/ { print $2; }' `
2016-05-17 03:19:58 +02:00
fi
2016-05-17 17:15:56 +02:00
fileRanges = ( ` echo $( $SRANGE $REAL_FRAMES $THREADS ) ` )
2016-05-17 03:19:58 +02:00
$MLV_DUMP $REAL_MLV $DARK_PROC -o " ${ TMP } / ${ TRUNC_ARG } _ " --dng $smooth --batch | {
while IFS = read -r line; do
output = $( echo $line | grep -Po 'V.*A' | cut -d':' -f2 | cut -d$' ' -f1)
if [ [ $output = = "" ] ] ; then
continue ;
fi
cur = $( echo " $( echo " $output " | cut -d'/' -f1) + $( echo " $FRAME_START - 1 " | bc) " | bc)
echo -e " \e[2K\rDumping MLV to DNG: Frame ${ cur } / ${ FRAME_END } \c "
done
echo -e " \e[2K\rDumping MLV to DNG: Frame ${ FRAME_END } / ${ FRAME_END } \c " #Ensure it looks right at the end.
echo -e "\n"
} #Progress Bar
#Renumber DNGs if needed.
if [ $isFR = = false ] ; then
count = $FRAME_START
tmpOut = ${ TMP } /tmpOut #Use temporary folder.
mkdir $tmpOut
for dng in ${ TMP } /*.dng; do
if [ $count -gt $FRAME_END ] ; then echo "ERROR! Count greater than end!" ; fi
mv $dng $( printf " ${ tmpOut } / ${ TRUNC_ARG } _%06d.dng " $count )
let count++
done
mv $tmpOut /* $TMP
rm -r $tmpOut
fi
2016-03-26 23:17:45 +01:00
elif [ $EXT = = "RAW" ] || [ $EXT = = "raw" ] ; then
echo -e $rawStat
2016-03-27 00:12:53 +01:00
FPS = ` $RAW_DUMP $ARG " ${ TMP } / ${ TRUNC_ARG } _ " | awk '/FPS/ { print $3; }' ` #Run the dump while awking for the FPS.
2016-03-26 23:17:45 +01:00
fi
2016-05-17 03:19:58 +02:00
BLACK_LEVEL = $( exiftool -BlackLevel -s -s -s ${ TMP } /${ TRUNC_ARG } _$( printf "%06d" $( echo " $FRAME_START " | bc) ) .dng)
2016-04-15 14:50:13 +02:00
fi
2016-05-17 03:19:58 +02:00
BLACK_LEVEL = $( exiftool -BlackLevel -s -s -s ${ TMP } /${ TRUNC_ARG } _$( printf "%06d" $( echo " $FRAME_START " | bc) ) .dng) #Use the first DNG to get the correct black level.
setRange #Just to be sure the frame range was set, in case the input isn't MLV.
2016-04-13 15:47:22 +02:00
#Create badpixels file.
2016-05-17 03:19:58 +02:00
if [ $isBP = = true ] && [ $DEVELOP = = true ] ; then
2016-04-13 15:47:22 +02:00
echo -e " \e[1m ${ TRUNC_ARG } :\e[0m Generating badpixels file...\n "
bad_name = " badpixels_ ${ TRUNC_ARG } .txt "
gen_bad = " ${ TMP } / ${ bad_name } "
if [ $EXT = = "MLV" ] || [ $EXT = = "mlv" ] ; then
$MLV_BP -o $gen_bad $ARG
elif [ $EXT = = "RAW" ] || [ $EXT = = "raw" ] ; then
$MLV_BP -o $gen_bad $ARG
fi
2016-04-15 14:50:13 +02:00
if [ [ ! -z $BADPIXEL_PATH ] ] ; then
2016-04-13 15:47:22 +02:00
if [ -f " ${ TMP } / ${ bad_name } " ] ; then
echo -e " \e[1m ${ TRUNC_ARG } :\e[0m Concatenating with specified badpixels file...\n "
mv " ${ TMP } / ${ bad_name } " " ${ TMP } /bp_gen "
cp $BADPIXEL_PATH " ${ TMP } /bp_imp "
{ cat " ${ TMP } /bp_gen " && cat " ${ TMP } /bp_imp " ; } > " ${ TMP } / ${ bad_name } " #Combine specified file with the generated file.
else
cp $BADPIXEL_PATH " ${ TMP } / ${ bad_name } "
fi
fi
BADPIXELS = " -P ${ gen_bad } "
2016-04-15 14:50:13 +02:00
elif [ [ ! -z $BADPIXEL_PATH ] ] ; then
2016-04-13 15:47:22 +02:00
echo -e " \e[1m ${ TRUNC_ARG } :\e[0m Using specified badpixels file...\n "
2016-04-15 14:50:13 +02:00
bad_name = " badpixels_ ${ TRUNC_ARG } .txt "
gen_bad = " ${ TMP } / ${ bad_name } "
cp $BADPIXEL_PATH " ${ gen_bad } "
2016-04-13 15:47:22 +02:00
BADPIXELS = " -P ${ gen_bad } "
2016-04-15 14:50:13 +02:00
#~ echo $gen_bad
2016-03-26 23:17:45 +01:00
fi
2016-04-13 15:47:22 +02:00
2016-03-20 16:17:40 +01:00
#Dual ISO Conversion
2016-03-21 00:37:02 +01:00
if [ $DUAL_ISO = = true ] ; then
2016-03-20 16:17:40 +01:00
echo -e " \e[1m ${ TRUNC_ARG } :\e[0m Combining Dual ISO...\n "
2016-03-21 00:37:02 +01:00
#Original DNGs will be moved here.
2016-03-20 16:17:40 +01:00
oldFiles = " ${ TMP } /orig_dng "
mkdirS $oldFiles
2016-05-17 03:19:58 +02:00
inc_iso( ) { #6 args: 1{} 2$CR_HDR 3$TMP 4$FRAME_END 5$oldFiles 6$CHROMA_SMOOTH. {} is a path. Progress is thread safe. Experiment gone right :).
2016-04-13 15:47:22 +02:00
count = $( echo " $( echo $( echo $1 | rev | cut -d "_" -f 1 | rev | cut -d "." -f 1 | grep "[0-9]" ) | bc) + 1 " | bc) #Get count from filename.
2016-03-29 00:52:59 +02:00
2016-04-13 15:47:22 +02:00
$2 $1 $6 >/dev/null 2>/dev/null #The LQ option, --mean23, is completely unusable in my opinion.
2016-03-20 16:17:40 +01:00
name = $( basename " $1 " )
2016-03-21 00:37:02 +01:00
mv " ${ 3 } / ${ name %.* } .dng " $5 #Move away original dngs.
mv " ${ 3 } / ${ name %.* } .DNG " " ${ 3 } / ${ name %.* } .dng " #Rename *.DNG to *.dng.
2016-03-20 16:17:40 +01:00
2016-03-29 00:52:59 +02:00
echo -e " \e[2K\rDual ISO Development: Frame ${ count } / ${ 4 } \c "
2016-03-20 16:17:40 +01:00
}
2016-03-21 00:37:02 +01:00
export -f inc_iso #Must expose function to subprocess.
2016-04-13 15:47:22 +02:00
find $TMP -maxdepth 1 -name "*.dng" -print0 | sort -z | cut -d '' --complement -f $FRAME_RANGE | tr -d '\n' | xargs -0 -I { } -n 1 mv { } $oldFiles #Move all the others to correct position.
2016-05-17 03:19:58 +02:00
find $TMP -maxdepth 1 -name "*.dng" -print0 | sort -z | xargs -0 -I { } -P $THREADS -n 1 bash -c " inc_iso '{}' ' $CR_HDR ' ' $TMP ' ' $FRAME_END ' ' $oldFiles ' ' $CHROMA_SMOOTH ' "
BLACK_LEVEL = $( exiftool -BlackLevel -s -s -s ${ TMP } /${ TRUNC_ARG } _$( printf "%06d" $( echo " $FRAME_START " | bc) ) .dng) #Use the first DNG to get the correct black level.
2016-04-13 15:47:22 +02:00
2016-03-20 16:17:40 +01:00
echo -e "\n"
fi
2016-04-13 15:47:22 +02:00
2016-05-11 16:40:54 +02:00
if [ $setBL = = true ] ; then
echo -e " BlackLevel: ${ BLACK_LEVEL } " >> $FILE /settings.txt #Black level must now be set.
fi
2016-05-17 03:19:58 +02:00
normToOne( ) {
wBal = $1
max = 0.0
for mult in $wBal ; do
if [ $( echo " $mult > $max " | bc) -eq 1 ] ; then
max = $mult
fi
done
for mult in $wBal ; do
echo -e " $( echo " scale=6; x= ${ mult } / ${ max } ; if(x<1) print 0; x " | bc -l) \c " #BC is bae.
done
}
getGreen( ) {
wBal = $1
i = 0
for mult in $wBal ; do
if [ $i -eq 1 ] ; then
echo -e " ${ mult } "
fi
let i++
done
}
2016-03-21 00:37:02 +01:00
#Get White Balance correction factor.
2016-03-13 08:04:18 +01:00
if [ $GEN_WHITE = = true ] ; then
2016-03-21 00:37:02 +01:00
echo -e " \e[1m ${ TRUNC_ARG } :\e[0m Generating WB...\n "
#Calculate n, the distance between samples.
2016-03-18 23:37:48 +01:00
if [ $WHITE_SPD -gt $FRAMES ] ; then
WHITE_SPD = $FRAMES
fi
n = ` echo " ${ FRAMES } / ${ WHITE_SPD } " | bc`
2016-03-21 00:37:02 +01:00
2016-03-18 23:37:48 +01:00
toBal = " ${ TMP } /toBal "
mkdirS $toBal
2016-03-14 02:33:53 +01:00
2016-03-26 23:17:45 +01:00
#Develop every nth file for averaging.
2016-03-15 05:40:55 +01:00
i = 0
2016-03-18 23:37:48 +01:00
t = 0
2016-03-14 02:33:53 +01:00
trap " rm -rf ${ FILE } ; exit 1 " INT
for file in $TMP /*.dng; do
2016-03-21 00:37:02 +01:00
if [ ` echo " ( ${ i } +1) % ${ n } " | bc` -eq 0 ] ; then
2016-05-17 03:19:58 +02:00
dcraw -q 0 $BADPIXELS -r 1 1 1 1 -g $GAMMA -k $BLACK_LEVEL $SATPOINT -o $SPACE -T " ${ file } "
2016-03-19 19:15:31 +01:00
name = $( basename " $file " )
2016-03-21 00:37:02 +01:00
mv " $TMP / ${ name %.* } .tiff " $toBal #TIFF MOVEMENT. We use TIFFs here because it's easy for dcraw and Python.
2016-03-18 23:37:48 +01:00
let t++
2016-03-14 02:33:53 +01:00
fi
2016-03-18 23:37:48 +01:00
echo -e " \e[2K\rWB Development: Sample ${ t } / $( echo " ${ FRAMES } / $n " | bc) (Frame: $( echo " ${ i } + 1 " | bc) / ${ FRAMES } )\c "
2016-03-13 08:04:18 +01:00
let i++
done
2016-03-18 23:37:48 +01:00
echo ""
2016-03-13 08:04:18 +01:00
2016-03-21 00:37:02 +01:00
#Calculate + store result into a form dcraw likes.
2016-03-18 13:36:53 +01:00
echo -e "Calculating Auto White Balance..."
2016-03-13 08:04:18 +01:00
BALANCE = ` $BAL $toBal `
2016-03-14 02:33:53 +01:00
elif [ $CAMERA_WB = = true ] ; then
2016-04-13 15:47:22 +02:00
echo -e " \e[1m ${ TRUNC_ARG } :\e[0m Retrieving Camera White Balance... "
2016-03-14 02:33:53 +01:00
trap " rm -rf ${ FILE } ; exit 1 " INT
for file in $TMP /*.dng; do
2016-03-21 00:37:02 +01:00
#dcraw a single file verbosely, to get the camera multiplier with awk.
2016-03-14 02:33:53 +01:00
BALANCE = ` dcraw -T -w -v -c ${ file } 2>& 1 | awk '/multipliers/ { print $2, $3, $4 }' `
break
done
2016-05-17 03:19:58 +02:00
else #Something must always be set.
2016-04-13 15:47:22 +02:00
echo -e " \e[1m ${ TRUNC_ARG } :\e[0m Ignoring White Balance... "
2016-05-17 03:19:58 +02:00
BALANCE = "1.000000 1.000000 1.000000"
fi
#Finally, set the white balance after determining it.
if [ $isScale = false ] ; then
BALANCE = $( normToOne " $BALANCE " )
2016-03-13 08:04:18 +01:00
fi
2016-05-17 03:19:58 +02:00
green = $( getGreen " $BALANCE " )
WHITE = " -r ${ BALANCE } ${ green } "
echo -e " Correction Factor (RGBG): ${ BALANCE } ${ green } \n "
2016-03-05 21:29:51 +01:00
2016-03-14 02:33:53 +01:00
#Move .wav.
SOUND_PATH = " ${ TMP } / ${ TRUNC_ARG } _.wav "
2016-03-13 08:04:18 +01:00
2016-03-14 02:33:53 +01:00
if [ ! -f $SOUND_PATH ] ; then
2016-03-18 13:36:53 +01:00
echo -e "*Not moving .wav, because it doesn't exist.\n"
2016-03-14 02:33:53 +01:00
else
2016-03-18 21:05:18 +01:00
echo -e "*Moving .wav.\n"
2016-03-14 02:33:53 +01:00
cp $SOUND_PATH $FILE
fi
2016-03-05 21:29:51 +01:00
2016-03-29 00:52:59 +02:00
#DEFINE PROCESSING FUNCTIONS
2016-03-21 00:37:02 +01:00
2016-03-28 21:55:58 +02:00
dcrawOpt( ) { #Find, develop, and splay raw DNG data as ppm, ready to be processed.
2016-04-13 15:47:22 +02:00
find " ${ TMP } " -maxdepth 1 -iname "*.dng" -print0 | sort -z | cut -d '' -f $FRAME_RANGE | tr -d "\n" | xargs -0 \
2016-05-17 03:19:58 +02:00
dcraw -c -q $DEMO_MODE $FOUR_COLOR -k $BLACK_LEVEL $SATPOINT $BADPIXELS $WHITE -H $HIGHLIGHT_MODE -g $GAMMA $NOISE_REDUC -o $SPACE $DEPTH
2016-03-18 21:05:18 +01:00
} #Is prepared to pipe all the files in TMP outwards.
2016-03-18 13:36:53 +01:00
2016-03-27 01:02:26 +01:00
dcrawImg( ) { #Find and splay image sequence data as ppm, ready to be processed by ffmpeg.
2016-04-13 15:47:22 +02:00
find " ${ SEQ } " -maxdepth 1 -iname " *. ${ IMG_FMT } " -print0 | sort -z | xargs -0 -I { } convert '{}' ppm:-
2016-03-27 01:02:26 +01:00
} #Finds all images, prints to stdout quickly without any operations using convert.
2016-03-18 13:36:53 +01:00
mov_main( ) {
ffmpeg -f image2pipe -vcodec ppm -r $FPS -i pipe:0 \
-loglevel panic -stats $SOUND -vcodec prores_ks -n -r $FPS -profile:v 4444 -alpha_bits 0 -vendor ap4h $LUT $SOUND_ACTION " ${ VID } _hq.mov "
} #-loglevel panic -stats
mov_prox( ) {
ffmpeg -f image2pipe -vcodec ppm -r $FPS -i pipe:0 \
-loglevel panic -stats $SOUND -c:v libx264 -n -r $FPS -preset fast -vf " scale=trunc(iw/2)* ${ SCALE } :trunc(ih/2)* ${ SCALE } " -crf 23 $LUT -c:a mp3 " ${ VID } _lq.mp4 "
} #The option -vf "scale=trunc(iw/2)*2:trunc(ih/2)*2" fixes when x264 is unhappy about non-2 divisible dimensions.
2016-03-29 00:52:59 +02:00
runSim( ) {
# Command: cat $PIPE | cmd1 & cmdOrig | tee $PIPE | cmd2
# cat $PIPE | cmd1 - gives output of pipe live. Pipes it into cmd1. Nothing yet; just setup.
# & - runs the next part in the background.
# cmdOrig | tee $PIPE | cmd2 - cmdOrig pipes into the tee, which splits it back into the previous pipe, piping on to cmd2!
# End Result: Output of cmdOrig is piped into cmd1 and cmd2, which execute, both printing to stdout.
cmdOrig = $1
cmd1 = $2
cmd2 = $3
#~ echo $cmdOrig $cmd1 $cmd2
#~ echo $($cmdOrig)
PIPE = " ${ TMP } /pipe_vid " # $(date +%s%N | cut -b1-13)"
mkfifo $PIPE 2>/dev/null
cat $PIPE | $cmd1 & $cmdOrig | tee $PIPE | $cmd2 #The magic of simultaneous execution ^_^
#~ cat $PIPE | tr 'e' 'a' & echo 'hello' | tee $PIPE | tr 'e' 'o' #The magic of simultaneous execution ^_^
}
2016-05-17 03:19:58 +02:00
img_par( ) { #Takes 20 arguments: {} 2$DEMO_MODE 3$FOUR_COLOR 4$BADPIXELS 5$WHITE 6$HIGHLIGHT_MODE 7$GAMMA 8$NOISE_REDUC 9$DEPTH 10$SEQ 11$TRUNC_ARG 12$IMG_FMT 13$FRAME_END 14$DEPTH_OUT 15$COMPRESS 16$isJPG 17$PROXY_SCALE 18$PROXY 19$BLACK_LEVEL 20$SPACE 21$SATPOINT
2016-03-21 00:37:02 +01:00
count = $( echo $( echo $1 | rev | cut -d "_" -f 1 | rev | cut -d "." -f 1 | grep "[0-9]" ) | bc) #Instead of count from file, count from name!
if [ ${ 16 } = = true ] ; then
2016-05-17 03:19:58 +02:00
dcraw -c -q $2 $3 $4 $5 -H $6 -k ${ 19 } ${ 21 } -g $7 $8 -o ${ 20 } $9 $1 | \
2016-03-21 00:37:02 +01:00
tee >( convert ${ 14 } - ${ 15 } $( printf " ${ 10 } / ${ 11 } _%06d. ${ 12 } " ${ count } ) ) | \
convert - -quality 90 -resize ${ 17 } $( printf " ${ 18 } / ${ 11 } _%06d.jpg " ${ count } )
echo -e " \e[2K\rDNG to ${ 12 ^^ } /JPG: Frame ${ count ^^ } / ${ 13 } \c "
else
2016-05-17 03:19:58 +02:00
dcraw -c -q $2 $3 $4 $5 -H $6 -k ${ 19 } ${ 21 } -g $7 $8 -o ${ 20 } $9 $1 | \
2016-03-21 00:37:02 +01:00
convert ${ 14 } - ${ 15 } $( printf " ${ 10 } / ${ 11 } _%06d. ${ 12 } " ${ count } )
echo -e " \e[2K\rDNG to ${ 12 ^^ } : Frame ${ count ^^ } / ${ 13 } \c "
fi
}
export -f img_par
2016-03-29 00:52:59 +02:00
#PROCESSING
2016-03-14 02:33:53 +01:00
#IMAGE PROCESSING
if [ $IMAGES = = true ] ; then
2016-05-11 16:40:54 +02:00
echo -e " \e[1m ${ TRUNC_ARG } :\e[0m Processing Image Sequence from Frame ${ FRAME_START } to ${ FRAME_END } ...\n "
2016-03-14 02:33:53 +01:00
2016-03-20 01:42:46 +01:00
#Define Image Directories, Create SEQ directory
2016-03-29 00:52:59 +02:00
SEQ = " ${ FILE } / ${ IMG_FMT } _ ${ TRUNC_ARG } "
PROXY = " ${ FILE } /proxy_ ${ TRUNC_ARG } "
2016-03-20 01:42:46 +01:00
mkdirS $SEQ
2016-03-18 21:05:18 +01:00
if [ $isJPG = = true ] ; then
mkdirS $PROXY
fi
2016-03-21 00:37:02 +01:00
2016-03-29 00:52:59 +02:00
#Define hardcoded compression based on IMG_FMT
2016-03-20 01:42:46 +01:00
if [ $isCOMPRESS = = true ] ; then
if [ $IMG_FMT = = "exr" ] ; then
COMPRESS = "-compress piz"
elif [ $IMG_FMT = = "tiff" ] ; then
COMPRESS = "-compress zip"
2016-03-21 00:37:02 +01:00
elif [ $IMG_FMT = = "png" ] ; then
COMPRESS = "-quality 9"
elif [ $IMG_FMT = = "dpx" ] ; then
COMPRESS = "-compress rle"
2016-03-29 00:52:59 +02:00
fi
2016-03-21 00:37:02 +01:00
fi
#Convert all the actual DNGs to IMG_FMT, in parallel.
2016-05-17 03:19:58 +02:00
find " ${ TMP } " -maxdepth 1 -name '*.dng' -print0 | sort -z | xargs -0 -I { } -P $THREADS -n 1 \
2016-04-13 15:47:22 +02:00
bash -c " img_par '{}' ' $DEMO_MODE ' ' $FOUR_COLOR ' ' $BADPIXELS ' ' $WHITE ' ' $HIGHLIGHT_MODE ' ' $GAMMA ' ' $NOISE_REDUC ' ' $DEPTH ' \
2016-05-17 03:19:58 +02:00
'$SEQ' '$TRUNC_ARG' '$IMG_FMT' '$FRAME_END' '$DEPTH_OUT' '$COMPRESS' '$isJPG' '$PROXY_SCALE' '$PROXY' '$BLACK_LEVEL' '$SPACE' '$SATPOINT' "
# Removed | cut -d '' -f $FRAME_RANGE , as this happens when creating the DNGs in the first place.
2016-04-13 15:47:22 +02:00
2016-03-21 00:37:02 +01:00
if [ $isJPG = = true ] ; then #Make it print "Frame $FRAMES / $FRAMES" as the last output :).
2016-05-17 03:19:58 +02:00
echo -e " \e[2K\rDNG to ${ IMG_FMT ^^ } /JPG: Frame ${ FRAME_END } / ${ FRAME_END } \c "
2016-03-21 00:37:02 +01:00
else
2016-05-17 03:19:58 +02:00
echo -e " \e[2K\rDNG to ${ IMG_FMT ^^ } : Frame ${ FRAME_END } / ${ FRAME_END } \c "
2016-03-20 01:42:46 +01:00
fi
2016-03-14 02:33:53 +01:00
2016-03-18 21:05:18 +01:00
echo -e "\n"
2016-03-05 21:29:51 +01:00
2016-03-29 00:52:59 +02:00
#Apply a LUT to non-EXR images.
2016-03-18 21:05:18 +01:00
if [ $isLUT = = true ] ; then #Some way to package this into the development itself without piping hell?
2016-03-20 01:42:46 +01:00
if [ $IMG_FMT = = "exr" ] ; then
echo -e "*Cannot apply LUT to EXR sequences."
else
echo -e " \e[1m ${ TRUNC_ARG } :\e[0m Applying LUT to ${ FRAMES } ${ IMG_FMT ^^ } s...\n "
lutLoc = " ${ TMP } /lut_conv "
mkdirS $lutLoc
2016-04-13 15:47:22 +02:00
find $SEQ -name " *. ${ IMG_FMT } " -print0 | cut -d '' -f $FRAME_RANGE | tr -d "\n" | xargs -0 -I '{}' mv { } " ${ lutLoc } "
2016-03-20 01:42:46 +01:00
ffmpeg -f image2 -i " ${ lutLoc } / ${ TRUNC_ARG } _%06d. ${ IMG_FMT } " -loglevel panic -stats -vf $LUT " ${ SEQ } / ${ TRUNC_ARG } _%06d. ${ IMG_FMT } "
fi
2016-03-14 02:33:53 +01:00
fi
2016-03-18 21:05:18 +01:00
fi
2016-03-05 21:29:51 +01:00
2016-03-14 02:33:53 +01:00
#MOVIE PROCESSING
2016-03-18 23:37:48 +01:00
VID = " ${ FILE } / ${ TRUNC_ARG } "
SCALE = ` echo " ( $( echo " ${ PROXY_SCALE } " | sed 's/%//' ) / 100) * 2 " | bc -l` #Get scale as factor for halved video, *2 for 50%
SOUND = " -i ${ TMP } / ${ TRUNC_ARG } _.wav "
SOUND_ACTION = "-c:a mp3"
if [ ! -f $SOUND_PATH ] ; then
SOUND = ""
SOUND_ACTION = ""
fi
2016-03-21 00:37:02 +01:00
if [ $MOVIE = = true ] && [ $IMAGES = = false ] ; then
2016-03-14 02:33:53 +01:00
#LUT is automatically applied if argument was passed.
if [ $isH264 = = true ] ; then
2016-03-18 23:37:48 +01:00
echo -e " \e[1m ${ TRUNC_ARG } :\e[0m Encoding to ProRes/H.264... "
2016-03-18 13:36:53 +01:00
runSim dcrawOpt mov_main mov_prox
2016-03-12 21:33:27 +01:00
else
2016-03-18 23:37:48 +01:00
echo -e " \e[1m ${ TRUNC_ARG } :\e[0m Encoding to ProRes... "
2016-03-18 21:05:18 +01:00
dcrawOpt | mov_main
2016-03-12 21:33:27 +01:00
fi
2016-03-27 01:02:26 +01:00
elif [ $MOVIE = = true ] && [ $IMAGES = = true ] ; then #Use images if available, as opposed to developing the files again.
2016-03-18 23:37:48 +01:00
if [ $isH264 = = true ] ; then
2016-03-21 00:37:02 +01:00
echo -e " \e[1m ${ TRUNC_ARG } :\e[0m Encoding to ProRes/H.264... "
2016-03-27 01:02:26 +01:00
runSim dcrawImg mov_main mov_prox
2016-03-21 00:37:02 +01:00
else
echo -e " \e[1m ${ TRUNC_ARG } :\e[0m Encoding to ProRes... "
2016-03-27 01:02:26 +01:00
dcrawImg | mov_main
fi
fi
if [ $MOVIE = = false ] && [ $isH264 = = true ] ; then
echo -e " \e[1m ${ TRUNC_ARG } :\e[0m Encoding to H.264... "
if [ $IMAGES = = true ] ; then
dcrawImg | mov_prox
else
dcrawOpt | mov_prox
2016-03-18 23:37:48 +01:00
fi
2016-03-05 21:29:51 +01:00
fi
2016-03-18 23:37:48 +01:00
echo -e "\n\e[1mCleaning Up.\e[0m\n"
2016-03-14 02:33:53 +01:00
#Potentially move DNGs.
if [ $KEEP_DNGS = = true ] ; then
DNG = " ${ FILE } /dng_ ${ TRUNC_ARG } "
mkdirS $DNG
2016-03-26 23:17:45 +01:00
if [ $DUAL_ISO = = true ] ; then
2016-03-20 16:17:40 +01:00
oldFiles = " ${ TMP } /orig_dng "
find $oldFiles -name "*.dng" | xargs -I '{}' mv { } $DNG #Preserve the original, unprocessed DNGs.
else
find $TMP -name "*.dng" | xargs -I '{}' mv { } $DNG
fi
2016-03-05 21:29:51 +01:00
fi
2016-03-14 02:33:53 +01:00
#Delete tmp
2016-03-05 21:29:51 +01:00
rm -rf $TMP
let ARGNUM--
done
exit 0