<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Quickpost: Time Lapse Photography With a Nokia Mobile</title>
	<atom:link href="http://blog.didierstevens.com/2009/06/29/quickpost-time-lapse-photography-with-a-nokia-mobile/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.didierstevens.com/2009/06/29/quickpost-time-lapse-photography-with-a-nokia-mobile/</link>
	<description>(blog 'DidierStevens)</description>
	<lastBuildDate>Sat, 11 Feb 2012 16:16:49 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Didier Stevens</title>
		<link>http://blog.didierstevens.com/2009/06/29/quickpost-time-lapse-photography-with-a-nokia-mobile/#comment-41722</link>
		<dc:creator><![CDATA[Didier Stevens]]></dc:creator>
		<pubDate>Fri, 04 Feb 2011 07:07:37 +0000</pubDate>
		<guid isPermaLink="false">http://blog.didierstevens.com/?p=1528#comment-41722</guid>
		<description><![CDATA[@Kodex I don&#039;t have that feature on my Nokia.]]></description>
		<content:encoded><![CDATA[<p>@Kodex I don&#8217;t have that feature on my Nokia.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kodex</title>
		<link>http://blog.didierstevens.com/2009/06/29/quickpost-time-lapse-photography-with-a-nokia-mobile/#comment-41699</link>
		<dc:creator><![CDATA[Kodex]]></dc:creator>
		<pubDate>Thu, 03 Feb 2011 01:57:10 +0000</pubDate>
		<guid isPermaLink="false">http://blog.didierstevens.com/?p=1528#comment-41699</guid>
		<description><![CDATA[Thanks for the script, Works great!!
isn&#039;t it possible to create a similar script for auto exposure bracketing (AEB), to create HDR Images?]]></description>
		<content:encoded><![CDATA[<p>Thanks for the script, Works great!!<br />
isn&#8217;t it possible to create a similar script for auto exposure bracketing (AEB), to create HDR Images?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Didier Stevens</title>
		<link>http://blog.didierstevens.com/2009/06/29/quickpost-time-lapse-photography-with-a-nokia-mobile/#comment-37890</link>
		<dc:creator><![CDATA[Didier Stevens]]></dc:creator>
		<pubDate>Sat, 27 Mar 2010 10:18:13 +0000</pubDate>
		<guid isPermaLink="false">http://blog.didierstevens.com/?p=1528#comment-37890</guid>
		<description><![CDATA[@Milo Thanks!]]></description>
		<content:encoded><![CDATA[<p>@Milo Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Milo</title>
		<link>http://blog.didierstevens.com/2009/06/29/quickpost-time-lapse-photography-with-a-nokia-mobile/#comment-37889</link>
		<dc:creator><![CDATA[Milo]]></dc:creator>
		<pubDate>Sat, 27 Mar 2010 00:33:32 +0000</pubDate>
		<guid isPermaLink="false">http://blog.didierstevens.com/?p=1528#comment-37889</guid>
		<description><![CDATA[I came across this the other day added some code to allow selection of delay and resolution (based on another script I found online):

....

import appuifw
import camera
import time
import os

sleepTime = appuifw.query(u&quot;Enter time between each photo:&quot;, &quot;number&quot;)
imageSizesDisplay = [u&#039;2048,1536&#039;,u&#039;1600,1200&#039;,u&#039;1152,864&#039;,u&#039;640,480&#039;]
imageSizes = [(2048,1536),(1600,1200),(1152,864),(640,480)]

imageSizeSelect = appuifw.selection_list(choices=imageSizesDisplay)

timelapseFolder = &#039;E:\\timelapse\\&#039;

 
def TakeAndSavePicture():
    global timelapseFolder
 
    now = &#039;%04d%02d%02d-%02d%02d%02d&#039; % time.localtime()[0:6]
    pic = camera.take_photo (size=imageSizes[imageSizeSelect])
    filename = os.path.join(timelapseFolder, now) + &#039;.jpeg&#039;
    pic.save(filename)
    print &#039;Picture taken: %s&#039; % now
    print &#039;File: %s&#039; % filename

....

For some reason I had to have the &quot;E:&quot; in caps to avoid the &quot;SymbianError: [Errno -12] KErrPathNotFound&quot; mentioned above
the code i added was from this post: http://blog.umlungu.co.uk/blog/2007/jan/21/python-s60-time-lapse-photography-using-nokia-n80/]]></description>
		<content:encoded><![CDATA[<p>I came across this the other day added some code to allow selection of delay and resolution (based on another script I found online):</p>
<p>&#8230;.</p>
<p>import appuifw<br />
import camera<br />
import time<br />
import os</p>
<p>sleepTime = appuifw.query(u&#8221;Enter time between each photo:&#8221;, &#8220;number&#8221;)<br />
imageSizesDisplay = [u'2048,1536',u'1600,1200',u'1152,864',u'640,480']<br />
imageSizes = [(2048,1536),(1600,1200),(1152,864),(640,480)]</p>
<p>imageSizeSelect = appuifw.selection_list(choices=imageSizesDisplay)</p>
<p>timelapseFolder = &#8216;E:\\timelapse\\&#8217;</p>
<p>def TakeAndSavePicture():<br />
    global timelapseFolder</p>
<p>    now = &#8216;%04d%02d%02d-%02d%02d%02d&#8217; % time.localtime()[0:6]<br />
    pic = camera.take_photo (size=imageSizes[imageSizeSelect])<br />
    filename = os.path.join(timelapseFolder, now) + &#8216;.jpeg&#8217;<br />
    pic.save(filename)<br />
    print &#8216;Picture taken: %s&#8217; % now<br />
    print &#8216;File: %s&#8217; % filename</p>
<p>&#8230;.</p>
<p>For some reason I had to have the &#8220;E:&#8221; in caps to avoid the &#8220;SymbianError: [Errno -12] KErrPathNotFound&#8221; mentioned above<br />
the code i added was from this post: <a href="http://blog.umlungu.co.uk/blog/2007/jan/21/python-s60-time-lapse-photography-using-nokia-n80/" rel="nofollow">http://blog.umlungu.co.uk/blog/2007/jan/21/python-s60-time-lapse-photography-using-nokia-n80/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Didier Stevens</title>
		<link>http://blog.didierstevens.com/2009/06/29/quickpost-time-lapse-photography-with-a-nokia-mobile/#comment-35571</link>
		<dc:creator><![CDATA[Didier Stevens]]></dc:creator>
		<pubDate>Sun, 30 Aug 2009 19:24:53 +0000</pubDate>
		<guid isPermaLink="false">http://blog.didierstevens.com/?p=1528#comment-35571</guid>
		<description><![CDATA[I&#039;ll put that in the todo list]]></description>
		<content:encoded><![CDATA[<p>I&#8217;ll put that in the todo list</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fozzillo</title>
		<link>http://blog.didierstevens.com/2009/06/29/quickpost-time-lapse-photography-with-a-nokia-mobile/#comment-35570</link>
		<dc:creator><![CDATA[Fozzillo]]></dc:creator>
		<pubDate>Sat, 29 Aug 2009 17:44:55 +0000</pubDate>
		<guid isPermaLink="false">http://blog.didierstevens.com/?p=1528#comment-35570</guid>
		<description><![CDATA[YES!

Updated version 0.1.2 works on my 5800!

Good job!

Thank you very much.



P.S.
Pictures are taken in 640x480, would be great to have higher resolutions, maybe with a parameter to edit inside the script (no dialog) if you can.]]></description>
		<content:encoded><![CDATA[<p>YES!</p>
<p>Updated version 0.1.2 works on my 5800!</p>
<p>Good job!</p>
<p>Thank you very much.</p>
<p>P.S.<br />
Pictures are taken in 640&#215;480, would be great to have higher resolutions, maybe with a parameter to edit inside the script (no dialog) if you can.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Didier Stevens</title>
		<link>http://blog.didierstevens.com/2009/06/29/quickpost-time-lapse-photography-with-a-nokia-mobile/#comment-35515</link>
		<dc:creator><![CDATA[Didier Stevens]]></dc:creator>
		<pubDate>Fri, 21 Aug 2009 14:56:07 +0000</pubDate>
		<guid isPermaLink="false">http://blog.didierstevens.com/?p=1528#comment-35515</guid>
		<description><![CDATA[For those experiencing issues with the code, take a look here at the new version: http://blog.didierstevens.com/2009/08/21/update-time-lapse-photography-with-a-nokia-mobile/]]></description>
		<content:encoded><![CDATA[<p>For those experiencing issues with the code, take a look here at the new version: <a href="http://blog.didierstevens.com/2009/08/21/update-time-lapse-photography-with-a-nokia-mobile/" rel="nofollow">http://blog.didierstevens.com/2009/08/21/update-time-lapse-photography-with-a-nokia-mobile/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Update: Time Lapse Photography with a Nokia Mobile &#171; Didier Stevens</title>
		<link>http://blog.didierstevens.com/2009/06/29/quickpost-time-lapse-photography-with-a-nokia-mobile/#comment-35514</link>
		<dc:creator><![CDATA[Update: Time Lapse Photography with a Nokia Mobile &#171; Didier Stevens]]></dc:creator>
		<pubDate>Fri, 21 Aug 2009 14:51:12 +0000</pubDate>
		<guid isPermaLink="false">http://blog.didierstevens.com/?p=1528#comment-35514</guid>
		<description><![CDATA[[...] Update &#8212; Didier Stevens @ 14:51   I&#8217;ve debugged the issues some people had with my Nokia time lapse Python script, you can find a new version here.    Leave a [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Update &#8212; Didier Stevens @ 14:51   I&#8217;ve debugged the issues some people had with my Nokia time lapse Python script, you can find a new version here.    Leave a [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Didier Stevens</title>
		<link>http://blog.didierstevens.com/2009/06/29/quickpost-time-lapse-photography-with-a-nokia-mobile/#comment-35506</link>
		<dc:creator><![CDATA[Didier Stevens]]></dc:creator>
		<pubDate>Thu, 20 Aug 2009 06:43:01 +0000</pubDate>
		<guid isPermaLink="false">http://blog.didierstevens.com/?p=1528#comment-35506</guid>
		<description><![CDATA[I have 1.4.5 final I&#039;ll e-mail you for some tests.]]></description>
		<content:encoded><![CDATA[<p>I have 1.4.5 final I&#8217;ll e-mail you for some tests.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fozzillo</title>
		<link>http://blog.didierstevens.com/2009/06/29/quickpost-time-lapse-photography-with-a-nokia-mobile/#comment-35485</link>
		<dc:creator><![CDATA[fozzillo]]></dc:creator>
		<pubDate>Fri, 14 Aug 2009 13:54:08 +0000</pubDate>
		<guid isPermaLink="false">http://blog.didierstevens.com/?p=1528#comment-35485</guid>
		<description><![CDATA[Same as 14.

Which version of Python are you using?
I tried PythonForS60_1_4_5_3rdEd.sis with PythonScriptShell_1_4_5_3rdEd.SIS

thanks]]></description>
		<content:encoded><![CDATA[<p>Same as 14.</p>
<p>Which version of Python are you using?<br />
I tried PythonForS60_1_4_5_3rdEd.sis with PythonScriptShell_1_4_5_3rdEd.SIS</p>
<p>thanks</p>
]]></content:encoded>
	</item>
</channel>
</rss>

