<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr">
<head profile="http://gmpg.org/xfn/11">
<!--Rollover Script Start-->
<script language="javascript" type="text/javascript">
<!--
function movepic(img_name,img_src){
document[img_name].src=img_src;
}
//-->
</script>
<!--Rollover Script End-->
<script type="text/javascript" src="../blog/wp-content/plugins/quoter/quoter_php-js-1_php.js"></script>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<title>Miglia Blog</title>
	<link rel="canonical" href="https://www.miglia.com/blog/" />
<meta name="generator" content="WordPress 2.3.3"/> <!-- leave this for stats -->
<link rel="stylesheet" href="https://miglia.com/blog/wp-content/themes/default/style.css" type="text/css" media="screen" />
<link rel="pingback" href="https://miglia.com/blog/xmlrpc.php" />
<style type="text/css" media="screen">
	#page { background: url("http://miglia.com/blog/wp-content/themes/default/images/kubrickbg-ltr.jpg") repeat-y top; border: none; }
</style>
<script>
	function href(url) {
		//Go to specified page
	}
</script>
	<link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://miglia.com/blog/xmlrpc.php?rsd" />
 <link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://miglia.com/blog/wp-includes/wlwmanifest.xml" /> <script type="text/javascript" src="https://miglia.com/blog/wp-includes/js/prototype.js?ver=1.5.1.1"></script>
<!-- all in one seo pack 1.4.6.3 [-1,-1] -->
<meta name="description" content="A blog about Miglia prodcts, people, customers, market etc"/>
<meta name="keywords" content="Reviews, Migia, Apple Products, Press Releases, Endorsements"/>
<!-- /all in one seo pack -->
<script language="javascript" type="text/javascript">
<!--
		function collapseThread( theId ) {
			var comment = document.getElementById(theId);
			if(!comment)
			{
				alert("ERROR:\nThe document structure is different\nfrom what Threaded Comments expects.\nYou are missing the element '"+theId+"'");
				return;
			}
			var theBody = findBody(comment);
			if(comment.className.indexOf("collapsed") > -1) {
				comment.className = comment.className.replace(" collapsed", "");;
			} else {
				comment.className += " collapsed";
			}
		}
		function expandThread( theId ) {
			var comment = document.getElementById(theId);
			if(!comment)
			{
				alert("ERROR:\nThe document structure is different\nfrom what Threaded Comments expects.\nYou are missing the element '"+theId+"'");
				return;
			}
			var theBody = findBody(comment);
			if(comment.className.indexOf("collapsed") > -1) {
				comment.className = comment.className.replace(" collapsed", "");;
			} 
		}
		function findBody(el)
		{
			var divs = el.getElementsByTagName("div");
			var ret;
			for(var i = 0; i < divs.length; ++i) {
				if(divs.item(i).className.indexOf("body") > -1)
					return divs.item(i);
			}
			return false;
		}
		function onAddComment() {
			//checkDocumentIntegrity();
			var el = document.getElementById("commentform");
			// Future release: Check if form is filled correctly and mark the form fields.
			el.submit();
		}
		function moveAddCommentBelow(theId, threadId, collapse)
		{
			expandThread( theId );
			var addComment = document.getElementById("addcomment");
			if(!addComment)
			{
			  	alert("ERROR:\nThreaded Comments can't find the 'addcomment' div.\nThis is probably because you have changed\nthe comments.php file.\nMake sure there is a tag around the form\nthat has the id 'addcomment'"); 
				return
			}
			var comment = document.getElementById(theId);
			if(collapse)
			{
				for(var i = 0; i < comment.childNodes.length; ++i) {
					var c = comment.childNodes.item(i);
					if(typeof(c.className) == "string" && c.className.indexOf("collapsed")<0) {
						c.className += " collapsed";
					}
				}
			}
			addComment.parentNode.removeChild(addComment);
			comment.appendChild(addComment);
			if(comment.className.indexOf("alt")>-1) {
				addComment.className = addComment.className.replace(" alt", "");					
			} else {
				addComment.className += " alt";
			}
		        var replyId = document.getElementById("comment_reply_ID");
			if(replyId == null)
			{
				alert("Brians Threaded Comments Error:\nThere is no hidden form field called\n'comment_reply_ID'. This is probably because you\nchanged the comments.php file and forgot\nto include the field. Please take a look\nat the original comments.php and copy the\nform field over.");
			}
			replyId.value = threadId;
			var reRootElement = document.getElementById("reroot");
			if(reRootElement == null)
			{
				alert("Brians Threaded Comments Error:\nThere is no anchor tag called 'reroot' where\nthe comment form starts.\nPlease compare your comments.php to the original\ncomments.php and copy the reroot anchor tag over.");
			}
			reRootElement.style.display = "block";
			var aTags = comment.getElementsByTagName("A");
			var anc = aTags.item(0).id;
			//document.location.href = "#"+anc;
			document.getElementById("comment").focus();
		}
		function checkDocumentIntegrity()
		{
			str = "";
			str += checkElement("reroot","div tag");
			str += checkElement("addcomment", "div tag");
			str += checkElement("comment_reply_ID", "hidden form field");
			str += checkElement("content", "div tag");
			str += checkElement("comment", "textfield");
			str += checkElement("addcommentanchor", "anchor tag");
			if(str != "")
			{
				str = "Brian's Threaded Comments are missing some of the elements that are required for it to function correctly.\nThis is probably the because you have changed the original comments.php that was included with the plugin.\n\nThese are the errors:\n" + str;
				str += "\nYou should compare your comments.php with the original comments.php and make sure the required elements have not been removed.";
				alert(str);
			}
		}
		function checkElement(theId, elDesc)
		{
			var el = document.getElementById(theId);
			if(!el)
			{
				if(elDesc == null)
					elDesc = "element";
				return "- The "+elDesc+" with the ID '" +theId + "' is missing\n"; 
			}
			else 
				return "";
		}
		function reRoot()
		{
			var addComment = document.getElementById("addcomment");			
			var reRootElement = document.getElementById("reroot");
			reRootElement.style.display = "none";
			var content = document.getElementById("content");
			addComment.parentNode.removeChild(addComment);
			content.appendChild(addComment);
			addComment.className = addComment.className.replace(" alt", "");
			document.getElementById("comment").focus();				
			document.getElementById("comment_reply_ID").value = "0";
		}			
		function changeCommentSize(d)
		{
			var el = document.getElementById("comment");
			var height = parseInt(el.style.height);
			if(!height && el.offsetHeight)
				height = el.offsetHeight;
			height += d;
			if(height < 20) 
				height = 20;
			el.style.height = height+"px";
		}		
