<?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/"
	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>Control Group Blog</title>
	<atom:link href="http://blog.controlgroup.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.controlgroup.com</link>
	<description></description>
	<lastBuildDate>Thu, 29 Jul 2010 18:15:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='blog.controlgroup.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/f388f3312831ad70ab2e3aac1d7acbc8?s=96&#038;d=http://s2.wp.com/i/buttonw-com.png</url>
		<title>Control Group Blog</title>
		<link>http://blog.controlgroup.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://blog.controlgroup.com/osd.xml" title="Control Group Blog" />
	<atom:link rel='hub' href='http://blog.controlgroup.com/?pushpress=hub'/>
		<item>
		<title>Automated Linux Server Deployment With Amazon EC2 and Puppet</title>
		<link>http://blog.controlgroup.com/2010/07/29/automated-linux-server-deployment-with-amazon-ec2-and-puppet/</link>
		<comments>http://blog.controlgroup.com/2010/07/29/automated-linux-server-deployment-with-amazon-ec2-and-puppet/#comments</comments>
		<pubDate>Thu, 29 Jul 2010 18:02:49 +0000</pubDate>
		<dc:creator>David Rocamora</dc:creator>
				<category><![CDATA[infrastructure]]></category>
		<category><![CDATA[cloud]]></category>
		<category><![CDATA[deployment]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[storage]]></category>

		<guid isPermaLink="false">http://blog.controlgroup.com/?p=854</guid>
		<description><![CDATA[I wear a few different hats at Control Group. Very often I will join the team on projects that have something to do with post production, storage networking, product development and web application development. At a glance these things seem quite different. What do these very different projects have in common? Linux! I work with [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.controlgroup.com&blog=7073291&post=854&subd=controlgroupblog&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>I wear a few different hats at Control Group. Very often I will join the team on projects that have something to do with post production, storage networking, product development and web application development. At a glance these things seem quite different. What do these very different projects have in common? <a href="http://en.wikipedia.org/wiki/Linux">Linux!</a></p>
<div id="attachment_870" class="wp-caption alignleft" style="width: 212px"><img class="size-medium wp-image-870" title="linux-penguin" src="http://controlgroupblog.files.wordpress.com/2010/07/linux-penguin.jpeg?w=202&#038;h=240" alt="Tux the Linux Penguin" width="202" height="240" /><p class="wp-caption-text">Tux the Linux Penguin </p></div>
<p><a href="http://en.wikipedia.org/wiki/Linux"></a>I work with Linux quite a bit at CG and it comes up in some interesting places. Consistently we find that the largest and smallest systems we work with are running Linux. If it&#8217;s a large system, like a database or storage network, Linux can provide the stability, robustness, and uptime required to make the project a success. If it&#8217;s a very small system, like an embedded display or a custom purpose device, we choose Linux because of its flexibility.</p>
<p>Over the last year or so, we&#8217;ve had a need to spin up many more virtual computers than we used to. It&#8217;s necessary to create a handful of  computers for each project we work on and the number of projects that we are taking on at a time is growing. Tools like EC2 and <a href="http://www.vmware.com/">VMWare</a> have made it very easy for us to create new virtual computers, but what about managing them? For Linux there are some great solutions. In this blog post I would like to talk about how we&#8217;re using some of the tools to deal with the large number of machines we are managing in Amazon EC2 for ourselves and our clients.</p>
<h4>Cloud Control</h4>
<p>The first part of the system is <a title="Amazon's Elastic Compute Cloud" href="http://aws.amazon.com/ec2/">Amazon&#8217;s Elastic Compute Cloud</a> (or EC2 for short). I&#8217;ve written about EC2 <a href="http://blog.controlgroup.com/2009/08/07/a-look-at-amazons-elastic-load-balancer/">before</a>, but to be really brief about it: EC2 allows you to create computers on the Internet quickly and lets you pay by the hour for their use. The instances you create are virtual machines that run in a large <a title="Xen" href="http://www.xen.org/">Xen</a> based infrastructure that Amazon provides. To customize the software and configuration of the instances, Amazon lets you create snapshots of your computers (called Amazon Machine Images or AMIs) that you can launch new instances from.</p>
<p>It&#8217;s hard to say that making an AMI is difficult, it&#8217;s just a few keystrokes and a coffee break while the image is prepared and stored for your future use. When you begin to manage dozens and dozens of different images this becomes a problem. It became clear to us that we needed to have one AMI to manage, and build every computer from image dynamically. To do this we needed a way to pass specific information to each instance when it started up and then have a tool customize the instance based on the specific information about it. Amazon provides a method to pass specific information to an instance (it&#8217;s called user-data) and the good folks at <a title="Alestic" href="http://alestic.com/">Alestic</a> have made some great AMIs around it with some <a title="Alestic Documentation" href="http://alestic.com/2009/06/ec2-user-data-scripts">good documentation</a>.</p>
<h4>Enter the Puppet Master</h4>
<p><img class="alignright" title="Sock Puppet" src="http://familyhandycrafts.com/wp-content/uploads/2010/01/sockpuppet.jpg" alt="" width="180" height="232" />We have been using a tool called <a title="Puppet" href="http://www.puppetlabs.com/">Puppet</a> for nearly two years now to manage a handful of computers. We selected that to manage the whole lot of Linux computers that we were dealing with. Puppet allows us to describe how a computer should work in a general way. We can make collections of configurations for standard things so it&#8217;s easy to reuse what we create over and over again. Our Puppet configuration is stored in a <a title="Git version control system" href="http://git-scm.com/">Git repository</a> so many administrators and developers can collaborate on it and our server configurations are backed up and version controlled automatically.</p>
<h4>Bringing it all together</h4>
<p>Puppet decides what configuration to use for a computer based on its hostname. We use the EC2 user data to pass a new instance the address of a Puppet server and the hostname that the machine should assume. When it boots up it sets its hostname and checks in to receive the configuration that we&#8217;ve stored for it. All changes to the machine happen through Puppet so we don&#8217;t have to spend a lot of time SSHing in and customizing the machine. It&#8217;s also very easy for us to duplicate a machine for testing or whatever we need.</p>
<p>While we originally did this to make our lives easier as we manage more machines there turned out to be some really cool side effects:</p>
<ul>
<li><strong>Excellent Security: </strong>We don&#8217;t want to store sensitive information in Puppet. This means no passwords or secret stuff. To resolve this we require all developers and administrators to use key-based authentication to get access to the computers via SSH. This is very handy and it eliminates the need to remember passwords or for an administrator to have to reset passwords for users. Someday I would love to take the next step and have all of our users and machines be part of the <a title="Monkeysphere" href="http://web.monkeysphere.info/">Monkeysphere</a>.</li>
<li><strong>Accountability:</strong> All of our configuration is tracked in a Git repository so we can see the history about what has changed on certain hosts and who changed it. Change control occurs automatically with Puppet and it&#8217;s easy to examine and understand what has changed and why it changed.</li>
<li><strong>Repeatability: </strong>By storing all Linux computer configuration in a single place we can easily repeat what we did for one server on another. Puppet institutionalizes all of our Linux knowledge in one place and saves us time every time we have to create a new machine. If you want to see how someone has done something in the past there&#8217;s no more need to dig through emails or documentation, just look at the facts in the Puppet repository and even copy and paste it into your new configuration.</li>
<li><strong>Portability: </strong>We use Puppet to manage much more than just EC2 instances. Physical machines and virtual machines in our <a href="http://www.vmware.com/products/vsphere/esxi-and-esx/index.html">ESX</a> installation are managed this way too. It gives us one tool to take care of any Linux machine we deal with. Puppet also supports other operating systems. We&#8217;re looking to expand our use of it to Mac OS X machines and maybe even Windows sometime soon.</li>
</ul>
<p>There are certainly other ways to solve the problems we&#8217;re up against, but this is the way we chose. We did some extensive evaluation of <a title="Chef" href="http://opscode.com/">Chef</a> (which is a tool like Puppet) and we&#8217;ve used <a title="Rightscale" href="http://www.rightscale.com/">Rightscale</a> before. This sort of thing is becoming very important as we manage more and more computers. I expect we&#8217;ll see a lot of exciting products, techniques, and services in this space as time goes on.</p>
<p>If you have any questions or comments about our setup, or would like to discuss implementing something like this for your business, leave a comment or <a title="Contact Control Group" href="http://www.controlgroup.com/contact">get in touch with us</a>. We&#8217;d love to help.</p>
<br />Filed under: <a href='http://blog.controlgroup.com/category/infrastructure/'>infrastructure</a> Tagged: <a href='http://blog.controlgroup.com/tag/cloud/'>cloud</a>, <a href='http://blog.controlgroup.com/tag/deployment/'>deployment</a>, <a href='http://blog.controlgroup.com/tag/development/'>development</a>, <a href='http://blog.controlgroup.com/tag/linux/'>linux</a>, <a href='http://blog.controlgroup.com/tag/server/'>server</a>, <a href='http://blog.controlgroup.com/tag/storage/'>storage</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/controlgroupblog.wordpress.com/854/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/controlgroupblog.wordpress.com/854/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/controlgroupblog.wordpress.com/854/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/controlgroupblog.wordpress.com/854/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/controlgroupblog.wordpress.com/854/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/controlgroupblog.wordpress.com/854/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/controlgroupblog.wordpress.com/854/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/controlgroupblog.wordpress.com/854/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/controlgroupblog.wordpress.com/854/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/controlgroupblog.wordpress.com/854/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.controlgroup.com&blog=7073291&post=854&subd=controlgroupblog&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.controlgroup.com/2010/07/29/automated-linux-server-deployment-with-amazon-ec2-and-puppet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/99e758aabf068a2ff5103e3cc76eddfb?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">drocamor</media:title>
		</media:content>

		<media:content url="http://controlgroupblog.files.wordpress.com/2010/07/linux-penguin.jpeg?w=253" medium="image">
			<media:title type="html">linux-penguin</media:title>
		</media:content>

		<media:content url="http://familyhandycrafts.com/wp-content/uploads/2010/01/sockpuppet.jpg" medium="image">
			<media:title type="html">Sock Puppet</media:title>
		</media:content>
	</item>
		<item>
		<title>Summer Gold.</title>
		<link>http://blog.controlgroup.com/2010/07/07/summer-gold/</link>
		<comments>http://blog.controlgroup.com/2010/07/07/summer-gold/#comments</comments>
		<pubDate>Wed, 07 Jul 2010 13:27:36 +0000</pubDate>
		<dc:creator>Colin O'Donnell</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[infrastructure]]></category>
		<category><![CDATA[video solutions]]></category>

		<guid isPermaLink="false">http://blog.controlgroup.com/?p=814</guid>
		<description><![CDATA[It’s been a gold medal month for CG’s clients.  While we can&#8217;t take credit for the accolades, we can live vicariously through these achievements.  These have been some of our favorite projects to work on and we agree with the judges: we think they&#8217;re pretty special too. VH1 won a Broadcast Designers Association Gold award [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.controlgroup.com&blog=7073291&post=814&subd=controlgroupblog&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-836" style="border:10px solid #fff;" title="top20blueribbon2009" src="http://controlgroupblog.files.wordpress.com/2010/07/top20blueribbon20091.gif?w=150&#038;h=294" alt="" width="150" height="294" />It’s been a gold medal month for CG’s clients.  While we can&#8217;t take credit for the accolades, we can live vicariously through these achievements.  These have been some of our favorite projects to work on and we agree with the judges: we think they&#8217;re pretty special too.</p>
<p><a href="http://www.vh1.com/">VH1</a> won a Broadcast Designers Association Gold award for their Beacon channel redesign! <a href="http://vh1creative.wiredrive.com/r/p/?presentation=54fc06bc96a6c5d67f827528369cdbea">Check out the </a><a href="http://vh1creative.wiredrive.com/r/p/?presentation=54fc06bc96a6c5d67f827528369cdbea">reel</a>.</p>
<p><a href="http://www.elitebacc.com/">Walker Digital</a> won the Gold medal at the <a href="http://blog.controlgroup.com/2010/07/07/wdg-takes-the-gold-casinos-will-never-be-the-same-again/">Gaming Technology Summit</a>.</p>
<p>And <a href="http://guardian.nepinc.com/">NEP Studios,</a> who host the Daily Show and The Colbert Report at their Control Group-readied HD studios were nominated for a <a href="http://www.businesswire.com/portal/site/home/permalink/?ndmViewId=news_view&amp;newsId=20100623006586&amp;newsLang=en">CIO 100 award</a> from <a href="http://www.cio.com/">CIO Magazine</a>.</p>
<p>Doing what you love, with great partners, and getting industry respect for it: what more could you ask for? What a great start to the summer! Congrats all.</p>
<br />Filed under: <a href='http://blog.controlgroup.com/category/development/'>development</a>, <a href='http://blog.controlgroup.com/category/infrastructure/'>infrastructure</a>, <a href='http://blog.controlgroup.com/category/video-solutions/'>video solutions</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/controlgroupblog.wordpress.com/814/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/controlgroupblog.wordpress.com/814/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/controlgroupblog.wordpress.com/814/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/controlgroupblog.wordpress.com/814/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/controlgroupblog.wordpress.com/814/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/controlgroupblog.wordpress.com/814/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/controlgroupblog.wordpress.com/814/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/controlgroupblog.wordpress.com/814/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/controlgroupblog.wordpress.com/814/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/controlgroupblog.wordpress.com/814/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.controlgroup.com&blog=7073291&post=814&subd=controlgroupblog&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.controlgroup.com/2010/07/07/summer-gold/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point>0.000000 0.000000</georss:point>
		<geo:lat>0.000000</geo:lat>
		<geo:long>0.000000</geo:long>
		<media:content url="http://0.gravatar.com/avatar/eecba56bda13e616332d7807684bef95?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">colinodonnell</media:title>
		</media:content>

		<media:content url="http://controlgroupblog.files.wordpress.com/2010/07/top20blueribbon20091.gif" medium="image">
			<media:title type="html">top20blueribbon2009</media:title>
		</media:content>
	</item>
		<item>
		<title>WDG Takes The Gold! &#8211; Casinos Will Never Be The Same Again.</title>
		<link>http://blog.controlgroup.com/2010/07/07/wdg-takes-the-gold-casinos-will-never-be-the-same-again/</link>
		<comments>http://blog.controlgroup.com/2010/07/07/wdg-takes-the-gold-casinos-will-never-be-the-same-again/#comments</comments>
		<pubDate>Wed, 07 Jul 2010 13:24:34 +0000</pubDate>
		<dc:creator>Colin O'Donnell</dc:creator>
				<category><![CDATA[general]]></category>

		<guid isPermaLink="false">http://blog.controlgroup.com/?p=786</guid>
		<description><![CDATA[We&#8217;ve been working with Walker Digital Gaming on their Perfect Pay and Elite Baccarat platforms since its inception, so it feels really good to have some outside validation as to its sheer awesomeness — Walker Digital just took the Gold medal for one of the most innovative casino games at the 2009 Gaming Technology Summit. I think you [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.controlgroup.com&blog=7073291&post=786&subd=controlgroupblog&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://controlgroupblog.files.wordpress.com/2010/07/perfectpay_table1.png"><img class="alignright size-medium wp-image-791" style="border:10px solid #fff;" title="perfectpay_table" src="http://controlgroupblog.files.wordpress.com/2010/07/perfectpay_table1.png?w=300&#038;h=216" alt="" width="300" height="216" /></a>We&#8217;ve been working with Walker Digital Gaming on their <a id="umyt" title="Perfect Pay and Elite Baccarat platforms" href="http://www.elitebacc.com/">Perfect Pay and Elite Baccarat platforms</a> since its inception, so it feels really good to have some outside validation as to its sheer awesomeness — Walker Digital just took the <a id="k28s" title="Top 20 Most Innovative Gaming Technology Products Awards" href="http://www.gametechsummit.com/index.php/awards">Gold medal</a> for one of the most innovative casino games at the 2009 <a id="nib2" title="Gaming Technology Summit" href="http://www.gametechsummit.com/">Gaming Technology Summit</a>.</p>
<p>I think you have to go back 10 plus years to find a gaming platform (I&#8217;m thinking <a id="nfk1" title="wide area progressives" href="http://casinogambling.about.com/od/slots/a/progressive.htm">wide area progressives</a>?) that has altered the landscape as much as the Walker Digital platform; To quote the press release:</p>
<blockquote><p>With integrated RFID technology, a card-reading shoe and Walker’s Core Game Technology, the system provides an upgradeable, networked game platform that exactly tracks turnover, hand outcomes, wagers, payouts and player ratings in real time. It also eliminates losses due to dealer error, cheating and counterfeiting and increases game speed, precisely assessing player value and providing detailed reporting on game speed, bet mix, table occupancy, turnover, theoretical win and actual win.</p></blockquote>
<p>To boot, the &#8216;Elite&#8217; version of the game adds a whole bunch of new and exciting bets — knowing the game, the cards, and the chips allows the system to present wagers never before possible. Say hello to bigger wins and more exciting wagers for the players and better house advantage to the Casino on one of the most popular card games in the world.</p>
<p>Of course the Judges were &#8216;<a href="http://www.casinojournal.com/Articles/Cover_Story/2010/05/01/Top-20-Most-Innovative-Gaming-Technology-Products-of-2009">duly impressed&#8217;</a> who wouldn&#8217;t be?</p>
<blockquote><p>“This product would resolve many of the problems casinos currently deal with regarding very high-end baccarat play,” said one. “It automates many of the functions of administering baccarat play, but does so in a manner that would not be intrusive to the serious high-end customer.”</p>
<p>Another judge noted the product would “work well in high-volume baccarat markets where the clientele prefers to handle the chips.” The features he liked best included the combination of accurate real-time bet recognition and optical card reader. “Together they allow for complete tracking of game play,” he said.</p></blockquote>
<p>Congrats to the WDG team for pulling it off!</p>
<br />Filed under: <a href='http://blog.controlgroup.com/category/general/'>general</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/controlgroupblog.wordpress.com/786/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/controlgroupblog.wordpress.com/786/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/controlgroupblog.wordpress.com/786/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/controlgroupblog.wordpress.com/786/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/controlgroupblog.wordpress.com/786/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/controlgroupblog.wordpress.com/786/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/controlgroupblog.wordpress.com/786/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/controlgroupblog.wordpress.com/786/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/controlgroupblog.wordpress.com/786/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/controlgroupblog.wordpress.com/786/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.controlgroup.com&blog=7073291&post=786&subd=controlgroupblog&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.controlgroup.com/2010/07/07/wdg-takes-the-gold-casinos-will-never-be-the-same-again/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point>0.000000 0.000000</georss:point>
		<geo:lat>0.000000</geo:lat>
		<geo:long>0.000000</geo:long>
		<media:content url="http://0.gravatar.com/avatar/eecba56bda13e616332d7807684bef95?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">colinodonnell</media:title>
		</media:content>

		<media:content url="http://controlgroupblog.files.wordpress.com/2010/07/perfectpay_table1.png?w=300" medium="image">
			<media:title type="html">perfectpay_table</media:title>
		</media:content>
	</item>
		<item>
		<title>Dear Cable Company, It&#8217;s Internet TV knocking and it wants your ad revenue.</title>
		<link>http://blog.controlgroup.com/2010/06/11/dear-cable-company-its-internet-tv-knocking-and-it-wants-your-ad-revenue/</link>
		<comments>http://blog.controlgroup.com/2010/06/11/dear-cable-company-its-internet-tv-knocking-and-it-wants-your-ad-revenue/#comments</comments>
		<pubDate>Fri, 11 Jun 2010 21:29:23 +0000</pubDate>
		<dc:creator>Scott Anderson</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[video solutions]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[integration]]></category>
		<category><![CDATA[collaboration]]></category>
		<category><![CDATA[opinion]]></category>

		<guid isPermaLink="false">http://blog.controlgroup.com/?p=525</guid>
		<description><![CDATA[Here is a series of recommendations, rants, and observations about why MSOs (the cable companies) will be sad in 2011, unless they innovate and invest. Entertainment = Consumption + Interaction: Internet-enabled TV will bring about some radical changes.  Nielsen&#8217;s Three Screen Report indicates that consumption of the moving image is increasing across all three screens: [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.controlgroup.com&blog=7073291&post=525&subd=controlgroupblog&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>Here is a series of recommendations, rants, and observations about why MSOs (the cable companies) will be sad in 2011, unless they innovate and invest.</p>
<h4>Entertainment = Consumption + Interaction:</h4>
<p><strong> </strong>Internet-enabled TV will bring about some radical changes.  Nielsen&#8217;s Three Screen Report indicates that consumption of the moving image is increasing across all three screens: traditional TV, internet, and mobile. The interactivity of this &#8220;data&#8221; will surely change. Entertainment now equals both watching <em>and</em> interaction: checking out additional content online, playing games, or participating in ads as entertainment. 3D and gesture-based interactions will also redefine this blurring of the line between passive and active viewing over the next few years.</p>
<h4><strong>Ditch the &#8220;dumb&#8221; set-top:</strong></h4>
<p><strong></strong>Content models that rely on &#8220;captive audience&#8221; set-top box capture of viewing habits are outmoded as delivery systems, and deliver poor analytics and reporting compared with the information we can glean from a data-only model. If content owners rely on this information, why does the old model remain unchecked? The set-top box is largely a passive unit that doesn&#8217;t include an interface, platform, or APIs for allowing advertisers to interact directly with their target audience in real-time like the Web does. We have seen some recent (and awesome) successes with new methods of delivery: <a href="http://www.hulu.com">Hulu</a>, <a href="http://www.netflix.com">Netflix</a>, <a href="http://en.wikipedia.org/wiki/Major_League_Baseball_Advanced_Media" target="_blank">MLB</a>, and on-demand efforts.  However we are in an infancy of thinking about the possibilities of satellite, cable, and their antiquated set-tops, and how broadcast can recapture some of the money that migrated to online advertising.</p>
<p>This is an opportunity for direct access to consumers in their living rooms. The delivery method is there, there is already a large internet-enabled box in many living rooms: tuner, DVR, AppleTV, Slingbox, etc. MSOs already have the access to provide value-add applications to the experience, but what is preventing them from radically changing the intersection of TV, Internet, and advertising? They actually <span style="text-decoration:line-through;">have </span>had a better chance than anyone.</p>
<h4>Develop a platform:</h4>
<p><strong></strong>Imagine tying content delivery to analytics and advertising – a platform that delivers both choice and guidance to direct viewers to shows they like, and then targets accompanying ads based on more granular information and feedback. <a href="http://www.visibleworld.com/" target="_blank">Visible World</a> does last-mile ad insertion for parent company, Comcast, who acquired one of the big three: NBC.  A small wrinkle in this still-disputed merger is Sen. Kohl, who is asking for <a href="http://latimesblogs.latimes.com/entertainmentnewsbuzz/2010/05/senator-kohl-wants-some-tough-conditions-on-comcastnbc-universal-deal.html" target="_blank">a divestiture of NBC&#8217;s holdings in Hulu</a>, arguing that it potentially violates anti-trust.</p>
<p>But this is an amazing opportunity for MSOs to radically change the model for consumers and advertisers by providing a platform for interaction. MSOs have a chance to drive people back to their subscriptions — otherwise we will see a switch to online viewing, where advertisers can get a lot more feedback for their digital dimes, and consumers can have more choice, and augment their experiences.</p>
<h4><strong>The TV could supersede the MSO-provided set-top box as a platform:</strong></h4>
<p><strong></strong>Internet-enabled TVs or TVs with companion internet-enabled boxes will supersede the current MSO interface and platform. Federated search across Internet/DVR/broadcast is far more useful and less clunky than a remote-driven interface.  In addition, the ability to bring in dynamic web content — ads, additional content, or related information — should quickly reduce the three screens to just two.</p>
<p><span style="text-align:center; display: block;"><a href="http://blog.controlgroup.com/2010/06/11/dear-cable-company-its-internet-tv-knocking-and-it-wants-your-ad-revenue/"><img src="http://img.youtube.com/vi/diTpeYoqAhc/2.jpg" alt="" /></a></span></p>
<p>When MSOs realize they are missing out on key advertising opportunities, we will see a rush to market with subscription- and licensed-content across the three screens. You would have thought that Hulu would have put the fear in them, but wait until Google TV takes their bite.  Their <a href="http://discover.sonystyle.com/internettv/" target="_blank">recent partnerships with TV manufacturer, Sony</a>, ensures that this will be widely distributed to Best Buy, Walmart, etc. beyond the market reach of Roku, Slingboxes, of the world.</p>
<h4>Prepare to lose ad revenue:</h4>
<p><strong></strong>NBC Universal&#8217;s (current) CEO Jeff Zucker and his oft-quoted &#8216;trading analog dollars for digital pennies&#8217; was revised last year to <a href="http://newteevee.com/2009/03/18/zucker-were-at-digital-dimes-now/" target="_blank">&#8216;digital dimes&#8217;</a> from the man himself. That is good news, especially for the multitudes of investors that entered into internet video ventures last year.  Out of that gold-rush of investment though, there hasn&#8217;t been significant pay-dirt for many. Clearly the answer lies in uniting broadcast to the Internet, bringing the interactivity the web provides, in addition to the type of analytics that are possible. I predict Google TV will make more of an impact than Apple TV did to unite those advertising schemes, although watch out, <a href="http://www.philly.com/philly/business/technology/060110_apple_google_fight.html#axzz0pdEDmQhn" target="_blank">Apple&#8217;s clearly got some plans a brewin</a>&#8216;.</p>
<p>Google TV offers the opportunity to sell ad&#8217;s within the interface, and provide targeted advertising, on the TV. Show me what you got MSO&#8217;s.</p>
<h4><strong>In Conclusion:</strong></h4>
<p>It is a rapidly changing world, and people have clearly shown that the TV, cable-tuner, and DVR do not have all the features people want. The cable companies who own the infrastructure and delivery method of video and data are being left out of this equation. Google has side-stepped around cable companies and the licensing issues — wisely I might add — and added a layer with enhancements that will allow them get deep into people&#8217;s living rooms, to collect data and provide a smarter ad platform. Things are going to get really interesting&#8230;.</p>
<br />Filed under: <a href='http://blog.controlgroup.com/category/development/'>development</a>, <a href='http://blog.controlgroup.com/category/video-solutions/'>video solutions</a> Tagged: <a href='http://blog.controlgroup.com/tag/collaboration/'>collaboration</a>, <a href='http://blog.controlgroup.com/tag/development/'>development</a>, <a href='http://blog.controlgroup.com/tag/integration/'>integration</a>, <a href='http://blog.controlgroup.com/tag/opinion/'>opinion</a>, <a href='http://blog.controlgroup.com/tag/video/'>video</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/controlgroupblog.wordpress.com/525/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/controlgroupblog.wordpress.com/525/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/controlgroupblog.wordpress.com/525/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/controlgroupblog.wordpress.com/525/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/controlgroupblog.wordpress.com/525/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/controlgroupblog.wordpress.com/525/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/controlgroupblog.wordpress.com/525/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/controlgroupblog.wordpress.com/525/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/controlgroupblog.wordpress.com/525/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/controlgroupblog.wordpress.com/525/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.controlgroup.com&blog=7073291&post=525&subd=controlgroupblog&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.controlgroup.com/2010/06/11/dear-cable-company-its-internet-tv-knocking-and-it-wants-your-ad-revenue/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dbe87bab0dc9e3edd94d8527c362c8f5?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">cgscottanderson</media:title>
		</media:content>

		<media:content url="http://img.youtube.com/vi/diTpeYoqAhc/2.jpg" medium="image" />
	</item>
		<item>
		<title>0-60 in 3.9 seconds!</title>
		<link>http://blog.controlgroup.com/2010/05/14/0-60-in-3-9-seconds/</link>
		<comments>http://blog.controlgroup.com/2010/05/14/0-60-in-3-9-seconds/#comments</comments>
		<pubDate>Fri, 14 May 2010 15:35:33 +0000</pubDate>
		<dc:creator>Charlie Miller</dc:creator>
				<category><![CDATA[infrastructure]]></category>
		<category><![CDATA[video solutions]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[SANs]]></category>
		<category><![CDATA[final cut pro]]></category>
		<category><![CDATA[after effects]]></category>
		<category><![CDATA[maya]]></category>

		<guid isPermaLink="false">http://blog.controlgroup.com/?p=742</guid>
		<description><![CDATA[Check out the new ad campaign for the 2010 Cadillac CTS-V, with post production work done by one of our newest clients, The Lab. Post was done using Final Cut Pro, After Effects, and Maya, leveraging an infrastructure, render farm, and workflow that Control Group helped design, build, and support. We&#8217;re always astonished at what is possible when [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.controlgroup.com&blog=7073291&post=742&subd=controlgroupblog&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>Check out the new ad campaign for the <a href="http://www.youtube.com/watch?v=_D9B3LJcdM0">2010 Cadillac CTS-V</a>, with post production work done by one of our newest clients, <a href="http://thelabnyc.com/">The Lab</a>. Post was done using Final Cut Pro, After Effects, and Maya, leveraging an infrastructure, render farm, and workflow that Control Group helped design, build, and support. We&#8217;re always astonished at what is possible when an incredibly creative firm gets their hands on the latest technology.</p>
<p><span style="text-align:center; display: block;"><a href="http://blog.controlgroup.com/2010/05/14/0-60-in-3-9-seconds/"><img src="http://img.youtube.com/vi/_D9B3LJcdM0/2.jpg" alt="" /></a></span></p>
<br />Filed under: <a href='http://blog.controlgroup.com/category/infrastructure/'>infrastructure</a>, <a href='http://blog.controlgroup.com/category/video-solutions/'>video solutions</a> Tagged: <a href='http://blog.controlgroup.com/tag/after-effects/'>after effects</a>, <a href='http://blog.controlgroup.com/tag/final-cut-pro/'>final cut pro</a>, <a href='http://blog.controlgroup.com/tag/maya/'>maya</a>, <a href='http://blog.controlgroup.com/tag/sans/'>SANs</a>, <a href='http://blog.controlgroup.com/tag/video/'>video</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/controlgroupblog.wordpress.com/742/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/controlgroupblog.wordpress.com/742/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/controlgroupblog.wordpress.com/742/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/controlgroupblog.wordpress.com/742/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/controlgroupblog.wordpress.com/742/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/controlgroupblog.wordpress.com/742/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/controlgroupblog.wordpress.com/742/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/controlgroupblog.wordpress.com/742/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/controlgroupblog.wordpress.com/742/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/controlgroupblog.wordpress.com/742/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.controlgroup.com&blog=7073291&post=742&subd=controlgroupblog&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.controlgroup.com/2010/05/14/0-60-in-3-9-seconds/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point>40.712363 -74.008428</georss:point>
		<geo:lat>40.712363</geo:lat>
		<geo:long>-74.008428</geo:long>
		<media:content url="http://1.gravatar.com/avatar/9f536958df397ac6d0f1ce02cca6c46c?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">charlie miller</media:title>
		</media:content>

		<media:content url="http://img.youtube.com/vi/_D9B3LJcdM0/2.jpg" medium="image" />
	</item>
		<item>
		<title>Why Adobe CS5 Will Change Your Life</title>
		<link>http://blog.controlgroup.com/2010/05/03/why-adobe-cs5-will-change-your-life/</link>
		<comments>http://blog.controlgroup.com/2010/05/03/why-adobe-cs5-will-change-your-life/#comments</comments>
		<pubDate>Mon, 03 May 2010 17:08:04 +0000</pubDate>
		<dc:creator>Louai Abu-Osba</dc:creator>
				<category><![CDATA[design solutions]]></category>
		<category><![CDATA[general]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[creative suite]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://blog.controlgroup.com/?p=712</guid>
		<description><![CDATA[Adobe CS5 has been released and I can&#8217;t wait to install it. While I&#8217;ve noticed a lot of excitement around the web for Photoshop CS5, it&#8217;s been a rather divisive upgrade for the After Effects community. Many After Effects artists anticipate the upgrade to be lackluster or even disruptive to getting things done. Since After [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.controlgroup.com&blog=7073291&post=712&subd=controlgroupblog&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>Adobe CS5 has been released and I can&#8217;t wait to install it. While I&#8217;ve noticed a lot of excitement around the web for Photoshop CS5, it&#8217;s been a rather divisive upgrade for the After Effects community. Many After Effects artists anticipate the upgrade to be lackluster or even disruptive to getting things done. Since After Effects CS5 is now 64bit and only 64bit, many are upset that their 32bit plugins won&#8217;t work anymore and need to be upgraded, and that the other major new feature, the <a href="http://www.lynda.com/home/Player.aspx?lpk4=63775">rotobrush</a> tool, won&#8217;t work for anything but the easiest shots, which are easy to begin with anyway, so what&#8217;s the point in paying for this new feature?</p>
<p>Personally, if the only upgrade to After Effects CS5 was 64bit, I&#8217;d be overjoyed. There&#8217;s nothing more maddening than being unable to render a frame in your timeline because of memory issues, be it in a RAM Preview, output to disk, or working interactively in the application. The dreaded error I&#8217;m talking about of course is &#8220;After Effects error: could not create image  buffer&#8221;. This error has the potential to disappear with this release, given your workstation is souped up with RAM.</p>
<p><img class="alignleft size-full wp-image-738" title="CS5 Production Premium Box" src="http://controlgroupblog.files.wordpress.com/2010/05/cs5_production_premium_boxshot_png1.jpg?w=300&#038;h=291" alt="" width="300" height="291" />Indeed, I think many After Effects artists do not realize what a massive overhaul this is, and how much easier it&#8217;s going to be to work interactively and render with the application. Those 32 gigs of RAM you have in your workstation actually mean something beyond having a million tabs open in Firefox while you wait for your render to finish, which is crawling because After Effects CS4 is limited to 4GB of RAM, and is using swap space to avoid spitting out an image buffer error. Yes, that&#8217;s right, your renders will be much faster at higher resolutions, even if you&#8217;re not being given an error. I think once artists start using CS5 they&#8217;ll realize how much more sanity they have when working on HD, 2K and 4K projects. You folks that are delivering for non-standard ultrawide displays, such as for stadiums, buildings and museums will be stunned at what a difference 32GB of RAM will make compared to the 4GB you were limited to. It&#8217;s funny, I heard one guy say that 64bit support should have been a .5 upgrade, and I was like &#8220;Are you out of your mind?! They had to rewrite the entire application!&#8221; Finally, After Effects artists will no longer be snickered at by their fellow Nuke and Inferno compositors that have already been working in 64bit for sometime. 32bit was great when our resolutions were NTSC 640&#215;480, but those days are long gone.</p>
<p>The lack of a 64bit wrapper for 32bit plugins is a mixed bag, but ultimately, I&#8217;m really glad 32bit plugins won&#8217;t work. With paradigm shifts like this, I think it&#8217;s all or nothing. The adoption rate from plugin developers would be less than a trickle in the Sahara if they weren&#8217;t forced to rewrite their plugins for true 64bit. This would have been a great opportunity for Adobe to introduce some standardization for plugin licensing, but it looks like they dropped the bag on that already. Anyone who&#8217;s had to build or maintain an After Effects render farm knows the jungle of mess licensing is with 3rd party plugins and I wish Adobe would at least encourage best practices while developers rewrite their plugins.</p>
<p>Unfortunately, due to the plugin issue, I do think migration from CS4 to CS5 will take longer than it already does, which is typically most of a product cycle. I for one, will keep After Effects CS4 around until I find a replacement for Stefan Minning&#8217;s plugin called <a href="http://www.minning.de/software/normality">Normality</a>. Unfortunately, the developer will <a href="http://www.minning.de/journal/normality-not-supported-cs5">not be updating it to 64bit</a>.</p>
<p>On the After Effects scripting side, not much has changed, other than some deprecations and a few nice features. You can now read/write layer labels (the colored square next to the layer), which will be useful for making persistent selections for script batch operations. The upgrades to Mocha is nice too, especially the ability to import Mocha shapes in After Effects, which is pretty huge. That combined with the rotobrush finally makes After Effects an excellent choice for roto and tracking. I pretty much avoid rotoscoping whenever I can, but I think the rotobrush tool will be pretty useful, especially for making mattes that don&#8217;t need fine detail, such as for localized color corrections.  I&#8217;m curious if you can specifically shoot footage for the rotobrush, when a green screen isn&#8217;t available, but I&#8217;m not sure how it&#8217;s tracking and edge detection works.</p>
<p>I&#8217;m very excited to see Premiere&#8217;s enhanced performance. I&#8217;m a huge fan of dynamic link and I&#8217;m always encouraging people to use it instead of Final Cut when prepping footage for After Effects. Premiere really excels where After Effects doesn&#8217;t, and that&#8217;s real time video playback. Premiere has been further accelerated with CUDA enabled Nvidia cards and if you&#8217;ve never tried dynamic link, or imported a Premiere project into After Effects before, this is the release to do so.</p>
<br />Filed under: <a href='http://blog.controlgroup.com/category/design-solutions/'>design solutions</a>, <a href='http://blog.controlgroup.com/category/general/'>general</a> Tagged: <a href='http://blog.controlgroup.com/tag/adobe/'>adobe</a>, <a href='http://blog.controlgroup.com/tag/creative-suite/'>creative suite</a>, <a href='http://blog.controlgroup.com/tag/video/'>video</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/controlgroupblog.wordpress.com/712/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/controlgroupblog.wordpress.com/712/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/controlgroupblog.wordpress.com/712/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/controlgroupblog.wordpress.com/712/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/controlgroupblog.wordpress.com/712/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/controlgroupblog.wordpress.com/712/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/controlgroupblog.wordpress.com/712/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/controlgroupblog.wordpress.com/712/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/controlgroupblog.wordpress.com/712/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/controlgroupblog.wordpress.com/712/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.controlgroup.com&blog=7073291&post=712&subd=controlgroupblog&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.controlgroup.com/2010/05/03/why-adobe-cs5-will-change-your-life/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<georss:point>40.712363 -74.008428</georss:point>
		<geo:lat>40.712363</geo:lat>
		<geo:long>-74.008428</geo:long>
		<media:content url="http://1.gravatar.com/avatar/d3341401c4acc3117285f862ffd26dff?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">kateandlouai</media:title>
		</media:content>

		<media:content url="http://controlgroupblog.files.wordpress.com/2010/05/cs5_production_premium_boxshot_png1.jpg" medium="image">
			<media:title type="html">CS5 Production Premium Box</media:title>
		</media:content>
	</item>
		<item>
		<title>Storage for 3D Video Workflows</title>
		<link>http://blog.controlgroup.com/2010/04/29/storage-for-3d-video-workflows/</link>
		<comments>http://blog.controlgroup.com/2010/04/29/storage-for-3d-video-workflows/#comments</comments>
		<pubDate>Thu, 29 Apr 2010 17:53:12 +0000</pubDate>
		<dc:creator>Scott Anderson</dc:creator>
				<category><![CDATA[general]]></category>
		<category><![CDATA[infrastructure]]></category>
		<category><![CDATA[video solutions]]></category>

		<guid isPermaLink="false">http://blog.controlgroup.com/?p=695</guid>
		<description><![CDATA[Colin (who has written some excellent posts on our blog) brought up an interesting question in the comments of my NAB report regarding storage requirements for 3D workflows. I found my response growing to blog post proportions, so here it is&#8230;. 3D (stereoscopic) video does not always double the capture data for a couple of reasons, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.controlgroup.com&blog=7073291&post=695&subd=controlgroupblog&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>Colin (<a href="http://blog.controlgroup.com/author/colinodonnell/">who has written some excellent posts on our blog</a>) brought up an interesting question <a href="http://blog.controlgroup.com/2010/04/19/back-from-nab-in-3d/">in the comments of my NAB report</a> regarding storage requirements for 3D workflows. I found my response growing to blog post proportions, so here it is&#8230;.</p>
<p>3D (stereoscopic) video does not always double the capture data for a couple of reasons, most notably because there are different capture methods, different post-production methods for processing the data, and different ways to project the data, all which can affect the data requirements at different points in the production, post-production, or delivery process.</p>
<p>Data requirements will be double at worst because there are (sometimes) two stereo video tracks, but since the cameras are capturing very similar information, one of the accepted standards for delivery is <a href="http://en.wikipedia.org/wiki/2D_plus_Delta">2D+Delta</a> compression for the MPEG format. Using this compression the image data is processed with an algorithm that removes redundant pixel data from the two video tracks. The amount of data is equal to one image plus whatever is different in the other image (the Delta). Using this compression, 3D video is usually roughly 40% larger than a single stream of HD video.</p>
<p><a href="http://controlgroupblog.files.wordpress.com/2010/04/168824-500-342.jpg"><img class="alignnone size-full wp-image-698" title="168824-500-342" src="http://controlgroupblog.files.wordpress.com/2010/04/168824-500-342.jpg?w=450&#038;h=307" alt="" width="450" height="307" /></a></p>
<p><a href="http://controlgroupblog.files.wordpress.com/2010/04/168824-500-342.jpg"></a>Some cameras, like <a href="http://www.pacehd.com/">Pace&#8217;s Fusion camera</a> (above) which James Cameron used for Avatar, do shoot with two cameras side-by side, thus creating stereo video tracks and double the data for post (plus metadata). In this workflow, the two tracks are used to focus differently on objects in 3D space, dynamically changing the space between the cameras, and effectively using different z-depth focus to achieve the effect. This actually is not a new methodology, but using software algorithms to help determine focal length and automating what previously was manual can bring faster and more repeatable results. Another company, <a href="http://www.3alitydigital.com/">3ality</a>, is also providing similar functionality with different toolsets, including hardware that retrofits into 2D workflows. Interestingly enough, one of the major differences between them as 3D forerunners is that Pace is only a rentable technology solution, and 3ality cameras can be purchased. Two different positions.</p>
<p>When post is complete, there are some tricks that can be employed to reduce data for delivery including the 2D+Delta for transmission. For viewing the 3D data, there are a few different methods all which require different hardware (projectors, screens and potentially different methods of decoding).  Instead of using two projectors, some 3D can be projected using interleaved frames at a higher frequency through a polarized filter, i.e. one frame for the left eye, followed by one for the right. This is employed by <a href="http://www.reald.com/">RealD 3D</a> and has by far the widest adoption in US theaters. Further, some theaters are equipped with <a href="http://en.wikipedia.org/wiki/LC_shutter_glasses">active glasses technology</a>, meaning that the glasses themselves &#8216;shutter&#8217; either mechanically or using an LCD shutter linked wirelessly to the projection system for timing. I have heard these glasses are bulkier and heavier but better for certain situations.</p>
<p>3D workflow is particularly interesting to Control Group as an opportunity to help our clients design lean, optimized pipelines. This will impact our data stores, but why double data if it can be avoided? I think this is an opportunity for integrators like us to help productions, as well as the post-house, in evaluating these technologies and coming up with an appropriate blend of supporting technologies and workflows. Our goal is to build workflows that suit the business model and subject matter, as well as figure out how data is managed, archived, and stored. This is not the time to spend unnecessarily, but it is time to consider when and how this will affect our clients, and help them begin readiness preparations. We want to help our clients avoid turning down work because they haven&#8217;t put thought into these issues.</p>
<p>In conclusion, there are a variety of methods that a broadcaster or strategic consultant can invoke – some new, some old – to solve the technical issues. I think a lot of real challenges lie in the production of 3D content, such as the creative process of capturing a scene and the framing of the shots to take advantage of the magic of 3D. These are new processes and they involve re-educating producers, directors, cinematographers, camera operators, actors, and production designers.</p>
<p>The technology? No problem. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<br />Filed under: <a href='http://blog.controlgroup.com/category/general/'>general</a>, <a href='http://blog.controlgroup.com/category/infrastructure/'>infrastructure</a>, <a href='http://blog.controlgroup.com/category/video-solutions/'>video solutions</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/controlgroupblog.wordpress.com/695/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/controlgroupblog.wordpress.com/695/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/controlgroupblog.wordpress.com/695/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/controlgroupblog.wordpress.com/695/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/controlgroupblog.wordpress.com/695/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/controlgroupblog.wordpress.com/695/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/controlgroupblog.wordpress.com/695/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/controlgroupblog.wordpress.com/695/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/controlgroupblog.wordpress.com/695/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/controlgroupblog.wordpress.com/695/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.controlgroup.com&blog=7073291&post=695&subd=controlgroupblog&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.controlgroup.com/2010/04/29/storage-for-3d-video-workflows/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dbe87bab0dc9e3edd94d8527c362c8f5?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">cgscottanderson</media:title>
		</media:content>

		<media:content url="http://controlgroupblog.files.wordpress.com/2010/04/168824-500-342.jpg" medium="image">
			<media:title type="html">168824-500-342</media:title>
		</media:content>
	</item>
		<item>
		<title>Back from NAB&#8230; in 3D!</title>
		<link>http://blog.controlgroup.com/2010/04/19/back-from-nab-in-3d/</link>
		<comments>http://blog.controlgroup.com/2010/04/19/back-from-nab-in-3d/#comments</comments>
		<pubDate>Mon, 19 Apr 2010 19:34:03 +0000</pubDate>
		<dc:creator>Scott Anderson</dc:creator>
				<category><![CDATA[video solutions]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[integration]]></category>
		<category><![CDATA[storage]]></category>
		<category><![CDATA[SANs]]></category>
		<category><![CDATA[engineering]]></category>
		<category><![CDATA[enterprise]]></category>

		<guid isPermaLink="false">http://blog.controlgroup.com/?p=679</guid>
		<description><![CDATA[Whew! As always, NAB was quick, productive, and overwhelming – only this time it was in 3D! Everyone, everywhere, was talking about 3D: cameras, displays, production software, trucks, expertise, etc. The race for preparedness is on, and people will spend as pushy studios and producers want to be the first to do this or that with [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.controlgroup.com&blog=7073291&post=679&subd=controlgroupblog&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://controlgroupblog.files.wordpress.com/2010/04/3d-glasses-life.jpeg"><img class="alignright size-medium wp-image-682" style="border:10px solid #fff;" title="3d-glasses-life" src="http://controlgroupblog.files.wordpress.com/2010/04/3d-glasses-life.jpeg?w=226&#038;h=300" alt="3D Audience" width="226" height="300" /></a>Whew! As always, <a href="http://www.nabshow.com/2010/default.asp">NAB</a> was quick, productive, and overwhelming – only this time it was in 3D!</p>
<p>Everyone, everywhere, was talking about 3D: cameras, displays, production software, trucks, expertise, etc. The race for preparedness is on, and people will spend as pushy studios and producers want to be the first to do this or that with 3D. First sitcom, first sporting event, first documentary, first newscast, etc.  The reality is that we are a ways off from wide-scale adoption, and showrooms and special screenings will be the place for 3D for the foreseeable future.  We are in a similar catch-22 phase as a few years ago during the early days of HD production – 3D TVs are just coming onto the market and will drop down to reasonable consumer level prices within the next 2-3 yrs. Consumers are asking &#8220;do I buy a 3D TV when there is little to no programming?&#8221; while content creators are wondering &#8220;do I produce in 3D when there is little to no audience?&#8221;</p>
<p>Being an industry event though, it&#8217;s about more than bragging rights or audience – it&#8217;s about technical feasibility, practice, and logistics – all things which will change when 3D comes to our living room. <a href="http://www.directv.com/DTVAPP/global/article.jsp?assetId=4630001">DirecTV has announced</a> that they will carry four 3D channels starting in June, including ESPN 3D and a dedicated 3D pay-per-view channel. And Cablevision dipped its toes into the 3D pool a few weeks ago with an <a href="http://www.crainsnewyork.com/article/20100318/FREE/100319878">MSG Network broadcast</a> of a Rangers and Islanders hockey game live from Madison Square Garden.</p>
<p>After talking to a few industry experts who participated in the recent <a href="http://www.masters.com/3D/">Masters in 3D</a>, the challenges with 3D production are less technical than logistical: camera placement for example. While HD favors wide top-down shots for seeing all the action, 3D is most effective with close, ground-level cameras – imagine Phil Mickelson&#8217;s birdie putt as viewed from grass-level, just across the green, the ball rolling right toward you as he sinks it&#8230;</p>
<p>There were also lots of other things of interest: <a href="http://www.falconstor.com/en/pages/?pn=HyperFS">Falconstor&#8217;s HyperFS</a>, <a href="http://www.squarebox.co.uk/">CatDV</a> asset management, Avid&#8217;s Java app for <a href="http://community.avid.com/blogs/events/archive/2010/04/13/web-based-editing.aspx">editing over the web</a>, <a href="http://www.3alitydigital.com/">3ality</a> cameras, <a href="http://www.adobe.com/products/creativesuite/production/">Adobe CS5</a>, among many more. We were particularly excited by the potential of <a href="http://www.getactivestorage.com/">Active Storage&#8217;s Innerpool</a> appliance for metadata. This PCI Express card contains on-board redundant solid-state drives, specifically engineered for storing metadata in an Xsan environment. This has the potential of being something of a game changer, allowing us to more efficiently configure the storage in our Xsan integrations, and giving our clients more bang for their buck when deploying new SAN solutions.</p>
<p>We had some great meetings with prospective clients, old and new friends, fellow consultants and vendors, and we&#8217;re excited about some emerging strategic opportunities.  Our work in online video technology and web delivery combined with our broadcast infrastructure and workflow experience means we are ideally positioned to help organizations streamline and bring these workstreams closer together.</p>
<br />Filed under: <a href='http://blog.controlgroup.com/category/video-solutions/'>video solutions</a> Tagged: <a href='http://blog.controlgroup.com/tag/engineering/'>engineering</a>, <a href='http://blog.controlgroup.com/tag/enterprise/'>enterprise</a>, <a href='http://blog.controlgroup.com/tag/integration/'>integration</a>, <a href='http://blog.controlgroup.com/tag/sans/'>SANs</a>, <a href='http://blog.controlgroup.com/tag/storage/'>storage</a>, <a href='http://blog.controlgroup.com/tag/video/'>video</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/controlgroupblog.wordpress.com/679/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/controlgroupblog.wordpress.com/679/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/controlgroupblog.wordpress.com/679/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/controlgroupblog.wordpress.com/679/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/controlgroupblog.wordpress.com/679/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/controlgroupblog.wordpress.com/679/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/controlgroupblog.wordpress.com/679/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/controlgroupblog.wordpress.com/679/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/controlgroupblog.wordpress.com/679/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/controlgroupblog.wordpress.com/679/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.controlgroup.com&blog=7073291&post=679&subd=controlgroupblog&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.controlgroup.com/2010/04/19/back-from-nab-in-3d/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<georss:point>40.712363 -74.008428</georss:point>
		<geo:lat>40.712363</geo:lat>
		<geo:long>-74.008428</geo:long>
		<media:content url="http://1.gravatar.com/avatar/dbe87bab0dc9e3edd94d8527c362c8f5?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">cgscottanderson</media:title>
		</media:content>

		<media:content url="http://controlgroupblog.files.wordpress.com/2010/04/3d-glasses-life.jpeg?w=226" medium="image">
			<media:title type="html">3d-glasses-life</media:title>
		</media:content>
	</item>
		<item>
		<title>Android gets turbo charged</title>
		<link>http://blog.controlgroup.com/2010/02/19/android-gets-turbo-charged/</link>
		<comments>http://blog.controlgroup.com/2010/02/19/android-gets-turbo-charged/#comments</comments>
		<pubDate>Fri, 19 Feb 2010 19:39:49 +0000</pubDate>
		<dc:creator>Michael West</dc:creator>
				<category><![CDATA[general]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[mobile]]></category>

		<guid isPermaLink="false">http://blog.controlgroup.com/?p=622</guid>
		<description><![CDATA[About a week and a half ago, Myriad Group announced an updated version of the Dalvik VM for Android, appropriately called the Dalvik Turbo VM.  Running the Dalvik Turbo VM, Android devices can experience a 2x &#8211; 3x performance boost in their applications. What does this mean for Android users? With any Android device, it&#8217;s [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.controlgroup.com&blog=7073291&post=622&subd=controlgroupblog&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:center;"><a href="http://controlgroupblog.files.wordpress.com/2010/02/android-logo.jpg"><img class="aligncenter size-medium wp-image-623" style="border:0 none;" title="android-logo" src="http://controlgroupblog.files.wordpress.com/2010/02/android-logo.jpg?w=300&#038;h=235" alt="" width="300" height="235" /></a></p>
<p>About a week and a half ago, <a title="Myriad Group" href="http://www.myriadgroup.com/" target="_blank">Myriad Group</a> announced an <a href="http://www.mobileburn.com/news.jsp?Id=8684">updated version of the Dalvik VM for Android</a>, appropriately called the Dalvik Turbo VM.  Running the Dalvik Turbo VM, Android devices can experience a 2x &#8211; 3x performance boost in their applications.</p>
<p><strong>What does this mean for Android users?</strong></p>
<p>With any Android device, it&#8217;s pretty apparent that they are performing below what one would expect from their hardware specs.  This is because Android was designed to run on a wide range of devices, including devices with limited resources and processing power.</p>
<p>If your phone were to be updated with the new Dalvik Turbo VM, you wouldn&#8217;t experience nearly as much lag, applications would open faster and perform better, and you would actually see improved battery life (all things that as an Android user I would LOVE to see.)</p>
<p><strong>How does it work?</strong></p>
<p>The Dalvik VM is a virtual machine that runs in the background on all Android devices.  It acts like a middleman between the applications and the OS itself.  One of the things that makes Android so attractive to developers is that it&#8217;s apps are written in Java, the Dalvik VM then takes the Java code and converts it on the fly into code that Android can use.  The Dalvik Turbo VM is an enhanced version of the original VM that makes the conversion process a whole lot speedier.  The new Turbo VM is said to be 100% compatible with Google&#8217;s stock VM so any existing apps would be able to see the benefits from this as well.</p>
<p style="text-align:center;"><span style="text-align:center; display: block;"><a href="http://blog.controlgroup.com/2010/02/19/android-gets-turbo-charged/"><img src="http://img.youtube.com/vi/blJpQQZdYPM/2.jpg" alt="" /></a></span></p>
<p style="text-align:center;">A demo of the Dalvik Turbo VM vs Dalvik VM on a pair of Android Dev Phone 2&#8242;s.</p>
<p><strong>How can I get it?!</strong></p>
<p>Sadly that&#8217;s not such an easy thing to answer.  While Myriad hasn&#8217;t given an official answer, it is believed that the devices that would most benefit from the new Dalvik Turbo VM (T-Mobile G1 and MyTouch 3G) won&#8217;t be seeing it and it will only be included on new retail devices (which we should see before the end of the year.)  That said, many of the Android faithful (myself included) are hoping to see the new VM show up in the popular <a title="Cyanogenmod" href="http://www.cyanogenmod.com" target="_blank">Cyanogenmod</a> Android ROM amongst others in the near future.</p>
<p>If you&#8217;d like to see some more info on the Dalvik Turbo VM, check these links for some impressions and other demo videos:</p>
<p><a title="Myriad Group Announcement" href="http://www.myriadgroup.com/Media-Centre/News/MYRIAD-BRINGS-3x-FASTER-APPLICATIONS-RICHER-GAME-GRAPHICS-AND-BETTER-BATTERY-LIFE-TO-ANDROID.aspx" target="_blank">Myriad Group Announcement</a></p>
<p><a title="Myriad Youtube Channel" href="http://www.youtube.com/user/myriadgroupmarketing#p/a/u/1/blJpQQZdYPM" target="_blank">Myriad Group Youtube Channel</a></p>
<p><a title="Engadget Hands-on" href="http://www.engadget.com/2010/02/17/myriad-dalvik-turbo-hands-on-android-apps-just-got-fast/" target="_blank">Engadget Hands-on at MWC</a></p>
<br />Filed under: <a href='http://blog.controlgroup.com/category/general/'>general</a> Tagged: <a href='http://blog.controlgroup.com/tag/android/'>Android</a>, <a href='http://blog.controlgroup.com/tag/mobile/'>mobile</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/controlgroupblog.wordpress.com/622/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/controlgroupblog.wordpress.com/622/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/controlgroupblog.wordpress.com/622/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/controlgroupblog.wordpress.com/622/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/controlgroupblog.wordpress.com/622/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/controlgroupblog.wordpress.com/622/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/controlgroupblog.wordpress.com/622/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/controlgroupblog.wordpress.com/622/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/controlgroupblog.wordpress.com/622/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/controlgroupblog.wordpress.com/622/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.controlgroup.com&blog=7073291&post=622&subd=controlgroupblog&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.controlgroup.com/2010/02/19/android-gets-turbo-charged/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point>0.000000 0.000000</georss:point>
		<geo:lat>0.000000</geo:lat>
		<geo:long>0.000000</geo:long>
		<media:content url="http://1.gravatar.com/avatar/30486d996abf819217ef3eadd6c196fd?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">Michael West</media:title>
		</media:content>

		<media:content url="http://controlgroupblog.files.wordpress.com/2010/02/android-logo.jpg?w=300" medium="image">
			<media:title type="html">android-logo</media:title>
		</media:content>

		<media:content url="http://img.youtube.com/vi/blJpQQZdYPM/2.jpg" medium="image" />
	</item>
		<item>
		<title>Is H.264 the right choice for online video?</title>
		<link>http://blog.controlgroup.com/2010/02/15/is-h-264-the-right-choice-for-online-video/</link>
		<comments>http://blog.controlgroup.com/2010/02/15/is-h-264-the-right-choice-for-online-video/#comments</comments>
		<pubDate>Mon, 15 Feb 2010 14:41:12 +0000</pubDate>
		<dc:creator>David Rocamora</dc:creator>
				<category><![CDATA[design solutions]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[video solutions]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[browsers]]></category>
		<category><![CDATA[flash]]></category>

		<guid isPermaLink="false">http://blog.controlgroup.com/?p=580</guid>
		<description><![CDATA[I wanted to add some thoughts to Chris&#8217;s post about Flash and HTML5. However I should preface this post by saying that HTML5 supporting video is really cool, both technically and because HTML5 is an open standard that anyone can implement for free. As we all know, for the last several years, Flash has been the de [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.controlgroup.com&blog=7073291&post=580&subd=controlgroupblog&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>I wanted to add some thoughts to Chris&#8217;s <a href="http://blog.controlgroup.com/2010/02/03/love-em-or-hate-em-plugins-are-here-to-stay/">post about Flash and HTML5</a>. However I should preface this post by saying that HTML5 <a href="http://www.w3schools.com/html5/tag_video.asp">supporting video</a> is really cool, both technically and because HTML5 is an open standard that anyone can implement for free. As we all know, for the last several years, Flash has been the de facto choice for <a href="http://www.adobe.com/devnet/video/">online video delivery</a>. Flash support on different platforms has been pretty good, but end users still don&#8217;t have total flexibility depending on their OS. Until recently, Flash on Linux has been about a version behind the release for Windows or OS X. Even now, Adobe only releases a <a href="http://www.adobe.com/products/flashplayer/systemreqs/#os">player for x86</a>, and the x86_64 version is unsupported <a href="http://labs.adobe.com/downloads/flashplayer10.html">beta software</a>.</p>
<p><img class="alignright" style="margin-left:20px;margin-right:20px;border:0;" title="H.264 logo" src="http://images.apple.com/quicktime/technologies/h264/images/header_icon.png" alt="" width="102" height="163" />Everyone seems to be touting HTML5 video as the &#8220;open&#8221; alternative to the proprietary Flash plugin required for .flv playback in the browser. But how open is H.264, the codec that powers HTML5 video, and the current pick for encoding video for online delivery? Using <a href="http://en.wikipedia.org/wiki/H.264/MPEG-4_AVC">H.264</a> as the codec behind HTML5 video sours things a bit for me. H.264 is encumbered by software patents; to develop or distribute a player or encoder for H.264 you might have to pay a <a href="http://www.mpegla.com/main/programs/AVC/Pages/AgreementExpress.aspx">licensing fee to MPEG-LA</a>. Even though MPEG LA <a href="http://www.mpegla.com/Lists/MPEG%20LA%20News%20List/Attachments/226/n-10-02-02.pdf" target="_blank">announced last week</a> (PDF) that H.264 will remain fee-less for free internet video through 2016, this is not the same as being free or open. MPEG-LA can still go after people that produce the software to encode or decode H.264. And MPEG-LA is not just one organization, it&#8217;s a collection of patent holders that have their own agendas.</p>
<p>All this is a bit of a slap in the face to the open standards that power the web. Imagine if you had to pay a half million dollars to create or display JPEGs, GIFs, or HTML&#8230; The only people that would be able to afford to make software for the web would be huge companies. But what are our alternatives? Beyond <a href="http://www.theora.org/">Ogg Theora</a> and <a href="http://www.matroska.org/">Matroska</a>, the pickings are slim. These codecs are open and free, but not necessarily better than H.264. Plus it would be next to impossible to compete with the <a href="http://www.apple.com/quicktime/technologies/h264/">marketing machine of Apple</a> behind H.264.</p>
<p>Open and free standards have been what has made the Internet successful since its inception. I think it&#8217;s important that users understand this so that the Internet of the future cannot be controlled by corporations with enough cash to cover licensing fees.</p>
<br />Filed under: <a href='http://blog.controlgroup.com/category/design-solutions/'>design solutions</a>, <a href='http://blog.controlgroup.com/category/development/'>development</a>, <a href='http://blog.controlgroup.com/category/video-solutions/'>video solutions</a> Tagged: <a href='http://blog.controlgroup.com/tag/adobe/'>adobe</a>, <a href='http://blog.controlgroup.com/tag/apple/'>apple</a>, <a href='http://blog.controlgroup.com/tag/browsers/'>browsers</a>, <a href='http://blog.controlgroup.com/tag/development/'>development</a>, <a href='http://blog.controlgroup.com/tag/flash/'>flash</a>, <a href='http://blog.controlgroup.com/tag/flex/'>flex</a>, <a href='http://blog.controlgroup.com/tag/video/'>video</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/controlgroupblog.wordpress.com/580/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/controlgroupblog.wordpress.com/580/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/controlgroupblog.wordpress.com/580/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/controlgroupblog.wordpress.com/580/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/controlgroupblog.wordpress.com/580/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/controlgroupblog.wordpress.com/580/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/controlgroupblog.wordpress.com/580/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/controlgroupblog.wordpress.com/580/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/controlgroupblog.wordpress.com/580/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/controlgroupblog.wordpress.com/580/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.controlgroup.com&blog=7073291&post=580&subd=controlgroupblog&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.controlgroup.com/2010/02/15/is-h-264-the-right-choice-for-online-video/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<georss:point>40.712363 -74.008428</georss:point>
		<geo:lat>40.712363</geo:lat>
		<geo:long>-74.008428</geo:long>
		<media:content url="http://1.gravatar.com/avatar/99e758aabf068a2ff5103e3cc76eddfb?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">drocamor</media:title>
		</media:content>

		<media:content url="http://images.apple.com/quicktime/technologies/h264/images/header_icon.png" medium="image">
			<media:title type="html">H.264 logo</media:title>
		</media:content>
	</item>
	</channel>
</rss>