<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for studio.messlinger.com</title>
	<atom:link href="http://studio.messlinger.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://studio.messlinger.com</link>
	<description>Photography and the Mac</description>
	<lastBuildDate>Wed, 14 Jul 2010 20:35:58 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>Comment on ExifTool and the Automator by Sebastian</title>
		<link>http://studio.messlinger.com/2009/03/08/exiftool-and-the-automator/comment-page-1/#comment-3606</link>
		<dc:creator>Sebastian</dc:creator>
		<pubDate>Wed, 14 Jul 2010 20:35:58 +0000</pubDate>
		<guid isPermaLink="false">http://studio.messlinger.com/?p=603#comment-3606</guid>
		<description>Please ignore the previous comment, embarrassingly I had failed to change the pass input to &#039;as argument&#039;. A &#039;nice&#039; guide has become a &#039;wonderful&#039; guide :D.

Many thanks!</description>
		<content:encoded><![CDATA[<p>Please ignore the previous comment, embarrassingly I had failed to change the pass input to &#8216;as argument&#8217;. A &#8216;nice&#8217; guide has become a &#8216;wonderful&#8217; guide :D.</p>
<p>Many thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ExifTool and the Automator by Sebastian</title>
		<link>http://studio.messlinger.com/2009/03/08/exiftool-and-the-automator/comment-page-1/#comment-3604</link>
		<dc:creator>Sebastian</dc:creator>
		<pubDate>Wed, 14 Jul 2010 20:14:45 +0000</pubDate>
		<guid isPermaLink="false">http://studio.messlinger.com/?p=603#comment-3604</guid>
		<description>Hi

You have a nice walkthrough here, though I keep finding myself stuck. I&#039;m trying to add the lens type, and have done what you were doing with the lensbaby, but simply missing the focal length and aperture parts out.  In the run script shell itself I&#039;m using:

for f in &quot;$@&quot;
do
   exiftool -overwrite_original -Lens=&#039;70.0-300.0 mm f/4.5-5.6&#039; &quot;$f&quot;
done

The automator runs fine, but there is no change in the EXIF data. Is it blindly obvious what I&#039;ve done wrong?

Any help would be brilliant!
Seb</description>
		<content:encoded><![CDATA[<p>Hi</p>
<p>You have a nice walkthrough here, though I keep finding myself stuck. I&#8217;m trying to add the lens type, and have done what you were doing with the lensbaby, but simply missing the focal length and aperture parts out.  In the run script shell itself I&#8217;m using:</p>
<p>for f in &#8220;$@&#8221;<br />
do<br />
   exiftool -overwrite_original -Lens=&#8217;70.0-300.0 mm f/4.5-5.6&#8242; &#8220;$f&#8221;<br />
done</p>
<p>The automator runs fine, but there is no change in the EXIF data. Is it blindly obvious what I&#8217;ve done wrong?</p>
<p>Any help would be brilliant!<br />
Seb</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Timestamps and Timezones by Klaus Messlinger</title>
		<link>http://studio.messlinger.com/2009/03/16/timestamps-and-timezones/comment-page-1/#comment-2573</link>
		<dc:creator>Klaus Messlinger</dc:creator>
		<pubDate>Thu, 20 May 2010 19:00:30 +0000</pubDate>
		<guid isPermaLink="false">http://studio.messlinger.com/?p=1044#comment-2573</guid>
		<description>Mark,

you read this right: setting your camera to UTC is my recommendation.

Klaus</description>
		<content:encoded><![CDATA[<p>Mark,</p>
<p>you read this right: setting your camera to UTC is my recommendation.</p>
<p>Klaus</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Timestamps and Timezones by Mark</title>
		<link>http://studio.messlinger.com/2009/03/16/timestamps-and-timezones/comment-page-1/#comment-2569</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Thu, 20 May 2010 07:31:18 +0000</pubDate>
		<guid isPermaLink="false">http://studio.messlinger.com/?p=1044#comment-2569</guid>
		<description>Klaus,

I was getting confused due to your statement &quot;It is important that your camera’s clock is set to UTC&quot;. I read this as always set the clock UTC no matter where in the world I took the photo.</description>
		<content:encoded><![CDATA[<p>Klaus,</p>
<p>I was getting confused due to your statement &#8220;It is important that your camera’s clock is set to UTC&#8221;. I read this as always set the clock UTC no matter where in the world I took the photo.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ExifTool and the Automator by Laurent</title>
		<link>http://studio.messlinger.com/2009/03/08/exiftool-and-the-automator/comment-page-1/#comment-2558</link>
		<dc:creator>Laurent</dc:creator>
		<pubDate>Tue, 18 May 2010 21:08:44 +0000</pubDate>
		<guid isPermaLink="false">http://studio.messlinger.com/?p=603#comment-2558</guid>
		<description>Hi, 
well after looking a bit, I found a great way, not perfect, but here it is :

After loading the file, ask Automator to do an Applescript script :

on run {input, parameters}
	set r to text returned of (display dialog &quot;Lens parameter :&quot; default answer &quot;{\&quot;Lens\&quot;,\&quot;Focal\&quot;,\&quot;Aperture\&quot;}&quot;)
	set r to run script r
	return r &amp; input
end run

Than the Shell script : 
var1=&quot;$1&quot;
var2=&quot;$2&quot;
var3=&quot;$3&quot;
shift 3
for f in &quot;$@&quot;
do
	exiftool -overwrite_original -Lens=&quot;$var1&quot; -FocalLength=&quot;$var2&quot; -ApertureValue=&quot;$var3&quot; -FNumber=&quot;$var3&quot; &quot;$f&quot;
done


That&#039;s all

Great no !!</description>
		<content:encoded><![CDATA[<p>Hi,<br />
well after looking a bit, I found a great way, not perfect, but here it is :</p>
<p>After loading the file, ask Automator to do an Applescript script :</p>
<p>on run {input, parameters}<br />
	set r to text returned of (display dialog &#8220;Lens parameter :&#8221; default answer &#8220;{\&#8221;Lens\&#8221;,\&#8221;Focal\&#8221;,\&#8221;Aperture\&#8221;}&#8221;)<br />
	set r to run script r<br />
	return r &amp; input<br />
end run</p>
<p>Than the Shell script :<br />
var1=&#8221;$1&#8243;<br />
var2=&#8221;$2&#8243;<br />
var3=&#8221;$3&#8243;<br />
shift 3<br />
for f in &#8220;$@&#8221;<br />
do<br />
	exiftool -overwrite_original -Lens=&#8221;$var1&#8243; -FocalLength=&#8221;$var2&#8243; -ApertureValue=&#8221;$var3&#8243; -FNumber=&#8221;$var3&#8243; &#8220;$f&#8221;<br />
done</p>
<p>That&#8217;s all</p>
<p>Great no !!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Timestamps and Timezones by Klaus Messlinger</title>
		<link>http://studio.messlinger.com/2009/03/16/timestamps-and-timezones/comment-page-1/#comment-2500</link>
		<dc:creator>Klaus Messlinger</dc:creator>
		<pubDate>Thu, 13 May 2010 08:24:30 +0000</pubDate>
		<guid isPermaLink="false">http://studio.messlinger.com/?p=1044#comment-2500</guid>
		<description>Hi Mark,

thanks for your contribution.

The whole time stamp concept has a potential for confusion, even more so if you consider DST. However, the core idea is simple: &lt;strong&gt;every picture should include the local time of the location where it was shot, with a reference to UTC&lt;/strong&gt;. This way, you know the &lt;em&gt;local time&lt;/em&gt;: &quot;this picture was taken at 3 p.m., that&#039;s when they start the first water show at the Fountains of Bellagio&quot;. The reference to &lt;em&gt;UTC&lt;/em&gt; ensures that you can put your image into a global context, e.g. if you put it on Flickr and want find out what pictures were taken at the same moment around the world. Or if you want to compare images taken before and after DST. Or if you just want to make sure that whatever freaking time zone you were in, you have a standardised reference time (you&#039;ll understand this when you&#039;re doing a trip across the US one day).

So, to answer your question: set the +/- levels to indicate the &lt;em&gt;local&lt;/em&gt; time zone of the shot, not to your Australian home zone. And don&#039;t forget to consider DST: in winter, a 12:30 shot taken in London would read &quot;12:30:00+00:00&quot; (12:30 local time, local time is equal to UTC), while in summer the same shot would be &quot;12:30:00+01:00&quot; (12:30 local time, local time is one hour ahead of UTC because of daylight saving time).

Hope this helped clear things up.

Klaus</description>
		<content:encoded><![CDATA[<p>Hi Mark,</p>
<p>thanks for your contribution.</p>
<p>The whole time stamp concept has a potential for confusion, even more so if you consider DST. However, the core idea is simple: <strong>every picture should include the local time of the location where it was shot, with a reference to UTC</strong>. This way, you know the <em>local time</em>: &#8220;this picture was taken at 3 p.m., that&#8217;s when they start the first water show at the Fountains of Bellagio&#8221;. The reference to <em>UTC</em> ensures that you can put your image into a global context, e.g. if you put it on Flickr and want find out what pictures were taken at the same moment around the world. Or if you want to compare images taken before and after DST. Or if you just want to make sure that whatever freaking time zone you were in, you have a standardised reference time (you&#8217;ll understand this when you&#8217;re doing a trip across the US one day).</p>
<p>So, to answer your question: set the +/- levels to indicate the <em>local</em> time zone of the shot, not to your Australian home zone. And don&#8217;t forget to consider DST: in winter, a 12:30 shot taken in London would read &#8220;12:30:00+00:00&#8243; (12:30 local time, local time is equal to UTC), while in summer the same shot would be &#8220;12:30:00+01:00&#8243; (12:30 local time, local time is one hour ahead of UTC because of daylight saving time).</p>
<p>Hope this helped clear things up.</p>
<p>Klaus</p>
]]></content:encoded>
	</item>
</channel>
</rss>
