<?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>P2P Research Institute Blog &#187; Piracy Research</title>
	<atom:link href="http://blog.p2presearch.com/category/piracy-research/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.p2presearch.com</link>
	<description>whats happening in the peersphere</description>
	<lastBuildDate>Wed, 06 May 2009 01:30:48 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Secure, fast, P2P filesystem: An interview with DustFS author Michael Stapelberg</title>
		<link>http://blog.p2presearch.com/2008/10/05/secure-fast-p2p-filesystem-an-interview-with-dustfs-author-michael-stapelberg/</link>
		<comments>http://blog.p2presearch.com/2008/10/05/secure-fast-p2p-filesystem-an-interview-with-dustfs-author-michael-stapelberg/#comments</comments>
		<pubDate>Mon, 06 Oct 2008 06:25:42 +0000</pubDate>
		<dc:creator>Harry Tormey</dc:creator>
				<category><![CDATA[BitTorrent Protocol]]></category>
		<category><![CDATA[Interview]]></category>
		<category><![CDATA[P2P Software]]></category>
		<category><![CDATA[Piracy Research]]></category>
		<category><![CDATA[BiTorrent Protocol]]></category>
		<category><![CDATA[crawling]]></category>
		<category><![CDATA[encryption]]></category>
		<category><![CDATA[future]]></category>
		<category><![CDATA[Harry Tormey]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[OpenBSD]]></category>
		<category><![CDATA[OSX]]></category>
		<category><![CDATA[piracy]]></category>
		<category><![CDATA[potential]]></category>
		<category><![CDATA[protocol]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[streaming]]></category>
		<category><![CDATA[unworkable]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://blog.p2presearch.com/?p=145</guid>
		<description><![CDATA[Download MP3 audio of interview here.
A couple of weeks ago I interviewed Michael Stapelberg, head developer of the DustFS project. You can listen to a recording of this interview here. DustFS is an encrypted, distributed file system based on the BitTorrent protocol. DustFS&#8217;s major features are full encryption, authentication using certificates and usage of BitTorrent [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://p2presearch.com/Audio/2008/October/5/michael0945am12sept2008.mp3">Download MP3 audio of interview here</a>.</p>
<p>A couple of weeks ago I interviewed <a href="http://michael.stapelberg.de">Michael Stapelberg</a>, head developer of the <a href="http://dustfs.zekjur.net">DustFS</a> project. You can listen to a recording of this interview <a href="http://p2presearch.com/Audio/2008/October/5/michael0945am12sept2008.mp3">here</a>. DustFS is an <a href="http://en.wikipedia.org/wiki/Encryption">encrypted</a>, <a href="http://en.wikipedia.org/wiki/Distributed_file_system">distributed file system</a> based on the<a href="http://en.wikipedia.org/wiki/BitTorrent"> BitTorrent</a> protocol. DustFS&#8217;s major features are full encryption, authentication using certificates and usage of BitTorrent for fast distribution of files (accelerated by using so-called <a href="http://en.wikipedia.org/wiki/Cache">cache</a> servers).</p>
<p>Michael is quite active in the <a href="http://en.wikipedia.org/wiki/Open_source">Open Source</a> community having contributed to a number of projects such as <a href="http://en.wikipedia.org/wiki/Enlightenment_(window_manager)">Enlightenment</a> (e17), <a href="http://collectd.org/">collectd </a>and <a href="http://www.bacula.org/">Bacula</a>. Apart from the above Michael is also the author of <a href="http://michael.stapelberg.de/mxallowd.en">mxallowd</a> an anti-spam daemon for Linux/*BSD and is about to enter a Computer Science program at the <a href="http://www.uni-heidelberg.de/index_e.html">University of Heidelberg</a> in southern Germany.</p>
<p>According to Michael, the idea for DustFS came from a local <a href="http://www.ccc.de/?language=en">Chaos Computer Club (CCC)</a> meeting. In Germany, most of the <a href="http://en.wikipedia.org/wiki/DSL">DSL</a> providers offer high downstream but low upstream bandwidth Internet connections. If you are a DSL customer in Germany and you want to be able to conveniently share large files with your friends, your options are essentially limited to the existing, well-known protocols such as <a href="http://en.wikipedia.org/wiki/File_Transfer_Protocol">FTP</a>, <a href="http://en.wikipedia.org/wiki/Network_File_System">NFS</a>, <a href="http://en.wikipedia.org/wiki/Samba_(software)">Samba</a> and <a href="http://en.wikipedia.org/wiki/Andrew_File_System">AFS</a>. The problem however is that all of these protocols require a central server &#8211; this factor combined with the limited upstream bandwidth in Germany conspire to make this sub-optimal for distributing large files amongst a group of friends.  A distributed, P2P protocol has the advantage that one can download simultaneously from multiple peers, therefore effectively combining their upstream bandwidth, rather than being limited by the pipe of the central server &#8211; resulting in greatly improved download speed. Another issue to note is that most DSL connections in Germany do not have a static IPv4 address, therefore one must additionally deal with the problem of co-ordinating server addresses with your friends.  P2P networks, on the other hand, are inherently distributed and self-configuring.</p>
<p>One solution to the above problem would be to build a torrent file for the data you want to share, set up a BitTorrent tracker and attempt to keep it private &#8211; however this is a lot of manual set up overhead and would be quite annoying to do every time you wanted to share a single file. The main aim of DustFS is to make sharing a file among a small group of friends in a secure and trustworthy fashion easy and painless.</p>
<p>As I mentioned already, DustFS is an encrypted FUSE file system built on top of the <a href="http://www.p2presearch.com/">P2P Research Institute&#8217;s</a> BitTorrent implementation <a href="http://p2presearch.com/unworkable/">Unworkable</a>. Originally DustFS used <a href="http://en.wikipedia.org/wiki/Transmission_(BitTorrent_client)">Libtransmission</a> as its BiTorrent implementation. However despite it&#8217;s name, Libtransmission is not in fact just a library.  Libtransmission provides a number of features not required by DustFS and at 17,000 lines of source code is quite large.  Unworkable, on the other hand, is closer to 4,000 lines of code. To illustrate the difference this makes, the DustFS binary built with Libtransmission is 1.7 megabytes in size, as opposed to 700 kilobytes when built with Unworkable.</p>
<p>In Germany it is also quite cheap to rent servers which have reasonable upstream bandwidth allowances, a fact that DustFS plans to leverage to accelerate transfers. These rented servers could be used as intermediate cache servers for the DustFS network.  The idea is that when you transfer a file over DustFS, a cache server kicks in and mirrors this file. If yet another user requests the same file, they download using the copy stored on the cache server &#8211; at a vastly greater rate then from a DSL peer. A cache server is stripped down DustFS node.  A DustFS cache node doesn&#8217;t need FUSE, and generally has a lower set of dependencies than a normal node.</p>
<p>While DustFS is still in early stages of development, it looks extremely promising.  We think that Michael has struck on a very good idea.  If his project can gain enough momentum to solve the non-trivial engineering problems, DustFS could revolutionise file-sharing among groups of friends.  Imagine a world where everyone has an embedded, DustFS-capable device in their homes.  Family videos, photos and so on would be easily shareable between trusted parties in a secure manner.  Musicians could collaborate on tracks effortlessly without worry of their intellectual property being stolen.  The potential is huge.  We wish Michael and DustFS the best of luck and look forward to collaborating with him in the future.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.p2presearch.com/2008/10/05/secure-fast-p2p-filesystem-an-interview-with-dustfs-author-michael-stapelberg/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://p2presearch.com/Audio/2008/October/5/michael0945am12sept2008.mp3" length="14724485" type="audio/mpeg" />
		</item>
		<item>
		<title>P2P Research at Google wrap up and slides</title>
		<link>http://blog.p2presearch.com/2008/07/16/p2p-research-at-google-wrap-up-and-slides/</link>
		<comments>http://blog.p2presearch.com/2008/07/16/p2p-research-at-google-wrap-up-and-slides/#comments</comments>
		<pubDate>Thu, 17 Jul 2008 03:50:07 +0000</pubDate>
		<dc:creator>Niall O'Higgins</dc:creator>
				<category><![CDATA[BitTorrent Protocol]]></category>
		<category><![CDATA[P2P Software]]></category>
		<category><![CDATA[Piracy Research]]></category>
		<category><![CDATA[baypiggies]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[presentation]]></category>

		<guid isPermaLink="false">http://blog.p2presearch.com/?p=19</guid>
		<description><![CDATA[I gave a talk at Google/bayPIGgies last week.  I was very pleasantly surprised by the turnout &#8211; and most of all by the excellent questions asked by the audience.  The interest from people at the talk crossed many domains &#8211; people were generally curious about many aspects, from security to technical scalability concerns [...]]]></description>
			<content:encoded><![CDATA[<p>I gave a talk at Google/bayPIGgies last week.  I was very pleasantly surprised by the turnout &#8211; and most of all by the excellent questions asked by the audience.  The interest from people at the talk crossed many domains &#8211; people were generally curious about many aspects, from security to technical scalability concerns to legal issues.</p>
<p>Four employees from <a href="http://www.bittorrent.com/">BitTorrent, Inc</a> were present.  It was wonderful to have the chance to talk to some of the pioneers in this technology.  They seemed very interested in the work we are doing and invited us to call in to their offices in downtown SF some time.</p>
<p>Overall, it was wonderful to have so much interest in our research and to be able to spread some information about BitTorrent and p2p to a wider audience.  I believe the talk was recorded on video and should be made available by Google on YouTube or Google Video, however I don&#8217;t have the URL just yet.  I did the slides in S5 though, and you can view <a href="http://p2presearch.com/baypiggies20080710/slides.html">the slides for the p2p research talk at Google here</a> in a regular web browser.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.p2presearch.com/2008/07/16/p2p-research-at-google-wrap-up-and-slides/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>P2P Research Talk @ Google in Mountain View tonight</title>
		<link>http://blog.p2presearch.com/2008/07/10/p2p-research-talk-google-in-mountain-view-tonight/</link>
		<comments>http://blog.p2presearch.com/2008/07/10/p2p-research-talk-google-in-mountain-view-tonight/#comments</comments>
		<pubDate>Thu, 10 Jul 2008 16:53:10 +0000</pubDate>
		<dc:creator>Niall O'Higgins</dc:creator>
				<category><![CDATA[P2P Software]]></category>
		<category><![CDATA[Piracy Research]]></category>

		<guid isPermaLink="false">http://blog.p2presearch.com/?p=18</guid>
		<description><![CDATA[Just a quick note, I will be speaking on the subject of our research at the Google amphitheatre this evening.  Details on the talk, along with directions etc, can be found at the BayPiggies site. 
I will post my slides online and I believe there will be a good-quality recording of the talk made [...]]]></description>
			<content:encoded><![CDATA[<p>Just a quick note, I will be speaking on the subject of our research at the Google amphitheatre this evening.  Details on the talk, along with directions etc, can be found at <a href="http://baypiggies.net">the BayPiggies site</a>. </p>
<p>I will post my slides online and I believe there will be a good-quality recording of the talk made available on Youtube or Google Video.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.p2presearch.com/2008/07/10/p2p-research-talk-google-in-mountain-view-tonight/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The most popular things on BitTorrent?  You might be surprised.</title>
		<link>http://blog.p2presearch.com/2008/06/28/the-most-popular-things-on-bittorrent-you-might-be-surprised/</link>
		<comments>http://blog.p2presearch.com/2008/06/28/the-most-popular-things-on-bittorrent-you-might-be-surprised/#comments</comments>
		<pubDate>Sat, 28 Jun 2008 21:46:12 +0000</pubDate>
		<dc:creator>Niall O'Higgins</dc:creator>
				<category><![CDATA[Piracy Research]]></category>
		<category><![CDATA[BitTorrent]]></category>
		<category><![CDATA[content distribution]]></category>
		<category><![CDATA[graphs]]></category>
		<category><![CDATA[statistics]]></category>

		<guid isPermaLink="false">http://blog.p2presearch.com/?p=13</guid>
		<description><![CDATA[We have conducted a survey of 300,000 individual torrents available on four of the best-known BitTorrent trackers on the Internet.  Part of our analysis has been to see what category they belong to.  Is porn more popular than software?  Is music more numerous than TV?




Movies
Software
Music
TV
Games
Porn
Books
Pictures
Other


26.26%
20.00%
18.54%
11.06%
7.23%
4.61%
3.83%
1.18%
7.29%




Why so little porn?
While it is true that [...]]]></description>
			<content:encoded><![CDATA[<p>We have conducted a survey of 300,000 individual torrents available on four of the best-known BitTorrent trackers on the Internet.  Part of our analysis has been to see what category they belong to.  Is porn more popular than software?  Is music more numerous than TV?</p>
<p><img src="http://blog.p2presearch.com/wp-content/uploads/2008/06/cat_dist2.png" alt="Pie chart of BitTorrent category distribution" title="BitTorrent Category Distribution" width="350" height="150" class="alignnone size-full wp-image-14" /></p>
<table>
<tbody>
<tr>
<td>Movies</td>
<td>Software</td>
<td>Music</td>
<td>TV</td>
<td>Games</td>
<td>Porn</td>
<td>Books</td>
<td>Pictures</td>
<td>Other</td>
</tr>
<tr>
<td>26.26%</td>
<td>20.00%</td>
<td>18.54%</td>
<td>11.06%</td>
<td>7.23%</td>
<td>4.61%</td>
<td>3.83%</td>
<td>1.18%</td>
<td>7.29%</td>
</tr>
</tbody>
</table>
<p>
<b>Why so little porn?</b></p>
<p>While it is true that certain torrent aggregators/trackers specialise in a specific category, sites included in the survey such as Mininova and TPB have a very wide variety of content types.  Given the apparent prevalence of porn on the Internet as a whole, I&#8217;m surprised that the numbers are so low for it.  It is possible that much of this material was mis-categorised, or lumped in with another category such as movies or pictures.</p>
<p><b>More music than TV?</b></p>
<p>Another surprise, especially considering the huge amount of talk about rampant sharing of TV shows.  Also, I would posit that there may be more TV episodes released per annum than music albums.  However, perhaps there is a tendency &#8211; as with DVD releases of the same shows &#8211; to group individual TV shows into one torrent per season.  On the other hand, the same pattern exists with music, where an artist&#8217;s entire discography is released in a single torrent.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.p2presearch.com/2008/06/28/the-most-popular-things-on-bittorrent-you-might-be-surprised/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>MacGyver: The entertainment industry should embrace piracy to kill piracy</title>
		<link>http://blog.p2presearch.com/2008/06/03/macgyver-the-entertainment-industry-should-embrace-piracy-to-kill-piracy/</link>
		<comments>http://blog.p2presearch.com/2008/06/03/macgyver-the-entertainment-industry-should-embrace-piracy-to-kill-piracy/#comments</comments>
		<pubDate>Tue, 03 Jun 2008 19:27:35 +0000</pubDate>
		<dc:creator>Harry Tormey</dc:creator>
				<category><![CDATA[Piracy Research]]></category>
		<category><![CDATA[amazon unbox]]></category>
		<category><![CDATA[BitTorrent]]></category>
		<category><![CDATA[macgyver]]></category>
		<category><![CDATA[piracy]]></category>

		<guid isPermaLink="false">http://blog.p2presearch.com/?p=9</guid>
		<description><![CDATA[Recently I purchased series one through five of the hit TV show MacGyver from amazon.com on DVD for roughly $14  a pop including shipping. The inspiration for this whimsy came from a $4 trip to my local rental place which resulted in a straight through viewing of disc 1 of season 1. Prior to [...]]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal">Recently I purchased series one through five of the hit TV show <a href="http://www.freebase.com/view/en/macgyver">MacGyver</a> from amazon.com on DVD for roughly $14  a pop including shipping. The inspiration for this whimsy came from a $4 trip to my local rental place which resulted in a straight through viewing of disc 1 of season 1. Prior to making the decision to purchase I spent quite some time weighing up the plethora of media options available.</p>
<p class="MsoNormal">If I was willing to tolerate adverts and poor quality, AOL TV seemed like a reasonable choice. <a href="http://en.wikipedia.org/wiki/Amazon_Unbox">Amazon Unbox</a> was another tempting &#8220;now&#8221; option, but what if I wanted some sweet MacGyver lovin&#8217; on the bus home from work with my iPod?  Unbox&#8217;s DRM does not support the iPod so I&#8217;d be SOL on that count. Besides these restrictions Unbox wanted to charge me $1.99 an episode which at roughly 24 episodes per season was quite a bit more than I was willing to pay!</p>
<p class="MsoNormal">How about <a href="http://www.netflix.com">NetFlix</a>? Well I usually don&#8217;t watch that many movies a month so a NetFlix account would stay dormant at least half the time and its digital delivery services suffers from the same DRM problems that afflict Unbox.  A quick search of all the main torrent trackers yielded nothing promising (a seedless Love Boat crossover and a French language version of MacGyver series 2) so even if I wanted to sneak into the show for free I&#8217;d have to wait an undetermined amount of time for something to appear. Taking all of the above into consideration and considering the totally reasonable price I decided to do it the old fashioned way and buy DVD.</p>
<p class="MsoNormal">This whole process of evaluation took more than an hour to complete and was way more trouble than your average consumer would be willing to put up with. With all of these catches it&#8217;s no wonder that piracy is so prevalent, if a good MacGyver torrent was readily available at the time I was about to click buy, maybe I would have thought twice.</p>
<p class="MsoNormal">BitTorrent is really good at catering to the latest trends, where it falls down is in catering towards the more obscure pieces of media. In my opinion it is this inconsistent nature which is the entertainment industry&#8217;s biggest opportunity to stem the tide in its losing battle against piracy.</p>
<p class="MsoNormal">Consider what I was doing in my survey of the media options available to me. I was looking for the best bang for my buck. If I went to Swedish BitTorrent site The Pirate Bay and tried searching for MacGyver and the only promising thing that came up was an advertisement for NetFlix or Amazon and the price was right I might have clicked buy. Certainly I was more likely to click on that on an advertisement for pheromones.</p>
<p class="MsoNormal">By not embracing BitTorrent aggregator sites the entertainment industry is missing out on a valuable opportunity to extract revenue from potential customers.<span lang="EN-US"> Picture a service that trawled all of the major aggregators and provided an up to the minute search able index of every torrent available on the Internet. A Google for BitTorrent if you will. Now picture text advertisements on this service presenting you with the relative costs of all media available &#8211; free with advertisements, cheap DVD postal subscription, DRM streamed immediate download. In my opinion, such a service would be an excellent way to regain lost revenue from piracy.<br />
</span></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.p2presearch.com/2008/06/03/macgyver-the-entertainment-industry-should-embrace-piracy-to-kill-piracy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>P2P Case Study: On the illegal distribution of the hit film 300</title>
		<link>http://blog.p2presearch.com/2008/05/30/p2p-case-study-on-the-illegal-distribution-of-the-hit-film-300/</link>
		<comments>http://blog.p2presearch.com/2008/05/30/p2p-case-study-on-the-illegal-distribution-of-the-hit-film-300/#comments</comments>
		<pubDate>Fri, 30 May 2008 23:31:44 +0000</pubDate>
		<dc:creator>Niall O'Higgins</dc:creator>
				<category><![CDATA[Piracy Research]]></category>
		<category><![CDATA[300]]></category>
		<category><![CDATA[p2p]]></category>
		<category><![CDATA[piracy]]></category>

		<guid isPermaLink="false">http://blog.p2presearch.com/?p=10</guid>
		<description><![CDATA[Introduction
Distribution of media in peer to peer networks tends to mirror the mainstream media. A new cinematic release will suddenly become the hottest thing to download on BitTorrent. But who releases the films, and how? Usually there are many different individual releases for a given film, and the cycle typically starts with initial low-quality offerings, [...]]]></description>
			<content:encoded><![CDATA[<h3>Introduction</h3>
<p>Distribution of media in peer to peer networks tends to mirror the mainstream media. A new cinematic release will suddenly become the hottest thing to download on BitTorrent. But who releases the films, and how? Usually there are many different individual releases for a given film, and the cycle typically starts with initial low-quality offerings, with higher-quality copies being published as time goes on. This article is an in-depth look at the BitTorrent release progression of one major 2007 Hollywood film, <em>300</em>.</p>
<h3>Time line</h3>
<ul>
<li>March 9th 2007, blockbuster film <em>300</em> opens in movie theatres across the United States. While movie-goers crowd out cinemas on release day, Internet piracy gangs spring into action, working secretly beneath the radar of copyright enforcers in shady arrangements with theatre staff.</li>
<li>March 10th 2007, so-called &#8220;<a href="http://en.wikipedia.org/wiki/Cam_%28bootleg%29">cam</a>&#8221; releases &#8211; crudely videotaped reproductions &#8211; of the hit film appear on the BitTorrent P2P network.</li>
<li>March 12th 2007, a mere three days after the film has opened to the public, highly sophisticated &#8220;<a href="http://en.wikipedia.org/wiki/Telesync">telesync</a>&#8221; reproductions &#8211; which practically necessitate insider help to produce &#8211; flood onto BitTorrent.</li>
<li>March 20th 2007, less than two weeks since the film&#8217;s opening, BitTorrent is inundated with leaked &#8220;<a href="http://en.wikipedia.org/wiki/Workprint">workprint</a>&#8221; copies of the flick &#8211; very high quality digital reproductions.</li>
<li>March 21st 2007, piracy groups begin circulating misappropriated DVD &#8220;<a href="http://en.wikipedia.org/wiki/DVDSCR">Screeners</a>&#8221; &#8211; advance retail-quality copies of the film intended for critics and distributors &#8211; on BitTorrent.</li>
<li>April 11th, 2007, while continuous streams of pirated copies have poured onto P2P networks since the film&#8217;s release &#8211; including versions in French, Spanish and German along with versions with fan-made &#8220;alternative soundtracks&#8221; &#8211; the first authentic &#8220;<a href="http://en.wikipedia.org/wiki/DVDRip">DVDRip</a>&#8221; copies appear on BitTorrent, barely more than a month after the initial release date.</li>
<li>July 21st, 2007, the first in a string of ultra high quality <a href="http://en.wikipedia.org/wiki/HDTV">HDTV</a> duplications are released by pirates.</li>
<li>By the end of 2007, more than 332 different pirate versions of the film have been released on BitTorrent.</li>
<li>A whopping 25% of all pirated versions of <em>300</em> were distributed through infamous Swedish BitTorrent site, <a href="http://www.thepiratebay.org/">The Pirate Bay</a>.</li>
</ul>
<h3>Analysis</h3>
<p>The time line above makes it clear that despite huge investments made by the entertainment industry in piracy prevention,  piracy is rampant.  Indeed, it is easier now than ever before to download a pirated movie.  What is unclear, however, is the impact of various offerings, such as Amazon&#8217;s online movie store, or Netflix&#8217;s, are having on piracy.  At what point will people switch over to simply paying for a download rather than firing up their torrent client?  What needs to change in terms of cost, software and licensing?  These are some of the questions we are really interested in, and will continue to research.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.p2presearch.com/2008/05/30/p2p-case-study-on-the-illegal-distribution-of-the-hit-film-300/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