-->
</script>
<style type="text/css">
.comment 
{
	position: 				relative;
	margin:					3px;
	margin-top:				6px;
/*	border: 				1px solid #666; */
	padding:				4px 4px 4px 8px;
	background-color:		#fff;
}
.odd
{
	background-color: #f8f8f8;
}
.comment div {
	position: 				relative;
}
.comment .comment img
{
	margin: 				0px;
}
.comment .collapseicon 
{
	width: 					13px;
	height: 				13px;
	overflow:				hidden;
	background-image: 		url(http://miglia.com/blog/wp-content/plugins/briansthreadedcomments.php?image=subthread-open.png);
}
.collapsed .collapseicon 
{
	background-image: 		url(http://miglia.com/blog/wp-content/plugins/briansthreadedcomments.php?image=subthread.png);
}
.comment .reply {
	text-align: 			right;
	font-size: 				80%;
	padding: 				0px 6px 6px 0px;
}
.comment
{
	border: 	1px solid #ddd;
	margin-top: 			10px;
}
input#subscribe
{
	width: auto;
}
.comment .body .content
{
	padding:				0px 3px 0px 3px;
	width: 					100%;	
	overflow: 				auto; 
}
.comment .title abbr
{
	border: none;
}
.collapsed .body, .collapsed .comment
{
	display:				none;
}
/*
#addcomment small, #addcomment div
{
	padding:				3px;
}
*/
#commentform textarea {
	width: 97%;
}
</style>
	<meta name="keywords" content=""/>
<!-- Added by Quoter plugin v1.1 -->
<script type="text/javascript" src="../blog/wp-content/plugins/quoter/quoter_php-js-1_php.js"></script>
<style type="text/css" media="screen">
.commentlist blockquote cite { /* Fix for Kubrik theme */
	display: inline;
}
</style>
<!-- You need to configure Google analytics for it to work --><script type="text/javascript" src="https://miglia.com/blog/wp-content/plugins/fancy-archives/fancy-archives.js"></script>
<script type="text/javascript">
// <![CDATA[
// These variables are part of the Fancy Archives Plugin
// Copyright 2006 Andrew Rader (nymb.us)
fancyarch_exp_curr_year = false;
fancyarch_exp_curr_month = false;
// ]]>
</script>
			<link rel="stylesheet" type="text/css" href="https://miglia.com/blog/index.php?ak_action=aktt_css" />
			<script type="text/javascript" src="../blog/index_php-ak_action-aktt_js_php.js"></script>
		<style type="text/css">.recentcomments a{display:inline !important;padding: 0 !important;margin: 0 !important;}</style>
<script src="https://miglia.com/blog/wp-content/themes/default/vaults/ajax.js" type="text/javascript"></script>
</head>
<body>
<br>
<center>
<div id="header" align="left"><!-- Header Begins -->
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td><a href="/">
</a></td>
<td></td>
<td><a href="../products/">
</a></td>
<td></td>
<td><a href="../buy/">
</a></td>
<td></td>
<td><a href="../Support/">
</a></td>
<td></td>
<td><a href="../media/">
</a></td>
<td>
</td>
<td><a href="../blog/">
</a></td>
<td style="background-image: url(http://store.miglia.com/images/header/mig_header_r1_c12.jpg);" width="505"></td>
<td><a href="/">
</a></td>
</tr>
</table>
<p>
<!-- Header Ends -->
<table border="0" cellpadding="0" cellspacing="0" width="880">
<tr><td colspan="8" cellpadding="0" cellspacing="0" style="background-image: url(http://www.miglia.com/blog/wp-content/themes/default/images/kubrickheader_r1_c1.jpg);" height="94" align="right">
<table width="100" height="70"><tr><td valign="top">
<form method="get" id="searchform" action="../blog/">
<div>
<table cellpadding="0" cellspacing="5"><tr><td>
<input type="text" value="" name="s" id="s"/></td><td>
<input type="submit" id="searchsubmit" value="Search"/></td></tr></table>
</div>
</form>
</td></tr>
</table>
</td></tr>
<tr><td colspan="8" style="background-image: url(http://www.miglia.com/blog/wp-content/themes/default/images/kubrickheader_r2_c1.jpg);" height="29" style="td{background:#DEE url(http://www.miglia.com/blog/wp-content/themes/default/images/kubrickheader_r2_c1.jpg);}" onmouseover="this.style.background=' url(http://www.miglia.com/blog/wp-content/themes/default/images/kubrickheader_a_r2_c1.jpg)';" onmouseout="this.style.background=' url(http://www.miglia.com/blog/wp-content/themes/default/images/kubrickheader_r2_c1.jpg)';" onclick="window.location='http://www.twitter.com/miglia'">
&nbsp;&nbsp;&nbsp;&nbsp;<font color="#111111"><i>Twitter: </i></font><font color="#ffffff">New blog post: TVMini HD Express http://miglia.com/blog/?p=91</font>
</td></tr>
<tr><td colspan="8" style="background-image: url(http://www.miglia.com/blog/wp-content/themes/default/images/kubrickheader_r3_c1.jpg);" height="27">
</td>
<tr>
<td cellpadding="0" cellspacing="0"><a href="/"></a></td>
<td cellpadding="0" cellspacing="0"><a href="../blog/"></a></td>
<td cellpadding="0" cellspacing="0"><a href="../blog/page_id-8/"></a></td>
<td cellpadding="0" cellspacing="0"><a href="/"></a></td>
<td cellpadding="0" cellspacing="0"><a href="/"></a></td>
	<td cellpadding="0" cellspacing="0"><a href="../blog/page_id-9/"></a></td>
<td cellpadding="0" cellspacing="0"><a href="/"></a></td>
</tr>
<tr><td colspan="7" cellpadding="0" cellspacing="0" style="background-image: url(http://www.miglia.com/blog/wp-content/themes/default/images/kubrickheader_r5_c1.jpg);" height="28"><br></td>
</tr>
</table>
</div>
<hr/>
</center><center><table width="880" style="background-image: url(http://store.miglia.com/images/content_bg.jpg);" cellpadding="0" cellpsacing="0"><tr><td>
<center>
<table cellpadding="0" cellspacing="0" width="840"><tr><td align="left" valign="top">
<div id="sidebar">
<ul>
<li><br><table bgcolor="#e8e8e8" cellpadding="0" cellspacing="0" width="180"><tr><td height="8" width="8"></td><td width="164"></td><td height="8" width="8"></td></tr><tr><td colspan="3"><center><table width="160" cellpadding="0" cellspacing="0"><tr><td><li id="links" class="widget widget_links"><h2 class="widgettitle">Mac Sites</h2>
	<ul>
<li><a href="http://apple.com/">Apple</a></li>
<li><a href="http://www.applematters.com/">Apple Matters</a></li>
<li><a href="http://www.appleinsider.com/">AppleInsider</a></li>
<li><a href="http://chrismarshall.ws/">Chris Marshall</a></li>
<li>Glenn Wolsey</li>
<li>Mac Creative</li>
<li><a href="http://www.macnn.com/">Mac NN</a></li>
<li><a href="http://www.maccast.com/">MacCast</a></li>
<li><a href="http://macreviewcast.com/">MacReviewcast</a></li>
<li><a href="http://www.macrumors.com/">MacRumors</a></li>
<li><a href="http://www.macworld.com/">Macworld</a></li>
<li><a href="http://www.macworld.co.uk/">Macworld UK</a></li>
<li>Paul Stamatiou</li>
<li><a href="http://www.tuaw.com/">The Unofficial Apple Weblog</a></li>
	</ul>
</li></td></tr></table></center></td></tr><tr><td width="8" height="8"></td><td width="164"></td><td width="8" height="8"></td></tr></table><br>
<br><table bgcolor="#e8e8e8" cellpadding="0" cellspacing="0" width="180"><tr><td height="8" width="8"></td><td width="164"></td><td height="8" width="8"></td></tr><tr><td colspan="3"><center><table width="160" cellpadding="0" cellspacing="0"><tr><td><li id="links" class="widget widget_links"><h2 class="widgettitle">Staff Sites</h2>
	<ul>
<li><a href="http://www.littleterrorscomic.com/" title="Jon Scrivens on line comic">Little Terrors Comic</a></li>
	</ul>
</li></td></tr></table></center></td></tr><tr><td width="8" height="8"></td><td width="164"></td><td width="8" height="8"></td></tr></table><br>
                <br><table bgcolor="#e8e8e8" cellpadding="0" cellspacing="0" width="180"><tr><td height="8" width="8"></td><td width="164"></td><td height="8" width="8"></td></tr><tr><td colspan="3"><center><table width="160" cellpadding="0" cellspacing="0"><tr><td><li id="miniposts" class="widget widget_miniposts2_display">                <h2 class="widgettitle">Latest Press Release</h2><div class="miniposts">	<p class="minipost"><a href="/" class="title">TVMini HD Express</a><br/> London, UK, 13 March 2008 – Miglia, a leading brand in digital media products, today announced the release of the Mac only TV Mini HD Express for US over-the-air digital television broadcasts.
Shipping with The Tube software the TVMini HD Express puts you in control of where, when and how you &#8230; [ <a href="/">more</a> ]  (<a class="minipost_commentlink" href="/#comments" title="Comments for 'TVMini HD Express'">0</a>)</p>
</div><b>[ <a href="../blog_page_id-1174-v-mini/">Previous Press Releases</a> ]</b></li></td></tr></table></center></td></tr><tr><td width="8" height="8"></td><td width="164"></td><td width="8" height="8"></td></tr></table><br>                		<br><table bgcolor="#e8e8e8" cellpadding="0" cellspacing="0" width="180"><tr><td height="8" width="8"></td><td width="164"></td><td height="8" width="8"></td></tr><tr><td colspan="3"><center><table width="160" cellpadding="0" cellspacing="0"><tr><td><li id="text-1" class="widget widget_text">			<h2 class="widgettitle">Miglia Shows</h2>			<div class="textwidget"><p>Apple Expo Paris - 16 - 20 Sept 2008</p>
<p>MacLive Expo Uk - October 2008</p>
<p>Macworld 2009</p></div>
		</li></td></tr></table></center></td></tr><tr><td width="8" height="8"></td><td width="164"></td><td width="8" height="8"></td></tr></table><br></li>
</ul></div>
</td>
<td align="center">
<table width="480" cellpadding="0" cellspacing="0"><tr><td>
	<div id="content" class="narrowcolumn">
<br><br>
<center>
</center>
<br><br>
		<table cellpadding="0" cellspacing="0" width="480">
<tr><td width="30">
</td>
<td>
</td>
<td width="30">
</td>
</tr>
<tr><td colspan="3">
<center>
<table width="420" cellspacing="0" cellpadding="0"><tr><td>
<div class="post" id="post-92">
				<h2><a href="/" rel="bookmark" title="Permanent Link to Diva - A Sneaky Peak">Diva - A Sneaky Peak</a></h2>
				<small>April 8th, 2008 <!-- by Chris --></small>
				<div class="entry">						<p>You will remember that when I wrote about my <a href="/">recent meeting</a> with Miglia I mentioned that they had shown me some stuff that was pretty exciting but not yet available? </p>
	<p>Well let me give you a exclusive &#8216;heads up’ of the Diva 225 &#8230;&#8230;&#8230;..</p>
	<p><center> <a href="#"></a></center> </p>
<div class="post-teaser">This is a preview of <q>Diva - A Sneaky Peak</q>. <a href="/" title="Permanent Link: Diva - A Sneaky Peak" rel="bookmark">Read the full post (452 words, 6 images, estimated 1:48  mins reading time)</a></div>				</div>
				<p class="postmetadata">Posted in <a href="/" title="View all posts in Miglia Products" rel="category">Miglia Products</a> |   <a href="/#respond" title="Comment on Diva - A Sneaky Peak">No Comments &#187;</a></p>
			</div>
</td></tr></table></center>
</td></tr>
<tr><td width="30"></td>
<td height="3" style="background-image: url(http://www.miglia.com/blog/wp-content/themes/default/images/breaker.jpg); background-repeat: repeat-x;">
&nbsp;
</td>
<td bgcolor="#ffffff" width="30"></td></tr>
</table><br><br>
		<table cellpadding="0" cellspacing="0" width="480">
<tr><td width="30">
</td>
<td>
</td>
<td width="30">
</td>
</tr>
<tr><td colspan="3">
<center>
<table width="420" cellspacing="0" cellpadding="0"><tr><td>
<div class="post" id="post-99">
				<h2><a href="/" rel="bookmark" title="Permanent Link to Alchemy Update - 25th March 2008">Alchemy Update - 25th March 2008</a></h2>
				<small>March 25th, 2008 <!-- by Chris --></small>
				<div class="entry">						<p>I have spoken with Miglia this morning and there isn’t much to report at this stage. Apple have just requested more cards be sent for testing etc and four have been shipped.</p>
	<p>As soon as I know more I will provide an update.</p>
	<p><u><br/>
<h3>About the Blog</h3>
</u> </p>
<div class="post-teaser">This is a preview of <q>Alchemy Update - 25th March 2008</q>. <a href="/" title="Permanent Link: Alchemy Update - 25th March 2008" rel="bookmark">Read the full post (115 words, estimated 28  secs reading time)</a></div>				</div>
				<p class="postmetadata">Posted in <a href="/" title="View all posts in Miglia Products" rel="category">Miglia Products</a> |   <a href="/#comments" title="Comment on Alchemy Update - 25th March 2008">2 Comments &#187;</a></p>
			</div>
</td></tr></table></center>
</td></tr>
<tr><td width="30"></td>
<td height="3" style="background-image: url(http://www.miglia.com/blog/wp-content/themes/default/images/breaker.jpg); background-repeat: repeat-x;">
&nbsp;
</td>
<td bgcolor="#ffffff" width="30"></td></tr>
</table><br><br>
		<table cellpadding="0" cellspacing="0" width="480">
<tr><td width="30">
</td>
<td>
</td>
<td width="30">
</td>
</tr>
<tr><td colspan="3">
<center>
<table width="420" cellspacing="0" cellpadding="0"><tr><td>
<div class="post" id="post-90">
				<h2><a href="/" rel="bookmark" title="Permanent Link to Views on iPhone SDK">Views on iPhone SDK</a></h2>
				<small>March 7th, 2008 <!-- by Chris --></small>
				<div class="entry">						<p>So yesterday saw the iPhone SDK keynote from Apple. With the minor, but understandable and expected delay until June, initial views have all been <a href="http://www.macworld.com/article/132420/2008/03/mobile_infoworld.html">positive</a>,  with <a href="http://www.macworld.com/article/132414/2008/03/iphone_devs.html">developers</a> giving it a pretty solid thumbs up, so the real question seems to be</p>
	<blockquote><p> <strong>What applications do you want to see for the iPhone? </strong></p></blockquote>
<div class="post-teaser">This is a preview of <q>Views on iPhone SDK</q>. <a href="/" title="Permanent Link: Views on iPhone SDK" rel="bookmark">Read the full post (170 words, estimated 41  secs reading time)</a></div>				</div>
				<p class="postmetadata">Posted in <a href="/" title="View all posts in Apple Products" rel="category">Apple Products</a> |   <a href="/#comments" title="Comment on Views on iPhone SDK">1 Comment &#187;</a></p>
			</div>
</td></tr></table></center>
</td></tr>
<tr><td width="30"></td>
<td height="3" style="background-image: url(http://www.miglia.com/blog/wp-content/themes/default/images/breaker.jpg); background-repeat: repeat-x;">
&nbsp;
</td>
<td bgcolor="#ffffff" width="30"></td></tr>
</table><br><br>
		<table cellpadding="0" cellspacing="0" width="480">
<tr><td width="30">
</td>
<td>
</td>
<td width="30">
</td>
</tr>
<tr><td colspan="3">
<center>
<table width="420" cellspacing="0" cellpadding="0"><tr><td>
<div class="post" id="post-88">
				<h2><a href="/" rel="bookmark" title="Permanent Link to AlchemyTV DVR &amp; Recent Meeting With Miglia">AlchemyTV DVR &#038; Recent Meeting With Miglia</a></h2>
				<small>March 4th, 2008 <!-- by Chris --></small>
				<div class="entry">						<p>I have just spent a couple of days with Miglia discussing a number of things not least the current frustration with the AlchemyDVR. They also explained some background issues and plans for the future, much of which has to remain within the terms of the Non Disclosure Agreement, but all of which sounded great.</p>
<div class="post-teaser">This is a preview of <q>AlchemyTV DVR &#038; Recent Meeting With Miglia</q>. <a href="/" title="Permanent Link: AlchemyTV DVR &amp; Recent Meeting With Miglia" rel="bookmark">Read the full post (838 words, estimated 3:21  mins reading time)</a></div>				</div>
				<p class="postmetadata">Posted in <a href="/" title="View all posts in Blog" rel="category">Blog</a> |   <a href="/#comments" title="Comment on AlchemyTV DVR &amp; Recent Meeting With Miglia">18 Comments &#187;</a></p>
			</div>
</td></tr></table></center>
</td></tr>
<tr><td width="30"></td>
<td height="3" style="background-image: url(http://www.miglia.com/blog/wp-content/themes/default/images/breaker.jpg); background-repeat: repeat-x;">
&nbsp;
</td>
<td bgcolor="#ffffff" width="30"></td></tr>
</table><br><br>
		<table cellpadding="0" cellspacing="0" width="480">
<tr><td width="30">
</td>
<td>
</td>
<td width="30">
</td>
</tr>
<tr><td colspan="3">
<center>
<table width="420" cellspacing="0" cellpadding="0"><tr><td>
<div class="post" id="post-87">
				<h2><a href="/" rel="bookmark" title="Permanent Link to The Downward Spiral of Music">The Downward Spiral of Music</a></h2>
				<small>March 4th, 2008 <!-- by Jon --></small>
				<div class="entry">						<p>I like to keep up with all things musical, whether the latest releases on the iTunes store or independent releases. Yesterday there was an announcement from Trent Reznor, the frontman of Industrial band <a href="http://www.nin.com/" title="The Official NIN Website">Nine Inch Nails</a> (the musician who wrote &#8216;Hurt’ famously covered by Johnny Cash).</p>
	<p>Reznor announced a full 4 part concept record to be released on his website for download for $5, alternatively there is a free 9 track version and many physical versions (all of which sounds like rather nice deal for a fan). I feel this is a more important step towards a sensible distribution system, direct sales from an artist, which wouldn’t be possible if Reznor was attached for a record label contract.</p>
<div class="post-teaser">This is a preview of <q>The Downward Spiral of Music</q>. <a href="/" title="Permanent Link: The Downward Spiral of Music" rel="bookmark">Read the full post (282 words, estimated 1:08  mins reading time)</a></div>				</div>
				<p class="postmetadata">Posted in <a href="../blog/cat-14/" title="View all posts in General" rel="category">General</a> |   <a href="/#respond" title="Comment on The Downward Spiral of Music">No Comments &#187;</a></p>
			</div>
</td></tr></table></center>
</td></tr>
<tr><td width="30"></td>
<td height="3" style="background-image: url(http://www.miglia.com/blog/wp-content/themes/default/images/breaker.jpg); background-repeat: repeat-x;">
&nbsp;
</td>
<td bgcolor="#ffffff" width="30"></td></tr>
</table><br><br>
		<div class="navigation">
			<div class="alignleft"><a href="/">&laquo; Previous Entries</a></div>
			<div class="alignright"></div>
		</div>
	</div>
</td></tr></table>
</td><td valign="top" align="right">
<div id="sidebar">
<ul><li>
<br><table bgcolor="#e8e8e8" cellpadding="0" cellspacing="0" width="180"><tr><td height="8" width="8"></td><td width="164"></td><td height="8" width="8"></td></tr><tr><td colspan="3"><center><table width="160" cellpadding="0" cellspacing="0"><tr><td><li id="freepress-top-commenters" class="widget widget_fp_topcommenters"><h2 class="widgettitle">Frequent Commenters</h2><div class="recent-comments">(last 30 days)<ul><li class="topCommentersListItem">Clare (4)</li>
<li class="topCommentersListItem">Jean-Luc Evrard (2)</li>
<li class="topCommentersListItem">Kevin Ford (1)</li>
<li class="topCommentersListItem">MarkV (1)</li>
<li class="topCommentersListItem">John C. (1)</li>
</ul></div></li></td></tr></table></center></td></tr><tr><td width="8" height="8"></td><td width="164"></td><td width="8" height="8"></td></tr></table><br>			<br><table bgcolor="#e8e8e8" cellpadding="0" cellspacing="0" width="180"><tr><td height="8" width="8"></td><td width="164"></td><td height="8" width="8"></td></tr><tr><td colspan="3"><center><table width="160" cellpadding="0" cellspacing="0"><tr><td><li id="php-code-1" class="widget widget_execphp">				<h2 class="widgettitle">Currently Popular</h2>				<div class="execphpwidget">(last 30 days)
<div class="tile_body"><ul>
<li><a href="/" title="Alchemy Update - 25th March 2008">Alchemy Update - 25th March 2008</a></li></ul></div></div>
			</li></td></tr></table></center></td></tr><tr><td width="8" height="8"></td><td width="164"></td><td width="8" height="8"></td></tr></table><br>	
		<br><table bgcolor="#e8e8e8" cellpadding="0" cellspacing="0" width="180"><tr><td height="8" width="8"></td><td width="164"></td><td height="8" width="8"></td></tr><tr><td colspan="3"><center><table width="160" cellpadding="0" cellspacing="0"><tr><td><li id="recent-comments" class="widget widget_recent_comments">			<h2 class="widgettitle">Latest Comments</h2>			<ul id="recentcomments"><li class="recentcomments">Tom on <a href="/#comment-444">AlchemyTV DVR &#038; Leopard Update</a></li><li class="recentcomments">Cotton on <a href="/#comment-442">PC Components recommend Harmony Audio</a></li><li class="recentcomments">jb on <a href="/#comment-439">AlchemyTV DVR &#038; Recent Meeting With Miglia</a></li><li class="recentcomments"><a href="http://www.chrismarshall.ws/" rel="external nofollow">Chris</a> on <a href="/#comment-435">Your Say</a></li><li class="recentcomments">Logan Cooke on <a href="/#comment-433">Your Say</a></li></ul>
		</li></td></tr></table></center></td></tr><tr><td width="8" height="8"></td><td width="164"></td><td width="8" height="8"></td></tr></table><br><br><table bgcolor="#e8e8e8" cellpadding="0" cellspacing="0" width="180"><tr><td height="8" width="8"></td><td width="164"></td><td height="8" width="8"></td></tr><tr><td colspan="3"><center><table width="160" cellpadding="0" cellspacing="0"><tr><td><li id="tag_cloud" class="widget widget_tag_cloud"><h2 class="widgettitle">Tag Cloud</h2><a href="/" class="tag-link-58" title="2 topics" style="font-size: 8.7368421052632pt;">Alchemy</a>
<a href="/" class="tag-link-29" title="4 topics" style="font-size: 10.210526315789pt;">Apple</a>
<a href="/" class="tag-link-48" title="1 topics" style="font-size: 8pt;">Background</a>
<a href="/" class="tag-link-49" title="1 topics" style="font-size: 8pt;">Beta&nbsp;Testers</a>
<a href="/" class="tag-link-34" title="3 topics" style="font-size: 9.4736842105263pt;">Blog</a>
<a href="/" class="tag-link-47" title="1 topics" style="font-size: 8pt;">Customers</a>
<a href="/" class="tag-link-12" title="1 topics" style="font-size: 8pt;">Dialog+</a>
<a href="/" class="tag-link-13" title="1 topics" style="font-size: 8pt;">DialogPhone</a>
<a href="/" class="tag-link-46" title="2 topics" style="font-size: 8.7368421052632pt;">Diva&nbsp;2.1</a>
<a href="/" class="tag-link-62" title="1 topics" style="font-size: 8pt;">DivaMax</a>
<a href="/" class="tag-link-16" title="3 topics" style="font-size: 9.4736842105263pt;">Harmony&nbsp;Audio</a>
<a href="/" class="tag-link-36" title="1 topics" style="font-size: 8pt;">iChat</a>
<a href="/" class="tag-link-33" title="1 topics" style="font-size: 8pt;">iMac</a>
<a href="/" class="tag-link-42" title="6 topics" style="font-size: 11.684210526316pt;">In&nbsp;Use</a>
<a href="/" class="tag-link-18" title="4 topics" style="font-size: 10.210526315789pt;">iPhone</a>
<a href="/" class="tag-link-19" title="3 topics" style="font-size: 9.4736842105263pt;">iPod</a>
<a href="/" class="tag-link-55" title="1 topics" style="font-size: 8pt;">Jon</a>
<a href="/" class="tag-link-31" title="1 topics" style="font-size: 8pt;">Leopard</a>
<a href="/" class="tag-link-44" title="1 topics" style="font-size: 8pt;">MacBook&nbsp;Air</a>
<a href="/" class="tag-link-57" title="1 topics" style="font-size: 8pt;">Melia</a>
<a href="/" class="tag-link-4" title="20 topics" style="font-size: 22pt;">Miglia</a>
<a href="/" class="tag-link-5" title="2 topics" style="font-size: 8.7368421052632pt;">Miglia&nbsp;Products</a>
<a href="/" class="tag-link-54" title="1 topics" style="font-size: 8pt;">Music</a>
<a href="/" class="tag-link-53" title="2 topics" style="font-size: 8.7368421052632pt;">News</a>
<a href="/" class="tag-link-56" title="1 topics" style="font-size: 8pt;">Opinion</a>
<a href="/" class="tag-link-30" title="1 topics" style="font-size: 8pt;">Press&nbsp;Release</a>
<a href="/" class="tag-link-52" title="1 topics" style="font-size: 8pt;">Promotions</a>
<a href="/" class="tag-link-51" title="1 topics" style="font-size: 8pt;">Resellers</a>
<a href="/" class="tag-link-59" title="1 topics" style="font-size: 8pt;">SDK</a>
<a href="/" class="tag-link-35" title="1 topics" style="font-size: 8pt;">Shows</a>
<a href="/" class="tag-link-37" title="1 topics" style="font-size: 8pt;">Skype</a>
<a href="/" class="tag-link-3" title="12 topics" style="font-size: 16.105263157895pt;">Staff</a>
<a href="/" class="tag-link-60" title="1 topics" style="font-size: 8pt;">Thoughts</a>
<a href="/" class="tag-link-10" title="8 topics" style="font-size: 13.157894736842pt;">TVMax+</a>
<a href="/" class="tag-link-22" title="1 topics" style="font-size: 8pt;">TVMicro&nbsp;Express</a>
<a href="/" class="tag-link-7" title="2 topics" style="font-size: 8.7368421052632pt;">TVMini+</a>
<a href="/" class="tag-link-45" title="5 topics" style="font-size: 10.947368421053pt;">TVMini&nbsp;2</a>
<a href="/" class="tag-link-9" title="4 topics" style="font-size: 10.210526315789pt;">TVMini&nbsp;Express</a>
<a href="/" class="tag-link-63" title="1 topics" style="font-size: 8pt;">TVMini&nbsp;HD&nbsp;Express</a>
<a href="/" class="tag-link-23" title="2 topics" style="font-size: 8.7368421052632pt;">VideoExpress</a></li></td></tr></table></center></td></tr><tr><td width="8" height="8"></td><td width="164"></td><td width="8" height="8"></td></tr></table><br>		<br><table bgcolor="#e8e8e8" cellpadding="0" cellspacing="0" width="180"><tr><td height="8" width="8"></td><td width="164"></td><td height="8" width="8"></td></tr><tr><td colspan="3"><center><table width="160" cellpadding="0" cellspacing="0"><tr><td><li id="text-2" class="widget widget_text">						<div class="textwidget"><center><table cellpadding="0" cellspacing="0"><tr><td>
</td></tr></table></div>
		</li></td></tr></table></center></td></tr><tr><td width="8" height="8"></td><td width="164"></td><td width="8" height="8"></td></tr></table><br></li>
</ul>
<ul>
<li></li>
</ul>
</li></div>
</td></tr></table>
</center>
</td></tr></table>
<div id="footer">
<hr/>
<center>
<!-- If you'd like to support WordPress, having the "powered by" link somewhere on your blog is the best way, it's our only promotion or advertising. -->
		<a href="../blog/"></a>
		<a href="../blog/"></a>		<!-- 47 queries. 0.473 seconds. -->
<br><br><br>
</div>
<table cellpadding="0" cellspacing="10"><tr><td>
<table bgcolor="#006ccb" cellspacing="1"><tr><td>
<a href="http://www.flickr.com/photos/migliablog/" target="_blank"></a>
</td></tr></table>
</td><td>
<table bgcolor="#777777" border="0.5"><tr><td>
	<table border="0px" cellspacing="0px" cellpadding="3px"><tr><td><a href="http://www.flickr.com/photos/migliablog/2306698477/" title="Milton Keynes Apple Store - In the Queue"></a></td><td><a href="http://www.flickr.com/photos/migliablog/2306698475/" title="Milton Keynes Apple Store - Getting Closer"></a></td><td><a href="http://www.flickr.com/photos/migliablog/2306698471/" title="Milton Keynes Apple Store - End of Queue"></a></td><td><a href="http://www.flickr.com/photos/migliablog/2306698463/" title="Milton Keynes Apple Store - Instore 2"></a></td><td></td><td><a href="http://www.flickr.com/photos/migliablog/2306698453/" title="Milton Keynes Apple Store - Free T-shirt"></a></td></tr></table>	
</td></tr></table>
</td></tr></table>
<br>
<p><div><a href="../media/about/" style="text-decoration:none; color:#666666;">About</a>&nbsp;|&nbsp;<a href="../media/artwork/" style="text-decoration:none; color:#666666;">Artwork</a>&nbsp;|&nbsp;<a href="../blog/" style="text-decoration:none; color:#666666;">Blog</a>&nbsp;|&nbsp;<a href="../media/productreviews/" style="text-decoration:none; color:#666666;">Reviews</a>&nbsp;|&nbsp;<a href="../warranty/warranty/" style="text-decoration:none; color:#666666;">Warranty</a>&nbsp;|&nbsp;<a href="../sitemap/" style="text-decoration:none; color:#666666;">Site Map</a>&nbsp;|&nbsp;<a href="https://www.facebook.com/profile.php?id=6084878165" target="_blank" style="text-decoration:none; color:#666666;">Facebook</a>&nbsp;|&nbsp;<a href="../media/contact/" style="text-decoration:none; color:#666666;">Contact</a></div></p>
		<p>&copy; 2008 HDMI Ltd. E&OE;</p></div><br><br>
</center>
</body>
</html>
</center>