<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Pario TechnoBlob &#187; exifautotran</title>
	<atom:link href="http://pario.no/tag/exifautotran/feed/" rel="self" type="application/rss+xml" />
	<link>http://pario.no</link>
	<description>A cronological documentation test project, nothing serious, really!</description>
	<lastBuildDate>Thu, 02 Feb 2012 13:17:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Script to download pictures from camera and rename them etc</title>
		<link>http://pario.no/2007/03/13/script-to-dowload-pictures-from-camera-and-rename-them-etc/</link>
		<comments>http://pario.no/2007/03/13/script-to-dowload-pictures-from-camera-and-rename-them-etc/#comments</comments>
		<pubDate>Tue, 13 Mar 2007 12:52:50 +0000</pubDate>
		<dc:creator>Hans-Henry Jakobsen</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Photo etc]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[dcraw]]></category>
		<category><![CDATA[EXIF]]></category>
		<category><![CDATA[exifautotran]]></category>
		<category><![CDATA[gimv]]></category>
		<category><![CDATA[gphoto2]]></category>
		<category><![CDATA[JPG]]></category>
		<category><![CDATA[md5sum]]></category>
		<category><![CDATA[NEF]]></category>
		<category><![CDATA[sed]]></category>

		<guid isPermaLink="false">http://hhj.no/wordpress/2007/03/13/script-som-henter-bilder-fra-kamera-osv/</guid>
		<description><![CDATA[1. download photos from camera and sort them by date of day in folders 2. remove possible duplicates if I did not erase camera images since last download 3. convert RAW/NEF images to a usable format All this in one single click! #!/bin/bash # Change this to where to store Photos target=/home/multimedia/Images camera=”USB PTP Class [...]]]></description>
			<content:encoded><![CDATA[<p>1. download photos from camera and sort them by date of day in folders<br />
2. remove possible duplicates if I did not erase camera images since last download<br />
3. convert RAW/NEF images to a usable format</p>
<p>All this in one single click!</p>
<pre>
#!/bin/bash
# Change this to where to store Photos
target=/home/multimedia/Images
camera=”USB PTP Class Camera”
date=$(date –iso-8601)
mkdir -p $target/$date/tmp
cd $target/$date/tmp
# Get all photos from camera
gphoto2 –quiet –camera $camera –port usb: -P
# Do not replace photos that were already uploaded this same day
cp -u $target/$date/tmp/* $target/$date
rm -rf $target/$date/tmp
cd $target/$date
# auto-rotate using exif info
exifautotran *.JPG
# If photos were not erased from camera since last upload, remove duplicates
for i in *.{JPG,NEF}; do
for f in $(find $target -name $i ! -samefile $target/$date/$i); do
if md5sum $f | sed -e “s, .*/, ,” | md5sum –check; then
rm -f $i;
fi
done
done
# decode RAW images if not already done ?
# for i in *.NEF; do if [ ! -e $(basename $i .NEF).ppm ]; then dcraw -w $i; fi; done
# Show them!
gimv -d $target/$date</pre>
<script type="text/javascript">var wordpress_toolbar_urls = [];var wordpress_toolbar_url = "http://pario.no/wp-content/plugins/wordpress-toolbar/toolbar.php";var wordpress_toolbar_oinw = "n";var wordpress_toolbar_hash = "aHR0cDovL3BhcmlvLm5vLzIwMDcvMDMvMTMvc2NyaXB0LXRvLWRvd2xvYWQtcGljdHVyZXMtZnJvbS1jYW1lcmEtYW5kLXJlbmFtZS10aGVtLWV0Yy88d3B0Yj5TY3JpcHQgdG8gZG93bmxvYWQgcGljdHVyZXMgZnJvbSBjYW1lcmEgYW5kIHJlbmFtZSB0aGVtIGV0Yzx3cHRiPmh0dHA6Ly9wYXJpby5ubzx3cHRiPlBhcmlvIFRlY2hub0Jsb2I%3D";</script>]]></content:encoded>
			<wfw:commentRss>http://pario.no/2007/03/13/script-to-dowload-pictures-from-camera-and-rename-them-etc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

