<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="/stylesheets/rss.css" type="text/css"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/">
  <channel>
    <title>Tom Moertel's Weblog: Netflix vs. Amazon Unbox: Netflix still wins</title>
    <link>http://blog.moertel.com/articles/2007/04/07/netflix-vs-amazon-unbox-netflix-still-wins</link>
    <language>en-us</language>
    <ttl>40</ttl>
    <description>Quality rants on programming theory and stuff geeks like</description>
    <item>
      <title>Netflix vs. Amazon Unbox: Netflix still wins</title>
      <description>&lt;p&gt;When Amazon.com announced its &lt;a href="http://www.amazon.com/gp/redirect.html?ie=UTF8&amp;amp;location=http%3A%2F%2Famazon.com%2Fb%3F%255Fencoding%3DUTF8%26node%3D16261631%26pf%5Frd%5Fm%3DATVPDKIKX0DER%26pf%5Frd%5Fs%3Dleft-nav-1%26pf%5Frd%5Fr%3D1XK6EQTX7A3HM1BKCSMN%26pf%5Frd%5Ft%3D101%26pf%5Frd%5Fp%3D283734401%26pf%5Frd%5Fi%3D507846&amp;amp;tag=tommoertesweb-20&amp;amp;linkCode=ur2&amp;amp;camp=1789&amp;amp;creative=9325"&gt;its Unbox video-download service&lt;/a&gt;, I was skeptical.  Compared to the reigning champion &amp;#8211; the &lt;span class="caps"&gt;DVD&lt;/span&gt; &amp;#8211; Unbox looked like a loser:&lt;/p&gt;


	&lt;ul&gt;
	&lt;li&gt;Unbox burdened its customers with &lt;span class="caps"&gt;DRM&lt;/span&gt; and the annoyances that come with &lt;span class="caps"&gt;DRM&lt;/span&gt;&lt;/li&gt;
		&lt;li&gt;Unbox required the use of a Windows-only player application&lt;/li&gt;
		&lt;li&gt;Unbox movies lacked &amp;#8220;standard&amp;#8221; &lt;span class="caps"&gt;DVD&lt;/span&gt; features such as surround sound, alternative audio tracks, commentaries, and bloopers&lt;/li&gt;
	&lt;/ul&gt;


	&lt;p&gt;The first two points were deal-breakers, so I wrote off Unbox and did my
best to ignore it.&lt;/p&gt;


	&lt;p&gt;And then Amazon hooked up with TiVo.  Beaming movies directly into my
TiVo box eliminates the need to deal with &lt;span class="caps"&gt;DRM&lt;/span&gt; and Windows annoyances.
My two big concerns sidestepped, I decided to give Unbox another
look.  I still wouldn&amp;#8217;t want to &lt;em&gt;buy&lt;/em&gt; Unbox-to-TiVo movies because
they lack the typical &lt;span class="caps"&gt;DVD&lt;/span&gt; extras and would tie up storage
space on my TiVo, but Unbox might be a decent way to rent the
occasional movie &amp;#8211; if the price were right.&lt;/p&gt;


	&lt;h3&gt;Is the price right?&lt;/h3&gt;


	&lt;p&gt;That depends on how the price of Unbox compares with the price
of my current rental option of choice, Netflix.  Both services offer immediate
access to good movies: Unbox by on-demand downloads, Netflix by
ensuring that I almost always have a &lt;span class="caps"&gt;DVD&lt;/span&gt; or two in the house.&lt;/p&gt;


	&lt;p&gt;To compare Unbox with Netflix, I had to figure out how much a
rental costs me with each service.  With Unbox the figuring was easy
because each rental has its own price tag, typically $3.99.&lt;/p&gt;


	&lt;p&gt;With Netflix, it&amp;#8217;s a bit trickier because the rental price depends
upon how many DVDs I rent in a month. I pay a monthly fee of $17.99
and can rent as many DVDs as I want, at least until the infamous
&lt;a href="http://www.hackingnetflix.com/2005/02/netflix_custome.html"&gt;Netflix rate
throttle&lt;/a&gt;
kicks in.
To determine how
many DVDs I rent during the typical month, I had to download my
rental history.  (If you&amp;#8217;re a Netflix subscriber, you can get your
history from the &lt;a href="http://www.netflix.com/ReturnedRentals"&gt;Returned
Rentals&lt;/a&gt; page.)
After downloading my history, massaging it into the desired form, and
loading it into &lt;a href="http://www.r-project.org/"&gt;R&lt;/a&gt;, I generated a
stem-and-leaf plot to visualize the number of DVDs I have rented
during each of the 76 months I have been a Netflix subscriber:&lt;/p&gt;


&lt;pre&gt;&lt;code&gt;&amp;gt; stem(monthly.rental.counts, scale=2)

  The decimal point is at the |

   1 | 0
   2 | 000
   3 | 0000000
   4 | 00000000000
   5 | 000000000000
   6 | 000000000000000
   7 | 0000
   8 | 000000
   9 | 00000
  10 | 0000
  11 | 0
  12 | 00
  13 | 00
  14 | 00
  15 | 0
&lt;/code&gt;&lt;/pre&gt;

	&lt;p&gt;It looks like I have rented as few as one and as many as fifteen DVDs in a
month.  Most months, however, I rent between three and ten DVDs.  On
average, I rent about 6.4 DVDs per month:&lt;/p&gt;


&lt;pre&gt;&lt;code&gt;&amp;gt; summary(monthly.rental.counts)
   Min. 1st Qu.  Median    Mean 3rd Qu.    Max.
  1.000   4.000   6.000   6.408   8.000  15.000
