<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/rss-style.xsl" type="text/xsl"?>
<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>photos &#8211; Terence Eden’s Blog</title>
	<atom:link href="https://shkspr.mobi/blog/tag/photos/feed/" rel="self" type="application/rss+xml" />
	<link>https://shkspr.mobi/blog</link>
	<description>Regular nonsense about tech and its effects 🙃</description>
	<lastBuildDate>Tue, 13 Jan 2026 14:07:20 +0000</lastBuildDate>
	<language>en-GB</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://shkspr.mobi/blog/wp-content/uploads/2023/07/cropped-avatar-32x32.jpeg</url>
	<title>photos &#8211; Terence Eden’s Blog</title>
	<link>https://shkspr.mobi/blog</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title><![CDATA[Extracting Video from Motion Photos on Linux]]></title>
		<link>https://shkspr.mobi/blog/2025/12/extracting-video-from-motion-photos-on-linux/</link>
					<comments>https://shkspr.mobi/blog/2025/12/extracting-video-from-motion-photos-on-linux/#comments</comments>
				<dc:creator><![CDATA[@edent]]></dc:creator>
		<pubDate>Sun, 28 Dec 2025 12:34:22 +0000</pubDate>
				<category><![CDATA[/etc/]]></category>
		<category><![CDATA[exif]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[photos]]></category>
		<guid isPermaLink="false">https://shkspr.mobi/blog/?p=66565</guid>

					<description><![CDATA[Modern Android cameras can take &#34;Motion Photos&#34;. They capture a few seconds of video from before and after you hit the shutter button. You can then either select the bit of the photo where no-one is blinking, or you can send the whole thing as a little movie.  Some apps (like WhatsApp) will play the motion photo when the image is selected, others will just show a static image.  So how do you…]]></description>
										<content:encoded><![CDATA[<p>Modern Android cameras can take "Motion Photos". They capture a few seconds of video from before and after you hit the shutter button. You can then either select the bit of the photo where no-one is blinking, or you can send the whole thing as a little movie.</p>

<p>Some apps (like WhatsApp) will play the motion photo when the image is selected, others will just show a static image.</p>

<p>So how do you extract the movie from the image using Linux?</p>

<p>Step one, let's take a look at the EXIF metadata in the image. Here's what running <code>exiftool photo.MP.jpg</code> gets:</p>

<pre><code class="language-_">Motion Photo                    : 1
Motion Photo Version            : 1
Motion Photo Presentation Timestamp Us: 866808
Directory Item Mime             : image/jpeg, image/jpeg, video/mp4
Directory Item Semantic         : Primary, GainMap, MotionPhoto
Directory Item Length           : 46353, 2106347
Directory Item Padding          : 0
MPF Version                     : 0100
Number Of Images                : 2
MP Image Flags                  : (none)
MP Image Format                 : JPEG
MP Image Type                   : Undefined
MP Image Length                 : 46353
MP Image Start                  : 2570425
</code></pre>

<p>That can be cross-referenced with the <a href="https://developer.android.com/media/platform/motion-photo-format">Motion Photo metadata specification</a>.</p>

<p>We can confirm this is a Motion Photo, Version 1. The video portion at 866,808 microseconds (about 0.8 seconds) is where the main photo is taken from.</p>

<p>The file starts with the image, then a GainMap (for HDR), and then the video.</p>

<p>Somewhat obtusely (in my opinion) the Directory Item Length only shows "secondary media items" - in this case, the GainMap and Video.</p>

<p>The filesize is 4,723,125 bytes, which equals the sum of the three values; 46,353 + 2,106,347 + 2,570,425.</p>

<p>So, to get the MP4 video, we need to extract the <em>last</em> 2,106,347 bytes. This can be double-checked by taking the filesize and subtracting the MP Image Start and the MP Image Lengths (4,723,125 - 46,353 - 2,570,425 = 2,106,347).</p>

<p>The extraction can be done with <code>dd</code> but it's probably just as easy to use <code>tail</code> to read the last N bytes of a file:</p>

<p><code>tail -c 2106347 photo.MP.jpg &gt; video.mp4</code></p>

<p>You can verify that the video is valid by running <code>ffmpeg -i video.mp4</code> - the output will be lower resolution than the photo and will only be a few seconds long. It will play in VLC or any other standard player.</p>

<h2 id="try-it-yourself"><a href="https://shkspr.mobi/blog/2025/12/extracting-video-from-motion-photos-on-linux/#try-it-yourself">Try It Yourself</a></h2>

<p>Here's one of my motion photos - it should present in your browser as a still image, but run the above code to extract the video.</p>

<p><a href="https://shkspr.mobi/blog/wp-content/uploads/2025/12/PXL_20251220_224052239.MP_.bk.jpg"><img src="https://shkspr.mobi/blog/wp-content/uploads/2025/12/PXL_20251220_224052239.MP_.jpg" alt="Photo of a wind turbine." width="3072" height="4080" class="aligncenter size-full wp-image-66570"></a></p>

<p>Click the photo to download the full version rather than the optimised one.</p>

<h2 id="sources"><a href="https://shkspr.mobi/blog/2025/12/extracting-video-from-motion-photos-on-linux/#sources">Sources</a></h2>

<p>For other adventures in Motion Photo exploration, take a look at:</p>

<ul>
<li><a href="https://developer.android.com/media/platform/motion-photo-format">https://developer.android.com/media/platform/motion-photo-format</a></li>
<li><a href="https://motion-live.js.org/">https://motion-live.js.org/</a></li>
<li><a href="https://medium.com/android-news/working-with-motion-photos-da0aa49b50c">https://medium.com/android-news/working-with-motion-photos-da0aa49b50c</a></li>
</ul>
<img src="https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/info/okgo.php?ID=66565&HTTP_REFERER=RSS" alt="" width="1" height="1" loading="eager">]]></content:encoded>
					
					<wfw:commentRss>https://shkspr.mobi/blog/2025/12/extracting-video-from-motion-photos-on-linux/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
			</item>
		<item>
		<title><![CDATA[The 360 Selfie]]></title>
		<link>https://shkspr.mobi/blog/2019/11/the-360-selfie/</link>
					<comments>https://shkspr.mobi/blog/2019/11/the-360-selfie/#comments</comments>
				<dc:creator><![CDATA[@edent]]></dc:creator>
		<pubDate>Sat, 30 Nov 2019 07:51:09 +0000</pubDate>
				<category><![CDATA[/etc/]]></category>
		<category><![CDATA[360]]></category>
		<category><![CDATA[LG360]]></category>
		<category><![CDATA[meta]]></category>
		<category><![CDATA[NaBloPoMo]]></category>
		<category><![CDATA[photography]]></category>
		<category><![CDATA[photos]]></category>
		<guid isPermaLink="false">https://shkspr.mobi/blog/?p=28919</guid>

					<description><![CDATA[I&#039;ll admit it - I never really got the selfie. I was trapped in the mistake that they were a mere narcissistic folly. I couldn&#039;t have been more wrong.  The more I travel the world, the more I see a change in people&#039;s behaviour around monuments.  It used to be people jostling to get the one perfect shot of a thing.  Even if they got the perfect shot, they never looked at the result.  Why?  People…]]></description>
										<content:encoded><![CDATA[<p>I'll admit it - I never really <em>got</em> the selfie. I was trapped in the mistake that they were a mere narcissistic folly. I couldn't have been more wrong.  The more I travel the world, the more I see a change in people's behaviour around monuments.  It used to be people jostling to get the one perfect shot of a thing.  Even if they got the perfect shot, they never looked at the result.  Why?</p>

<p>People <em>want</em> to take a photo like this:
<a href="https://flic.kr/p/99wq3J"><img src="https://farm6.staticflickr.com/5008/5347320366_d4570080e7_b.jpg" width="512" alt="A beautiful and artful photo of the Eifel Tower" class="aligncenter size-medium"></a></p>

<p>But it often ends up coming out like this:
<a href="https://flic.kr/p/oemrbL"><img src="https://farm4.staticflickr.com/3852/14590950308_d8fea4c486_b.jpg" width="512" height="384" class="aligncenter size-medium"></a></p>

<p>That's not intended to be snarky. Most of us don't have the time, skill, or equipment to take stunning photographs.  But that's OK! The best photographs of mere objects have already been taken. The photo that no-one else has ever taken is of <em>you standing there!</em></p>

<p>That's what I love about selfies! A photo of a monument is just that. It shows you were there, once, kinda. But a selfie <em>proves</em> that you were there! I think there's something delightful about saying "This is me! Here I am!"</p>

<p>So, here are a couple of 360 selfies from our recent trips. They're not the greatest photos in the world - they're not static shots of a thing - but they are of <em>us</em> and the memories we made.</p>

<h2 id="rome"><a href="https://shkspr.mobi/blog/2019/11/the-360-selfie/#rome">Rome</a></h2>

<iframe style="border-style:none;" width="1024" height="400" allowfullscreen="" src="https://shkspr.mobi/pannellum/pannellum.htm#panorama=/blog/wp-content/uploads/2017/11/Cave.jpg&amp;autoRotate=2&amp;autoLoad=false&amp;title=Caves"></iframe>

<iframe style="border-style:none;" width="1024" height="400" allowfullscreen="" src="https://shkspr.mobi/pannellum/pannellum.htm#panorama=/blog/wp-content/uploads/2017/11/kissing.jpg&amp;autoRotate=-2&amp;autoLoad=false&amp;title=Trevi"></iframe>

<h2 id="hong-kong"><a href="https://shkspr.mobi/blog/2019/11/the-360-selfie/#hong-kong">Hong Kong</a></h2>

<iframe style="border-style:none;" width="1024" height="400" allowfullscreen="" src="https://shkspr.mobi/pannellum/pannellum.htm#panorama=/blog/wp-content/uploads/2019/11/20190827_041245.jpg&amp;autoRotate=2&amp;autoLoad=false&amp;title=HongKong"></iframe>

<h2 id="australia"><a href="https://shkspr.mobi/blog/2019/11/the-360-selfie/#australia">Australia</a></h2>

<iframe style="border-style:none;" width="1024" height="400" allowfullscreen="" src="https://shkspr.mobi/pannellum/pannellum.htm#panorama=/blog/wp-content/uploads/2019/11/20190912_194621.jpg&amp;autoRotate=2&amp;autoLoad=false&amp;title=Opera"></iframe>

<iframe style="border-style:none;" width="1024" height="400" allowfullscreen="" src="https://shkspr.mobi/pannellum/pannellum.htm#panorama=/blog/wp-content/uploads/2019/11/20190831_085631.jpg&amp;autoRotate=2&amp;autoLoad=false&amp;title="></iframe>

<iframe style="border-style:none;" width="1024" height="400" allowfullscreen="" src="https://shkspr.mobi/pannellum/pannellum.htm#panorama=/blog/wp-content/uploads/2019/11/20190901_111239.jpg&amp;autoRotate=2&amp;autoLoad=false&amp;title="></iframe>

<iframe style="border-style:none;" width="1024" height="400" allowfullscreen="" src="https://shkspr.mobi/pannellum/pannellum.htm#panorama=/blog/wp-content/uploads/2019/11/20190901_131142.jpg&amp;autoRotate=2&amp;autoLoad=false&amp;title="></iframe>

<iframe style="border-style:none;" width="1024" height="400" allowfullscreen="" src="https://shkspr.mobi/pannellum/pannellum.htm#panorama=/blog/wp-content/uploads/2019/11/20190902_183656.jpg&amp;autoRotate=2&amp;autoLoad=false&amp;title="></iframe>

<iframe style="border-style:none;" width="1024" height="400" allowfullscreen="" src="https://shkspr.mobi/pannellum/pannellum.htm#panorama=/blog/wp-content/uploads/2019/11/20190904_130638.jpg&amp;autoRotate=2&amp;autoLoad=false&amp;title="></iframe>

<iframe style="border-style:none;" width="1024" height="400" allowfullscreen="" src="https://shkspr.mobi/pannellum/pannellum.htm#panorama=/blog/wp-content/uploads/2019/11/20190904_153516.jpg&amp;autoRotate=2&amp;autoLoad=false&amp;title="></iframe>

<iframe style="border-style:none;" width="1024" height="400" allowfullscreen="" src="https://shkspr.mobi/pannellum/pannellum.htm#panorama=/blog/wp-content/uploads/2019/11/20190910_123029.jpg&amp;autoRotate=2&amp;autoLoad=false&amp;title="></iframe>
<img src="https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/info/okgo.php?ID=28919&HTTP_REFERER=RSS" alt="" width="1" height="1" loading="eager">]]></content:encoded>
					
					<wfw:commentRss>https://shkspr.mobi/blog/2019/11/the-360-selfie/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
			</item>
		<item>
		<title><![CDATA[GPS at 30,000 feet]]></title>
		<link>https://shkspr.mobi/blog/2019/11/gps-at-30000-feet/</link>
					<comments>https://shkspr.mobi/blog/2019/11/gps-at-30000-feet/#respond</comments>
				<dc:creator><![CDATA[@edent]]></dc:creator>
		<pubDate>Mon, 11 Nov 2019 07:27:28 +0000</pubDate>
				<category><![CDATA[/etc/]]></category>
		<category><![CDATA[australia]]></category>
		<category><![CDATA[gps]]></category>
		<category><![CDATA[NaBloPoMo]]></category>
		<category><![CDATA[photos]]></category>
		<guid isPermaLink="false">https://shkspr.mobi/blog/?p=32778</guid>

					<description><![CDATA[GPS is a modern miracle. Using SPACESHIPS and RELATIVITY you can locate yourself anywhere on the planet.  Fun fact! Your GPS won&#039;t work if you&#039;re above 18Km or going faster than 500 metres per second. Just in case you&#039;re a Soviet Guided Missile.  But if you&#039;re on a regular international flight, you should be just fine!  Here are some screenshots I took using the open source GPS Test for Android.  …]]></description>
										<content:encoded><![CDATA[<p>GPS is a modern miracle. Using SPACESHIPS and RELATIVITY you can locate yourself anywhere on the planet.</p>

<p>Fun fact! Your GPS won't work if you're above 18Km or going faster than 500 metres per second. Just in case you're a <a href="https://gizmodo.com/your-gps-doesnt-work-at-mach-2-because-its-afraid-youre-5824905">Soviet Guided Missile</a>.</p>

<p>But if you're on a regular international flight, you should be just fine!  Here are some screenshots I took using the <a href="https://github.com/barbeau/gpstest">open source GPS Test for Android</a>.</p>

<p>Top tips: make sure you get a GPS lock and update your <a href="https://en.wikipedia.org/wiki/Assisted_GPS">A-GPS</a> data. It's also worth getting as close to a window as possible in order to see the sky without the metal shell of the aeroplane blocking you.</p>

<img src="https://shkspr.mobi/blog/wp-content/uploads/2019/09/GPS.png" alt="Long list of GPS satellites." width="540" height="980" class="aligncenter size-full wp-image-32782">

<p>What a glorious sight!  American GPS, Russian <a href="https://en.wikipedia.org/wiki/GLONASS">ГЛОНАСС</a>, China's <a href="https://en.wikipedia.org/wiki/BeiDou_Navigation_Satellite_System">北斗</a>, Japan's <a href="https://en.wikipedia.org/wiki/Quasi-Zenith_Satellite_System">準天頂衛星</a> and the EU's <a href="https://en.wikipedia.org/wiki/Galileo_(satellite_navigation)">Galileo</a>.  I was asleep when we went over India, so I don't know if my phone would have picked up <a href="https://www.isro.gov.in/irnss-programme">NavIC</a>.</p>

<p>The sky view is particularly beautiful.
<img src="https://shkspr.mobi/blog/wp-content/uploads/2019/09/Sky-View.png" alt="The sky peppered with satellites. " width="540" height="962" class="aligncenter size-full wp-image-32789"></p>

<p>I also found a page on British Airways' inflight WiFi which showed what the plane itself was reporting.</p>

<img src="https://shkspr.mobi/blog/wp-content/uploads/2019/09/BA.png" alt="BA info screen showing 10km height and 848kmph." width="540" height="278" class="aligncenter size-full wp-image-32783">

<p>My cheap phone and the multi-million pound plane disagree slightly on speed and height. But not by much!</p>

<p>I was also able to take these geo-tagged photos of Australia from the plane.</p>

<h2 id="sydney"><a href="https://shkspr.mobi/blog/2019/11/gps-at-30000-feet/#sydney">Sydney</a></h2>

<img src="https://shkspr.mobi/blog/wp-content/uploads/2019/09/IMG_20190914_151506.jpg" alt="The city of Sydney in the far distance." width="3456" height="4608" class="aligncenter size-full wp-image-32785">

<h2 id="desert"><a href="https://shkspr.mobi/blog/2019/11/gps-at-30000-feet/#desert">Desert</a></h2>

<img src="https://shkspr.mobi/blog/wp-content/uploads/2019/09/IMG_20190914_163825.jpg" alt="The sand dunes look like nerves splayed out of a human body." width="3456" height="4608" class="aligncenter size-full wp-image-32784">

<img src="https://shkspr.mobi/blog/wp-content/uploads/2019/09/IMG_20190914_172837.jpg" alt="Undulating waves of sand." width="3456" height="4608" class="aligncenter size-full wp-image-32786">

<img src="https://shkspr.mobi/blog/wp-content/uploads/2019/09/IMG_20190914_172937.jpg" alt="The desert, as seen through a plane window." width="4608" height="3456" class="aligncenter size-full wp-image-32787">

<p>So, next time you're on an international flight, take a peek at the sky!</p>
<img src="https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/info/okgo.php?ID=32778&HTTP_REFERER=RSS" alt="" width="1" height="1" loading="eager">]]></content:encoded>
					
					<wfw:commentRss>https://shkspr.mobi/blog/2019/11/gps-at-30000-feet/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title><![CDATA[Instagram Got You Down? Don't Be Fooled By Flickr.]]></title>
		<link>https://shkspr.mobi/blog/2012/12/instagram-got-you-down-dont-be-fooled-by-flickr/</link>
					<comments>https://shkspr.mobi/blog/2012/12/instagram-got-you-down-dont-be-fooled-by-flickr/#comments</comments>
				<dc:creator><![CDATA[@edent]]></dc:creator>
		<pubDate>Wed, 19 Dec 2012 10:00:57 +0000</pubDate>
				<category><![CDATA[/etc/]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[flickr]]></category>
		<category><![CDATA[instagram]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[openphoto]]></category>
		<category><![CDATA[photography]]></category>
		<category><![CDATA[photos]]></category>
		<guid isPermaLink="false">http://shkspr.mobi/blog/?p=7084</guid>

					<description><![CDATA[Man! Instagram sucks! Let&#039;s all move to Flickr! The Internet - December 2012   The same flickr which capriciously deletes the photos of paying customers? The same flickr which has catastrophic accidents?  The same flickr who bans paying customers for commenting on political issues?  The same flickr which one day decided that paintings and drawings weren&#039;t suitable for its site?  Yeah. I&#039;m not ok…]]></description>
										<content:encoded><![CDATA[<blockquote>Man! <a href="http://techcrunch.com/2012/12/18/you-always-fear-what-you-dont-understand/">Instagram sucks</a>! Let's all move to Flickr!
<a href="https://www.wired.com/2012/12/how-to-download-your-instagram-photos-and-kill-your-account/">The Internet - December 2012</a>
</blockquote>

<p>The same flickr which <a href="http://gormano.blogspot.co.uk/2012/03/oh-flickr-youve-been-degbanned.html">capriciously deletes the photos of paying customers</a>? The same flickr which <a href="http://www.theregister.co.uk/2011/02/02/flickr_nix_4000_pix/">has catastrophic accidents</a>?  The same flickr who bans <a href="http://www.businessinsider.com/yahoo-bans-anti-obama-flickr-commenter-2009-6">paying customers for commenting on political issues</a>?  The same flickr which one day decided that <a href="http://www.flickr.com/help/forum/14692/">paintings and drawings weren't suitable for its site</a>?</p>

<p>Yeah. I'm <strong>not</strong> ok with that.  If you're "liberating" your Instagram photos to Flickr, you're merely trading one jail cell for another.</p>

<p>As <a href="https://shkspr.mobi/blog/2012/11/the-future-of-internet-services/">I've mentioned before</a>, we're moving to an era where people <strong>control their own content</strong>. They don't need to cede it to some 3rd party and hope that the terms and conditions don't change from under their feet.</p>

<p>So, what's the solution?  People are saying "what did we do before Instagram? Oh yes, Flickr!"
What they <em>should</em> be doing is saying "What did we do before Flickr? Oh yes, self hosting."</p>

<p>That's where <a href="https://web.archive.org/web/20120920005207/https://openphoto.me/">OpenPhoto.me</a> comes in.  The premise is simple. You store <em>your</em> photos on <em>your own</em> storage system.  That could be your <a href="http://db.tt/9gtlUat">DropBox account</a> (500 MB free), your <a href="https://www.box.com/pricing/">Box.com account</a> (5GB free), or <a href="http://aws.amazon.com/s3/">Amazon S3</a> (5GB free), or <a href="https://web.archive.org/web/20121218160516/https://www.cx.com/">CX.com</a>, or <a href="http://dreamhost.com/cloud/dreamobjects/">DreamHost's DreamObjects</a> - or, finally, <a href="https://web.archive.org/web/20121219191400/http://theopenphotoproject.org/">on your own server</a>.</p>

<p>They're your photos - so you get control of them.  You can easily back them up, move to a different hosting provider, or delete them forever.</p>

<p>You get a nice front end for your photos - with commenting, tagging, albums, privacy settings, mobile viewing and uploads etc.</p>

<img src="https://shkspr.mobi/blog/wp-content/uploads/2012/12/openphoto-example.jpg" alt="openphoto example" width="600" height="387" class="aligncenter size-full wp-image-7086">

<p>You can change the look and feel of the theme to suit your preferences.</p>

<p>With a single click you can import your images, tags, comments, and metadata from Instagram, Flickr and Facebook.  No doubt more services will be arriving soon - or you can manually upload your photos.</p>

<p>As I've mentioned, if you really don't trust any of the above storage providers, you can use the <a href="https://web.archive.org/web/20121219191400/http://theopenphotoproject.org/">Open Source OpenPhoto</a> to run everything on your own server.</p>

<p>Why on Earth would you want your photos to be held hostage by some nebulous third party?  Even if you have a billing relationship with them, it won't stop them changing their terms and conditions, or "mistakenly" deleting your work.</p>

<p>Want to liberate your photos from the evil Instagram?  Tired of Facebook's stranglehold on your images?  Remembering why you left Flickr in the first place?</p>

<p><a href="https://trovebox.com/for/instagram">Here's the button you need to press</a>.
<a href="https://trovebox.com/for/instagram"><img src="https://shkspr.mobi/blog/wp-content/uploads/2012/12/openphoto-logo.png" alt="openphoto logo" width="180" height="80" class="alignnone size-full wp-image-7087"></a></p>
<img src="https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/info/okgo.php?ID=7084&HTTP_REFERER=RSS" alt="" width="1" height="1" loading="eager">]]></content:encoded>
					
					<wfw:commentRss>https://shkspr.mobi/blog/2012/12/instagram-got-you-down-dont-be-fooled-by-flickr/feed/</wfw:commentRss>
			<slash:comments>6</slash:comments>
		
		
			</item>
		<item>
		<title><![CDATA[Goodyear Blimp Docking with The Shard (Time Lapse)]]></title>
		<link>https://shkspr.mobi/blog/2012/06/goodyear-blimp-docking-with-the-shard-time-lapse/</link>
					<comments>https://shkspr.mobi/blog/2012/06/goodyear-blimp-docking-with-the-shard-time-lapse/#comments</comments>
				<dc:creator><![CDATA[@edent]]></dc:creator>
		<pubDate>Fri, 22 Jun 2012 07:04:43 +0000</pubDate>
				<category><![CDATA[/etc/]]></category>
		<category><![CDATA[Blimp]]></category>
		<category><![CDATA[goodyear]]></category>
		<category><![CDATA[london]]></category>
		<category><![CDATA[photos]]></category>
		<guid isPermaLink="false">http://shkspr.mobi/blog/?p=5960</guid>

					<description><![CDATA[As I was wandering over Waterloo Bridge, I spotted a Blimp flying above London.  I find that Blimps have an otherworldly quality. Sleek, silent, and majestic.  I fired off a few photos as it flew overhead. It then turned and went to approach The Shard. Where, finally, it docked and her passengers alighted.  Here&#039;s the time lapse:      Of course, it was just a trick of perspective. But wouldn&#039;t it …]]></description>
										<content:encoded><![CDATA[<p>As I was wandering over Waterloo Bridge, I spotted a Blimp flying above London.</p>

<p>I find that Blimps have an otherworldly quality. Sleek, silent, and majestic.</p>

<p>I fired off a few photos as it flew overhead. It then turned and went to approach The Shard. Where, finally, it docked and her passengers alighted.</p>

<p>Here's the time lapse:</p>

<iframe title="Goodyear Blimp Docking with The Shard (Time Lapse)" width="620" height="349" src="https://www.youtube.com/embed/wFOIAczuJjs?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen=""></iframe>

<img title="Blimp and shard" class="aligncenter" alt="image" src="https://shkspr.mobi/blog/wp-content/uploads/2012/06/wpid-IMG_20120619_182858.jpg">

<p>Of course, it was just a trick of perspective. But wouldn't it be wonderful to commute over London by airship?</p>
<img src="https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/info/okgo.php?ID=5960&HTTP_REFERER=RSS" alt="" width="1" height="1" loading="eager">]]></content:encoded>
					
					<wfw:commentRss>https://shkspr.mobi/blog/2012/06/goodyear-blimp-docking-with-the-shard-time-lapse/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title><![CDATA[Invasion Paris!]]></title>
		<link>https://shkspr.mobi/blog/2010/11/invasion-paris/</link>
					<comments>https://shkspr.mobi/blog/2010/11/invasion-paris/#respond</comments>
				<dc:creator><![CDATA[@edent]]></dc:creator>
		<pubDate>Fri, 05 Nov 2010 08:25:17 +0000</pubDate>
				<category><![CDATA[/etc/]]></category>
		<category><![CDATA[geo cacheing]]></category>
		<category><![CDATA[NaBloPoMo]]></category>
		<category><![CDATA[paris]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[space invaders]]></category>
		<guid isPermaLink="false">http://shkspr.mobi/blog/?p=2781</guid>

					<description><![CDATA[I love nothing more that a tramp round a city.  Taking the Metro in Paris is very simple - and fairly cheap - but the riches you discover wandering around make up for the extra time needed.  A few years ago, Miss Geeky  introduced me to Space Invader spotting.   Dotted around the cities of the world are mosaics of Space Invaders.  Placed there by a mysterious artist - seemingly at random.  Before …]]></description>
										<content:encoded><![CDATA[<p>I love nothing more that a tramp round a city.  Taking the Metro in Paris is very simple - and fairly cheap - but the riches you discover wandering around make up for the extra time needed.</p>

<p>A few years ago, <a href="http://missgeeky.com/2008/12/01/geocaching-space-invaders-and-a-secret-garden/">Miss Geeky  introduced me to Space Invader spotting</a>.<br>
<a href="http://www.flickr.com/photos/cristiano_betta/2879518414/" title="Now where is that alien? by Cristiano Betta, on Flickr"><img src="https://shkspr.mobi/blog/wp-content/uploads/2010/11/2879518414_8c488b0791.jpg" width="500" height="333" alt="Now where is that alien?"></a></p>

<p>Dotted around the cities of the world are mosaics of <a href="http://www.space-invaders.com/">Space Invaders</a>.  Placed there by a <a href="http://en.wikipedia.org/wiki/Invader_%28artist%29">mysterious artist</a> - seemingly at random.</p>

<p>Before I went to Paris, I had no idea that there were any Space Invaders lurking on street corners. I've since realised that it's possible to get fairly <a href="https://www.space-invaders.com/world/paris/">detailed maps of where the invaders are</a>.  Or rather, where they are supposed to be - they have a habit of moving.  Or, more likely, being stolen!</p>

<p>For me, running around the city specifically looking for the little blighters ruins the sheer joy of finding them by chance.  We spotted nine in total - one of which was on the banks of the Seine, but our boat moved too quickly for me to capture it.</p>

<p>Here are photos of the ones that I found.  Annoyingly, my Nexus One didn't geo-tag the images - hopefully the street signs should give you a clue as to where they can be found.</p>

<p>
<a href="https://shkspr.mobi/blog/wp-content/uploads/2010/11/2879518414_8c488b0791.jpg"><img width="500" height="333" src="https://shkspr.mobi/blog/wp-content/uploads/2010/11/2879518414_8c488b0791.jpg" class="attachment-medium size-medium" alt=""></a>
</p>

<p>So, next time you're in a big city - keep watching the skies!</p>
<img src="https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/info/okgo.php?ID=2781&HTTP_REFERER=RSS" alt="" width="1" height="1" loading="eager">]]></content:encoded>
					
					<wfw:commentRss>https://shkspr.mobi/blog/2010/11/invasion-paris/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title><![CDATA[Police, Camera, Action...]]></title>
		<link>https://shkspr.mobi/blog/2009/06/police-camera-action/</link>
					<comments>https://shkspr.mobi/blog/2009/06/police-camera-action/#comments</comments>
				<dc:creator><![CDATA[@edent]]></dc:creator>
		<pubDate>Wed, 17 Jun 2009 20:11:46 +0000</pubDate>
				<category><![CDATA[/etc/]]></category>
		<category><![CDATA[photography]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[police]]></category>
		<guid isPermaLink="false">http://shkspr.mobi/blog/?p=170</guid>

					<description><![CDATA[As I was walking home from work, I spotted an unusual sight - a police van parked in a disabled bay near my local train station.  I snapped a picture of it.  Police van in a disabled bay  As soon as I had taken a shot, PC Smith (40144) came out from the train station and asked to speak with me.  She asked why I&#039;d taken a photo of her van.  I told her that it was parked in a disabled bay.  She…]]></description>
										<content:encoded><![CDATA[<p>As I was walking home from work, I spotted an unusual sight - a police van parked in a disabled bay near my local train station.  I snapped a picture of it.</p>

<p></p><div id="attachment_171" style="width: 310px" class="wp-caption alignnone"><img aria-describedby="caption-attachment-171" class="size-medium wp-image-171" title="IMG00061-20090617-1914" src="https://shkspr.mobi/blog/wp-content/uploads/2009/06/IMG00061-20090617-1914-300x225.jpg" alt="Police van in a disabled=" width="300" height="225"><p id="caption-attachment-171" class="wp-caption-text">Police van in a disabled bay</p></div><p></p>

<p>As soon as I had taken a shot, PC Smith (40144) came out from the train station and asked to speak with me.  She asked why I'd taken a photo of her van.  I told her that it was parked in a disabled bay.  She told me that she'd been called because a woman was self-harming on the station and that was the only place she could park.</p>

<p>Fair enough, I said.  Then a funny thing happened.  She asked me to delete the photo.</p>

<p>To my mind there are only two logical reasons she could have for wanting me to delete the photo.</p>

<ol>
    <li>She genuinely thought that the photograph was likely to be useful in the preparation of a crime.</li>
    <li>She had committed an offence and didn't want there to be any evidence.</li>
</ol>

<p>I asked her why she wanted the photo to be deleted, she told me that "in the current climate" the police had been asked to stop people from taking photos of sensitive buildings and of the police.</p>

<p><a href="http://www.epuk.org/resources/acpo-police-media-guidelines">That isn't true</a> - and I told her so.</p>

<p>She asked to take down my details.&nbsp; I asked her why she wanted my details and whether I was obliged to give them.&nbsp; At this point, I asked if I could record our conversation - she agreed.</p>

<p>I won't post the video because, frankly, it makes both of us look like arses.&nbsp; I've got shakey hands and a wobbly voice, she rings her sergeant and gets told she isn't allowed to demand my details.&nbsp; Neither of us are left exactly covered in glory.</p>

<p>She was told by her superior that she could take down a description of me.  I told her that <a href="http://www.cgsecurity.org/wiki/PhotoRec">asking to delete photos was silly because they can be easily undeleted</a>.  I also thanked her for not escalating the situation.  I left.&nbsp; As I left, I allowed my phone to <a href="http://twitpic.com/7n0jr">post the photo I'd taken to twitpic</a>.</p>

<p>There are several interesting points</p>

<ul>
    <li>Police still believe - or are still being told - that<a href="http://www.guardian.co.uk/uk/2009/apr/16/police-delete-tourist-photos"> people aren't allowed to photograph "sensitive" subjects</a>.</li>
    <li>Police are still asking for the destruction of private property (photographs). <a href="https://web.archive.org/web/20090624135713/http://www.sirimo.co.uk/2009/05/14/uk-photographers-rights-v2/">Know your photographic rights</a>.</li>
    <li>Many people still don't understand that digital images live forever - whether on the Internet or as fragments on a memory card.</li>
    <li>Police still use common sense and are willing to listen if you put your case politely and firmly.&nbsp; That's very reassuring.</li>
</ul>

<p>I want to make it quite clear that I have no reason to disbelieve PC Smith when she said that she was attending a genuine call.&nbsp; I'm not going to pursue the parking in a disabled bay matter any further. I am going to pursue the matter of the advice my local police force are given regarding the photography of them and their vehicles.</p>

<p>Remember, if you are taking photos that you think are genuinely important - upload them as soon as possible from your camera. If you're asked to delete a photo - it may be wise to do so; <a href="http://www.cgsecurity.org/wiki/PhotoRec">photos can be easily recovered</a>.</p>

<p>Many thanks for all the retweets - it's good to know that I'm not alone in thinking that this is a farcical situation.</p>

<p></p><div id="attachment_173" style="width: 241px" class="wp-caption alignnone"><a href="https://twitter.com/search?q=edent%20police%20disabled%20delete&amp;f=realtime"><img aria-describedby="caption-attachment-173" class="size-medium wp-image-173" title="delete" src="https://shkspr.mobi/blog/wp-content/uploads/2009/06/delete-231x300.png" alt="People retweeting my photo" width="231" height="300"></a><p id="caption-attachment-173" class="wp-caption-text">People retweeting my photo</p></div><p></p>

<p><em> Edit:</em> Thanks for all your kind words and also to <a href="http://www.boingboing.net/2009/06/17/uk-cop-war-on-terror.html">Boing Boing for picking this up</a>.</p>
<img src="https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/info/okgo.php?ID=170&HTTP_REFERER=RSS" alt="" width="1" height="1" loading="eager">]]></content:encoded>
					
					<wfw:commentRss>https://shkspr.mobi/blog/2009/06/police-camera-action/feed/</wfw:commentRss>
			<slash:comments>27</slash:comments>
		
		
			</item>
	</channel>
</rss>
