<?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>the phantom menace &#8211; Terence Eden’s Blog</title>
	<atom:link href="https://shkspr.mobi/blog/tag/the-phantom-menace/feed/" rel="self" type="application/rss+xml" />
	<link>https://shkspr.mobi/blog</link>
	<description>Regular nonsense about tech and its effects 🙃</description>
	<lastBuildDate>Fri, 02 May 2025 06:39:49 +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>the phantom menace &#8211; Terence Eden’s Blog</title>
	<link>https://shkspr.mobi/blog</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title><![CDATA[YQL and The Pirate Bay]]></title>
		<link>https://shkspr.mobi/blog/2012/05/yql-and-the-pirate-bay/</link>
					<comments>https://shkspr.mobi/blog/2012/05/yql-and-the-pirate-bay/#comments</comments>
				<dc:creator><![CDATA[@edent]]></dc:creator>
		<pubDate>Wed, 02 May 2012 07:17:55 +0000</pubDate>
				<category><![CDATA[/etc/]]></category>
		<category><![CDATA[politics]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[json]]></category>
		<category><![CDATA[legal]]></category>
		<category><![CDATA[piracy]]></category>
		<category><![CDATA[Star Wars]]></category>
		<category><![CDATA[the phantom menace]]></category>
		<category><![CDATA[the pirate bay]]></category>
		<category><![CDATA[yql]]></category>
		<guid isPermaLink="false">http://shkspr.mobi/blog/?p=5649</guid>

					<description><![CDATA[For reasons best known to themselves, certain sections of the entertainment industries seem to believe that bolting the stable door shutting down The Pirate Bay will stop all piracy.  It&#039;s as though they think that people won&#039;t be able to use a proxy, circumvent the Cleanfeed block, or simply use a search engine to find another torrent site.  Build Your Own Pirate Bay?  Proxying is a very simple…]]></description>
										<content:encoded><![CDATA[<p>For reasons best known to themselves, certain sections of the entertainment industries seem to believe that <del datetime="2012-05-01T08:34:33+00:00">bolting the stable door</del> <a href="http://www.guardian.co.uk/technology/2012/apr/30/british-isps-block-pirate-bay">shutting down The Pirate Bay will stop all piracy</a>.</p>

<p>It's as though they think that people won't be able to use a proxy, circumvent the <a href="http://en.wikipedia.org/wiki/Cleanfeed_%28content_blocking_system%29">Cleanfeed</a> block, or simply use a search engine to find another torrent site.</p>

<h2 id="build-your-own-pirate-bay"><a href="https://shkspr.mobi/blog/2012/05/yql-and-the-pirate-bay/#build-your-own-pirate-bay">Build Your Own Pirate Bay?</a></h2>

<p>Proxying is a very simple concept.</p>

<ul>
    <li>Alice is forbidden from speaking to Bob.</li>
    <li>Alice can speak to Eve.</li>
    <li>Eve can speak to Bob.</li>
    <li>Alice, therefore, can use Eve to communicate with Bob.</li>
</ul>

<p>So, a user who wishes to access The Pirate Bay would have to do something quite complex to use a proxy?  No, this is all there is to it:</p>

<pre>SELECT * FROM html
WHERE url="https://thepiratebay.se/search/ubuntu/0/7/0"
AND xpath='//tr'</pre>

<p>This uses YQL and xpath to extract all the information from a Pirate Bay search (in this case, for Ubuntu - which is legally distributed through Bit Torrent).</p>

<p>Simply, this asks Yahoo (an American site) to contact The Pirate Bay (a Swedish site) to deliver information to a user in Britain.</p>

<p>You can play with the results yourself <a href="https://web.archive.org/web/20120504160649/http://developer.yahoo.com/yql/console/">in the Yahoo Console</a>.</p>

<p>This returns a JSON string which can then be easily parsed (e.g. using jQuery). Simple.</p>

<h2 id="aha-but-what-about-downloading-a-torrent"><a href="https://shkspr.mobi/blog/2012/05/yql-and-the-pirate-bay/#aha-but-what-about-downloading-a-torrent">Aha! But What About Downloading A Torrent?</a></h2>

<p>In the olden days (well, last year) there was a fly in the ointment.  You had to download a .torrent file from the website. That meant that you needed a way to connect to, in this case, The Pirate Bay or find a proxy which was willing to transfer files.</p>

<p>Nowadays, people use the <a href="http://en.wikipedia.org/wiki/Magnet_URI_scheme">magnet protocol</a>.  Here's what a magnet link looks like:</p>

<pre>magnet:?xt=urn:btih:fa692da0488aee23e5eb605a87be934ad7cec106</pre>

<p>Short enough to fit into a text message and, handily, can be embedded in an HTML document with no need to download an extra file.  Paste those 60 characters into your torrent client, and it will connect to the cloud and start downloading the file you requested.</p>

<p>So, a single web request to Yahoo and a line of JavaScript code is all it takes to circumvent this blockade.</p>

<h2 id="next-move"><a href="https://shkspr.mobi/blog/2012/05/yql-and-the-pirate-bay/#next-move">Next Move</a></h2>

<p>So, do the UK courts need to order ISPs to block Yahoo as well?  Or play whack-a-mole with all the new torrent sites springing up?  Let's not forget, in 2004 the huge Bit Torrent search engine <a href="http://en.wikipedia.org/wiki/Suprnova">Suprnova</a> was sued out of existence. Just like with the Hyrda, a decapitation lead to multiple sites springing up.</p>

<p>Piracy is a problem of convenience.  A pirated copy is</p>

<ul>
    <li>Faster to download.</li>
    <li>Quicker to watch (no unskipable trailers).</li>
    <li>More convenient to transfer to different devices.</li>
    <li>Global availability (no artificial regional restrictions).</li>
    <li>Immense back-catalogue (Star Wars, for example).</li>
    <li>Cheaper.</li>
</ul>

<p>The only downsides are that they are often of dubious legality, and occasionally of poor quality.</p>

<p>The entertainment industries have to compete on <strong>all these points</strong>.  I'll admit, that they will almost certainly not be able to compete with "free" - although monthly unlimited subscriptions come close.</p>

<p>The rest are problems of their own making.  I described how <a href="https://shkspr.mobi/blog/2009/05/the-10th-aniversary-of-the-death-of-the-modern-film-industry/">I downloaded The Phantom Menace back in 1999</a>.  13 long years later and the movie industry still isn't even close to where it needs to be.</p>

<p>Amazon have done pretty well from selling raw MP3s - a simple web interface, pay a small bit of money, instant high-quality download which is DRM free.  Where's the equivalent for films? Or for TV? Or radio?</p>

<p>The pernicious restrictions around geography also must end.  I want to watch Veep just as much as the Americans do. Why do I have to wait even an hour, let alone a week?</p>

<p>Finally, Star Wars <em>still</em> isn't available to (legally) download.  If I have a hankering for Jar Jar Binks at 3AM, I have to order a DVD and wait while it is physically transported from a warehouse. That's such a 19th Century way of thinking that it hurts my brain.</p>

<p>Get all that right and maybe - just maybe - the "piracy problem" will solve itself.</p>

<p>Of course, alternatively, it may be too late.  For 13 years people have been used to downloading without paying.  That's a long period of learned behaviour.  How content providers can convince people to change the habit of a lifetime is beyond my knowledge.</p>
<img src="https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/info/okgo.php?ID=5649&HTTP_REFERER=RSS" alt="" width="1" height="1" loading="eager">]]></content:encoded>
					
					<wfw:commentRss>https://shkspr.mobi/blog/2012/05/yql-and-the-pirate-bay/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
			</item>
		<item>
		<title><![CDATA[The 10th Anniversary of the Death of the Modern Film Industry]]></title>
		<link>https://shkspr.mobi/blog/2009/05/the-10th-aniversary-of-the-death-of-the-modern-film-industry/</link>
					<comments>https://shkspr.mobi/blog/2009/05/the-10th-aniversary-of-the-death-of-the-modern-film-industry/#comments</comments>
				<dc:creator><![CDATA[@edent]]></dc:creator>
		<pubDate>Fri, 29 May 2009 12:02:18 +0000</pubDate>
				<category><![CDATA[/etc/]]></category>
		<category><![CDATA[cinema]]></category>
		<category><![CDATA[film]]></category>
		<category><![CDATA[movies]]></category>
		<category><![CDATA[piracy]]></category>
		<category><![CDATA[social objects]]></category>
		<category><![CDATA[Star Wars]]></category>
		<category><![CDATA[the phantom menace]]></category>
		<category><![CDATA[university]]></category>
		<category><![CDATA[🏴‍☠️]]></category>
		<guid isPermaLink="false">http://shkspr.mobi/blog/?p=119</guid>

					<description><![CDATA[A long time ago...  Ten years ago, I posted on usenet that I&#039;d watched a bootleg of The Phantom Menace. I discovered the post recently and it got me thinking about how little progress has been made in the digital download arena.  The actual resolution of the bootleg  Picture the scene, it&#039;s my first year at university and, like any good geek, I am obsessed with Star Wars - Episode I.  So much so …]]></description>
										<content:encoded><![CDATA[<h2 id="a-long-time-ago"><a href="https://shkspr.mobi/blog/2009/05/the-10th-aniversary-of-the-death-of-the-modern-film-industry/#a-long-time-ago"><span style="color: #3366ff;">A long time ago...</span></a></h2>

<p>Ten years ago, <a href="http://groups.google.com/group/rec.arts.sf.starwars.misc/browse_thread/thread/d7101c0fcf5cf3c7">I posted on usenet that I'd watched a bootleg of The Phantom Menace</a>. I discovered the post recently and it got me thinking about how little progress has been made in the digital download arena.</p>

<p></p><div id="attachment_120" style="width: 361px" class="wp-caption alignnone"><img aria-describedby="caption-attachment-120" class="size-full wp-image-120" title="r2-d2" src="https://shkspr.mobi/blog/wp-content/uploads/2009/05/r2-d2.jpg" alt="The actual resolution of the bootleg" width="351" height="268"><p id="caption-attachment-120" class="wp-caption-text">The actual resolution of the bootleg</p></div><p></p>

<p>Picture the scene, it's my first year at university and, like any good geek, I am obsessed with Star Wars - Episode I.&nbsp; So much so that I help run a fan site, <a href="http://web.archive.org/web/19991002144947/www.thephantommenace.co.uk/obi-morph/obimorph.htm">ThePhantomMenace.co.uk</a>.&nbsp; The guys on my corridor are similarly hungry for Star Wars.&nbsp; We all grew up with it and we all love it.&nbsp; Yoda's benevolent gaze eases us through our homesickness.</p>

<p></p><div id="attachment_122" style="width: 484px" class="wp-caption alignnone"><a href="http://www.facebook.com/photo.php?pid=171175&amp;l=b8ef855c90&amp;id=609836217"><img aria-describedby="caption-attachment-122" class="size-full wp-image-122" title="jases-party" src="https://shkspr.mobi/blog/wp-content/uploads/2009/05/jases-party.jpg" alt="With Yoda watching over us, we can't possibly fail our exams!" width="474" height="315"></a><p id="caption-attachment-122" class="wp-caption-text">With Yoda watching over us, we can't possibly fail our exams!</p></div><p></p>

<p>George Lucas is a visionary when it comes to what we now call <a href="http://uk.altavista.com/web/results?itag=ody&amp;q=social+media&amp;kgs=0&amp;kls=0">social media</a>. Huge, detailed websites chronicle every development in the world of Star Wars. Behind the scenes movies, proto-blog posts, forums and chat rooms all blossom around this incredible <a href="https://web.archive.org/web/20090415152642/http://strange.corante.com/2007/06/13/nmkforum07-jyri-of-jaiku">social object</a>.</p>

<p>Then, at the last minute, it all goes wrong. The release date for the movie is set to 19 May 1999. For the USA.&nbsp; or those of us stuck in the UK - where the movie was filmed - we have to wait 2 months.</p>

<p></p><div id="attachment_121" style="width: 490px" class="wp-caption alignnone"><a href="http://www.starwars.com/"><img aria-describedby="caption-attachment-121" class="size-full wp-image-121" title="ewanscream" src="https://shkspr.mobi/blog/wp-content/uploads/2009/05/ewanscream.jpg" alt="How I felt" width="480" height="216"></a><p id="caption-attachment-121" class="wp-caption-text">How I felt</p></div><p></p>

<p>I can't accurately describe the sense of betrayal that many of us felt. Not only were we going to have a needless wait - we were <em>excluded</em> from our new-found social life.</p>

<p>We couldn't frequent any of our favourite haunts lest an American blurted out a spoiler. Going online at all was going to be perilous - a casual glance at the wrong website could accidentally reveal something as momentous as <a href="https://web.archive.org/web/20080224032800/https://www.youtube.com/watch?v=h6sj89xgnl4">Luke's parentage</a>.</p>

<p>A few days after the première, I was ranting about this imposition when I received and anonymous email.</p>

<blockquote><p>"Heard you couldn't see the movie. Click here. "</p></blockquote>

<p>I clicked. It was in the innocent days before 419 scams and rampant malware.&nbsp; This is what greeted me:</p>

<blockquote><p>TPM1.mpg - 650MB
</p><p>TPM2.mpg - 650MB</p></blockquote>

<p>It took over 24 hours to download. The whole corridor kept a vigil, counting every bit as it matured into a byte. We ran out of disk space at one point and had to delete all sorts of important coursework. I missed lectures. I didn't care.</p>

<p>With popcorn, beer and inflatable sofas we gathered in the room with the biggest monitor - 17 inches.</p>

<h2 id="the-most-profound-cinematic-experience-of-my-life"><a href="https://shkspr.mobi/blog/2009/05/the-10th-aniversary-of-the-death-of-the-modern-film-industry/#the-most-profound-cinematic-experience-of-my-life">The Most Profound Cinematic Experience Of My Life.</a></h2>

<p>Much has been written about the merits - or lack thereof - of The Phantom Menace. But for me it was the culmination of 18 years of waiting. The grainy picture &amp; tinny sound didn't diminish my enjoyment. I was with my friends and we were watching the movie months before anyone else in the country.&nbsp; It redefined my relationship with cinema and content consumption.</p>

<p>The next year, Napster exploded in popularity. Those of us on blazingly fast University connections were already downloading TV shows and movies using the humble Windows File Sharing utility.</p>

<p>Since that day, ten years ago, I've paid to see The Phantom Menace - once on VHS, once on DVD, a few times in the cinemas. I've bought the books, the t-shirts and the video games.&nbsp; I know it doesn't excuse the fact that I downloaded an illicit copy, but it is the perfect example of supply and demand being coupled with the disruptive power of the Internet.&nbsp; Once my demand could be satisfied with "official" source, that's where my money went.</p>

<p>We've moved a long was since then. We can now download perfect quality copies of movies which play on any of our devices. High definition, surround sound, DVD extras downloading in less time than it takes to view them.&nbsp; The movie industry writhes in pain, wondering where this viscous assault on their livelihood came from.&nbsp; They missed the boat <em>ten years ago</em>. They try - but <a href="https://web.archive.org/web/20090608033617/http://www.findanyfilm.com/Star-Wars-Episode-I---The-Phantom-Menace-film_options~14382">I still can't legally download The Phantom Menace</a>. The movie downloading "problem" is caused by demand far outstripping supply - this is not a <em>threat</em>; it's an <em>opportunity</em>!</p>

<p>We're living in a fantastic multi-media landscape of limitless possibilities.&nbsp; Can someone please tell the movie studios?</p>
<img src="https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/info/okgo.php?ID=119&HTTP_REFERER=RSS" alt="" width="1" height="1" loading="eager">]]></content:encoded>
					
					<wfw:commentRss>https://shkspr.mobi/blog/2009/05/the-10th-aniversary-of-the-death-of-the-modern-film-industry/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
			</item>
	</channel>
</rss>