&lt;/code&gt;&lt;/pre&gt;

	&lt;p&gt;Thus my average rental price is about $2.80 per &lt;span class="caps"&gt;DVD&lt;/span&gt;:&lt;/p&gt;


&lt;pre&gt;&lt;code&gt;&amp;gt; 17.99 / 6.4
[1] 2.810937
&lt;/code&gt;&lt;/pre&gt;

	&lt;p&gt;Now I can make my Unbox-vs-Netflix price comparison.  For me, it
looks like Unbox is about 40 percent more expensive than
Netflix:&lt;/p&gt;


&lt;pre&gt;&lt;code&gt;&amp;gt; 3.99 / 2.81
[1] 1.419929
&lt;/code&gt;&lt;/pre&gt;

	&lt;p&gt;So the price of Unbox is &lt;em&gt;not&lt;/em&gt; right, at least for me.&lt;/p&gt;


	&lt;h3&gt;Testing Unbox-to-TiVo rentals&lt;/h3&gt;


	&lt;p&gt;Because Amazon is offering free $15 credits to TiVo owners, I decided
to give Unbox a test drive.  My test rental was &lt;a href="http://imdb.com/title/tt0443543/"&gt;&lt;em&gt;The Illusionist&lt;/em&gt;&lt;/a&gt;.  Renting the movie was
easy (just one click), and shortly thereafter Unbox automatically
downloaded the movie to my TiVo box.  When I played the movie,
however, I was disappointed with the video quality.  I easily
noticed banding artifacts, which were distracting
at times.  On the whole, the viewing experience was inferior to watching a
&lt;span class="caps"&gt;DVD&lt;/span&gt;.&lt;/p&gt;


	&lt;h3&gt; Netflix still beats Unbox&lt;/h3&gt;


	&lt;p&gt;For me, then, Unbox is still a loser.  It costs more and delivers
less than &lt;span class="caps"&gt;DVD&lt;/span&gt; rentals via Netflix.&lt;/p&gt;


	&lt;h3&gt; A note to my friends at Amazon.com&lt;/h3&gt;


	&lt;p&gt;I would be happy to give you my business, but right now you&amp;#8217;re not
earning it.  If you
want me as an Unbox customer, here is the recipe for winning me over:&lt;/p&gt;


	&lt;ul&gt;
	&lt;li&gt;Let me easily download movie rentals to my TiVo.  (&lt;em&gt;Check.&lt;/em&gt;)&lt;/li&gt;
		&lt;li&gt;Offer true &lt;span class="caps"&gt;DVD&lt;/span&gt; quality or better. (&lt;em&gt;You&amp;#8217;re not there yet.&lt;/em&gt;)&lt;/li&gt;
		&lt;li&gt;Sell the rentals for less than $2.80. (&lt;em&gt;You&amp;#8217;re not there yet.&lt;/em&gt;)&lt;/li&gt;
	&lt;/ul&gt;


	&lt;p&gt;Until then, I&amp;#8217;ll have to give my money to Netflix.&lt;/p&gt;


	&lt;p&gt;Cheers,&lt;br/&gt;
Tom&lt;/p&gt;


&lt;div class="update"&gt;
&lt;strong&gt;Update:&lt;/strong&gt; edits for clarity; added tags.
&lt;/div&gt;</description>
      <pubDate>Sat, 07 Apr 2007 12:20:00 -0400</pubDate>
      <guid isPermaLink="false">urn:uuid:ca850250-6b95-409a-9b1c-18f7a1707576</guid>
      <author>Tom Moertel</author>
      <link>http://blog.moertel.com/articles/2007/04/07/netflix-vs-amazon-unbox-netflix-still-wins</link>
      <category>reviews</category>
      <category>amazon</category>
      <category>netflix</category>
      <category>reviews</category>
      <category>movies</category>
      <category>unbox</category>
      <category>dvds</category>
      <category>rentals</category>
      <category>tivo</category>
      <trackback:ping>http://blog.moertel.com/articles/trackback/436</trackback:ping>
    </item>
    <item>
      <title>"Netflix vs. Amazon Unbox: Netflix still wins" by Tom Moertel</title>
      <description>&lt;p&gt;bond: Thanks for your comment.  In response, I don&amp;#8217;t think I am discounting the extra convenience of Unbox.  It&amp;#8217;s just that after having measured that extra convenience (by actually using Unbox in comparison to Netflix), I have found it to be small.&lt;/p&gt;</description>
      <pubDate>Wed, 12 Nov 2008 10:33:16 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:41b51af3-7753-47f7-a0be-3139ae9045fb</guid>
      <link>http://blog.moertel.com/articles/2007/04/07/netflix-vs-amazon-unbox-netflix-still-wins#comment-842</link>
    </item>
    <item>
      <title>"Netflix vs. Amazon Unbox: Netflix still wins" by bond</title>
      <description>&lt;p&gt;i d say you are discounting the &amp;#8216;convenience&amp;#8217; of renting at the click of a button and not having to deal with the hassle of waiting for an envelope and stuffing things into a player and then returing them.
UnBox is a true &amp;#8216;on demand&amp;#8217; offering. you can rent whenever you want, as many as you want.&lt;/p&gt;</description>
      <pubDate>Wed, 12 Nov 2008 02:20:54 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:0035e17e-62ab-48a0-b080-7ebc0c89400b</guid>
      <link>http://blog.moertel.com/articles/2007/04/07/netflix-vs-amazon-unbox-netflix-still-wins#comment-839</link>
    </item>
  </channel>
</rss>
