image ordering by Original Date Time using bash script

2016-01-05 1 min read Bash

Here is the script:

#!/bin/bash -
#===============================================================================
#
#          FILE: imgOrg.sh
#
#         USAGE: ./imgOrg.sh
#
#   DESCRIPTION:
#
#       OPTIONS: ---
#  REQUIREMENTS: ---
#          BUGS: ---
#         NOTES: ---
#        AUTHOR: Amit Agarwal (aka)
#      REVISION:  ---
#===============================================================================

for i in *
do
    if [[ $(file $i) == *image* ]] 
    then
        echo "Image file is :: $i"
        dir=$( exiftool -s -DateTimeOriginal $i | awk -F':' '{print $2"/"$3}')
        mkdir -p $dir
        cp $i $dir/
    else
        echo "Excluding $i"
    fi
done

 

Continue reading

rawtherapee -- raw image processor.

2010-06-25 0 min read Fedora Photo
\"Original
Image via Wikipedia

<a href="http://www.rawtherapee.com/?mitem=3&artid=47">Download RT v3.0 alpha 1:

http://www.rawtherapee.com

Rawtherapee is a <a class="zem_slink freebase/en/raw_image_format" title="Raw image format" rel="wikipedia" href="http://en.wikipedia.org/wiki/Raw_image_format">RAW image processing software. It gives full control over many parameters to enhance the raw picture before finally exporting it to some common <a class="zem_slink freebase/en/image_processing" title="Image processing" rel="wikipedia" href="http://en.wikipedia.org/wiki/Image_processing">image format.

Continue reading