<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>The Surgery &#187; WD TV Live</title>
	<atom:link href="http://www.drron.com.au/tag/wd-tv-live/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.drron.com.au</link>
	<description>The doctor is IN</description>
	<lastBuildDate>Sun, 11 Jul 2010 07:28:38 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>A note about WDTV Live and Samba shares</title>
		<link>http://www.drron.com.au/2010/01/16/a-note-about-wdtv-live-and-samba-shares/</link>
		<comments>http://www.drron.com.au/2010/01/16/a-note-about-wdtv-live-and-samba-shares/#comments</comments>
		<pubDate>Sat, 16 Jan 2010 09:38:52 +0000</pubDate>
		<dc:creator>Dr Ron</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[media streamer]]></category>
		<category><![CDATA[NetBIOS]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[Samba]]></category>
		<category><![CDATA[share]]></category>
		<category><![CDATA[WD TV Live]]></category>
		<category><![CDATA[Western Digital]]></category>

		<guid isPermaLink="false">http://www.drron.com.au/?p=138</guid>
		<description><![CDATA[I recently blogged about Western Digital&#8217;s new WD TV Live Media Streamer.
It&#8217;s going great guns, but I had some difficulty setting up Samba shares on my Linux server, and seeing these shares from the WD TV Live.
&#8220;Samba&#8221; is an implementation of the Server Message Block (SMB) networking protocol. Samba shares look like Windows shares to [...]]]></description>
			<content:encoded><![CDATA[<p>I recently blogged about <a href="http://www.drron.com.au/2010/01/08/western-digitals-wd-tv-live-robust-hd-media-player-with-high-level-waf/">Western Digital&#8217;s new WD TV Live Media Streamer</a>.</p>
<p>It&#8217;s going great guns, but I had some difficulty setting up <a href="http://en.wikipedia.org/wiki/Samba_(software)">Samba shares</a> on my Linux server, and seeing these shares from the WD TV Live.</p>
<p>&#8220;Samba&#8221; is an implementation of the Server Message Block (SMB) networking protocol. Samba shares look like Windows shares to a Windows workstation, and behave the same way. Samba can also be setup to do clever things like emulate a Windows <a href="http://en.wikipedia.org/wiki/Primary_Domain_Controller">Primary Domain Controller</a>, so the Windows workstations on the network think they&#8217;re talking to a Windows PDC, when in actual fact they&#8217;re talking to a Linux system emulating a PDC, providing enormous flexibility and saving thousands of dollars in Microsoft licensing.  Pretty cool, huh?</p>
<p>But I digress.  At home, I have a Windows workgroup. I also have a Linux server running <a href="http://fedoraproject.org/">Fedora 9</a> which I use for my internet gateway, firewall, DHCP, Network Address Translation (NAT) and other stuff. For most people, all this stuff is done by their ADSL router or similar device. But I&#8217;m not like normal people. And I&#8217;m running a business from home and I need the flexibility which a Linux server affords.</p>
<p>I wanted to have all my media on an external (portable) drive, connected to the Linux server, which is always on. Then I wanted to &#8220;share&#8221; this drive on the network, so I could access it from the new WD TV Live.</p>
<p>This is not a tutorial in connecting USB devices and mounting external drives in Linux. Also, this isn&#8217;t a tutorial in setting Linux file and directory permissions. For help doing that, you&#8217;ll need to hit Google.</p>
<p>Anyway, my new drive was mounted in my Linux file system at &#8220;/home/ron/elements&#8221;. (Co-incidentally it&#8217;s a <a href="http://www.wdc.com/en/products/products.asp?driveid=674">Western Digital &#8216;Elements&#8217; external hard disk</a>.) I didn&#8217;t have Samba installed, so I installed it like this:</p>
<pre style="padding-left: 30px;">yum install samba</pre>
<p>&#8220;Yum&#8221; is the <a href="http://en.wikipedia.org/wiki/Yellowdog_Updater,_Modified">Yellow-Dog Updater</a> which is an easy and safe way to install commonly-used Fedora packages via the internet. I added my username &#8220;ron&#8221; to the SMB users&#8217; file, like this:</p>
<pre style="padding-left: 30px;">/usr/bin/smbpasswd -a ron</pre>
<p>&#8230;and added a new, browsable share in the Samba config file, like this:</p>
<pre style="padding-left: 30px;">[elements]</pre>
<pre style="padding-left: 30px;">comment = WD Elements Share</pre>
<pre style="padding-left: 30px;">path = /home/ron/elements</pre>
<pre style="padding-left: 30px;">public = yes</pre>
<pre style="padding-left: 30px;">writable = yes</pre>
<pre style="padding-left: 30px;">createmask = 0777</pre>
<pre style="padding-left: 30px;">directorymask = 0777</pre>
<pre style="padding-left: 30px;">browseable = yes</pre>
<pre style="padding-left: 30px;">printable = no</pre>
<p>Then I started Samba, and added it to the correct startup runlevels like this:</p>
<pre style="padding-left: 30px;">service smb start</pre>
<pre style="padding-left: 30px;">service nmb start</pre>
<pre style="padding-left: 30px;">chkconfig smb on</pre>
<pre style="padding-left: 30px;">chkconfig nmb on</pre>
<p>All good! I could see the share by browsing on a Windows machine to the IP address, like this:</p>
<pre style="padding-left: 30px;">\\192.168.2.2\elements</pre>
<p>&#8230;BUT a hit a brick wall at this point.  There were two problems which I couldn&#8217;t resolve. The second, I suspected, was directly related to the first:</p>
<ol>
<li>I couldn&#8217;t browse the machine by its <a href="http://en.wikipedia.org/wiki/NetBIOS">NetBIOS</a> name, &#8220;derek&#8221;, which I&#8217;d specified in the smb.conf file, and</li>
<li>The WD TV Live couldn&#8217;t see the Samba share.</li>
</ol>
<p><a href="http://www.techtalkradio.com.au/graeme-callaghan.php">Graeme Callaghan</a> helped me over this hurdle; with another 5 minutes fiddling, I had the problem solved.</p>
<h2>Graeme&#8217;s Fix for Samba &#8211; NetBIOS problems &#8211; don&#8217;t forget your DHCP daemon!</h2>
<p>There were two settings in the Samba config file which I had left as the default, being &#8220;remmed out&#8221;.  These were:</p>
<pre style="padding-left: 30px;">wins support = yes</pre>
<pre style="padding-left: 30px;">dns proxy = yes</pre>
<p>I un-remarked these.</p>
<p>Then, I un-remarked a critical setting in my DHCP server&#8217;s configuration file, which was also on the same machine:</p>
<pre style="padding-left: 30px;">option netbios-name-servers  192.168.2.2;</pre>
<p>This setting controls NetBIOS name visibility on your network. If your Samba server is on a different physical machine, point the IP address in your DHCP config file to the Samba machine&#8217;s IP address.</p>
<p>Then I restarted dhcpd, smb &amp; nmb. Low-and-behold, my Fedora server was suddenly browsable by its NetBIOS name; e.g.</p>
<pre style="padding-left: 30px;">\\derek\elements</pre>
<p>Even better, The WD TV Live picked up the changes straight away.  The server &#8220;DEREK&#8221; was now available in my list of &#8220;Shared Folders&#8221; on the WD TV Live menu.</p>
<p>I needed to *turn off* a setting in the WD TV Live called<strong> Settings / Network Setting / Auto login to network share</strong>. Then I browsed to DEREK in the Video / Shared Folders list, entered my network credentials (which I had created earlier with the &#8220;smbpasswd&#8221; command) and verified I could see all the folders correctly and access the media OK. I then reset the <strong>Auto login to network share</strong> to ON so I wasn&#8217;t prompted for a username and password every time I tried to access this network resource.</p>
<p>There seems to be a lot of consternation on message boards about WD TV Live connecting to Samba shares. It&#8217;s easy when you know how (thanks again Graeme). Hopefully this is useful to someone.</p>
<p>For info, package versions are:</p>
<ul>
<li><strong>samba</strong>-3.2.11-0.28.fc9.i386</li>
<li><strong>dhcp</strong>-4.0.0-22.fc9.i386</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.drron.com.au/2010/01/16/a-note-about-wdtv-live-and-samba-shares/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Western Digital&#8217;s WD TV Live &#8211; Robust HD Media Player with High-Level WAF*</title>
		<link>http://www.drron.com.au/2010/01/08/western-digitals-wd-tv-live-robust-hd-media-player-with-high-level-waf/</link>
		<comments>http://www.drron.com.au/2010/01/08/western-digitals-wd-tv-live-robust-hd-media-player-with-high-level-waf/#comments</comments>
		<pubDate>Fri, 08 Jan 2010 11:35:39 +0000</pubDate>
		<dc:creator>Dr Ron</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Social Networking]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[Digital Living Network Alliance]]></category>
		<category><![CDATA[digital lounge room]]></category>
		<category><![CDATA[DLNA]]></category>
		<category><![CDATA[HomeGroup]]></category>
		<category><![CDATA[media streamer]]></category>
		<category><![CDATA[Tech Talk Radio]]></category>
		<category><![CDATA[video streamer]]></category>
		<category><![CDATA[video streaming]]></category>
		<category><![CDATA[WD TV Live]]></category>
		<category><![CDATA[Western Digital]]></category>

		<guid isPermaLink="false">http://www.drron.com.au/?p=121</guid>
		<description><![CDATA[One of my New Year&#8217;s Resolutions was to cable a network socket to the lounge room, and a network socket to the bedroom.
This would enable me, in theory, to stream audio and video from my network to the television and sound system in my living room; and to stream audio and video from my network [...]]]></description>
			<content:encoded><![CDATA[<p>One of my New Year&#8217;s Resolutions was to cable a network socket to the lounge room, and a network socket to the bedroom.</p>
<p>This would enable me, in theory, to stream audio and video from <a href="http://en.wikipedia.org/wiki/Local_area_network">my network</a> to the television and sound system in my living room; and to stream audio and video from my network to the television in the master bedroom.</p>
<h2>Why not just use wireless?</h2>
<p>I&#8217;ve been using WiFi to the lounge room Media Centre for some time (well, years) now. It works adequately. But wireless technology is designed for portable devices, and in the case where I&#8217;ve got a Media Centre PC which never moves, the better option from a technical standpoint is to connect to the network using a wired network port. A fixed network connection is faster than wireless, more reliable, and my Media Centre won&#8217;t be competing with other wireless devices for bandwidth, using the same hotspot &#8216;legitimately&#8217; (e.g. net books, smart phones etc.).</p>
<p>Conspiracy theorists that obsess about security will also agree that a wired network connection is a better option than wireless. I, however, do not obsess about such things. Honestly.</p>
<p>Yesterday I got out the fashionable white overalls, retrieved my toolbox from a bygone era and proceeded to cable new network points to the lounge room and the master bedroom. This involved much swearing, grunting, bashing-of-head-against-low-floorboards and grazed elbows, but I got there eventually.</p>
<p>In Australia, make sure any infrastructure cabling, at work or at home, is undertaken by a <a href="http://www.acma.gov.au/WEB/STANDARD..PC/pc=PC_300447">licensed cabler</a>.  Like me.</p>
<h2>Lounge Room &#8211; wired for internets!</h2>
<p>I plugged the Media Centre into its new network port, and was pleased to see a noticeable improvement in network speed. I&#8217;ll keep using the PC as a Media Centre in the lounge room. It makes a lot of sense to me to have a networked PC connected to your television and sound system.</p>
<h2>The Bedroom Solution</p>
<p>- or -</p>
<p>&#8220;How to browse internets and network file shares in your bedroom without a computer&#8221;</h2>
<p>A PC in the bedroom, however, is a bit excessive (IMHO). So what&#8217;s the best way to access content on the network and stream it to the television?</p>
<p>I had my eye on a fashionable <a href="http://en.wikipedia.org/wiki/Digital_media_receiver">media streamer</a> from Western Digital which <a href="http://forum.techtalkradio.com.au/viewtopic.php?f=21&amp;t=89">Andrew spoke about on Tech Talk Radio in November</a>. After seeing a demonstration, viewing a Blu-Ray rip over Andrew&#8217;s network in his lounge room, I was sold. The quality was great.</p>
<p>There are three versions of these little boxes, and I bought the most expensive one, the <a href="http://www.westerndigital.com/en/products/Products.asp?DriveID=735">WD TV Live</a>, which supports networking. This set me back $198 from JB Hi Fi.</p>
<div class="wp-caption alignnone" style="width: 510px"><img title="Western Digital's WD TV Live" src="http://farm3.static.flickr.com/2639/4256577806_2c19c7099b.jpg" alt="Western Digital's WD TV Live" width="500" height="375" /><p class="wp-caption-text">Western Digital&#39;s WD TV Live</p></div>
<p>The <strong>WD TV Live</strong> is a small unassuming box which provides an interface between your television and your computer network, with a nifty little remote control (yes, batteries <em>are</em> included!). All the <strong>WD TV Live</strong> needs is power and a nearby network connection, which I now have, thanks to yesterday&#8217;s wrangling.</p>
<p><strong>The WD TV Live</strong> outputs to composite or component video (cables supplied) or HDMI (cable not supplied), in full HD 1080P video. When it powers-up, the <strong>WD TV Live</strong> finds <a href="http://en.wikipedia.org/wiki/Network_share">shares</a> on your computer network and lets you watch video and listen to music. It also has 2 x USB ports so you can connect external drives, memory sticks and the like.</p>
<div class="wp-caption alignnone" style="width: 510px"><img title="Rear of the WD TV Live" src="http://farm3.static.flickr.com/2798/4255816103_1acffb3319.jpg" alt="Rear of the WD TV Live" width="500" height="375" /><p class="wp-caption-text">Rear of the WD TV Live - from L to R: power, USB, HDMI, optical, LAN, composite out &amp; component out</p></div>
<p>To get it going, all I needed to do was connect HDMI to my television, connect the blue network cable and plug-in the power. The <strong>WD TV Live</strong> did everything else, and the default settings are very usable. It found my network&#8217;s DHCP server, assigned itself an IP address, found my network shares and just started working.</p>
<h2>Format Support</h2>
<p>According to the documentation, supported video formats include AVI (Xvid, AVC, MPEG 1, 2 &amp; 4, WMV9 &amp; VC-1), MPG/MPEG, VOB, MKV (H.264, X.264, AVC, MPEG 1, 2 &amp; 4, WMV9 &amp; VC-1), TS / TP / M2T (MPEG 1, 2 &amp; 4, AVC &amp; VC-1), MP4/MOV (MPEG4 &amp; H.264), M2TS &amp; WMV9.</p>
<p>Supported image formats include JPEG, GIF, TIFF, BMP &amp; PNG.</p>
<p>Supported audio formats include MP3, WAV/PCM/LPCM, WMA, AAC, FLAC, MKA, AIF/AIFF, OGG, Dolby Digital &amp; DTS.</p>
<p>The <strong>WD TV Live</strong> also supports common playlist and subtitle formats, and it&#8217;s got the <a href="http://www.dlna.org/home">DLNA stamp of approval</a>.</p>
<p>Andrew says he&#8217;s had huge success with MKV video formats, in terms of quality.</p>
<h2>User Interface</h2>
<p>Nice.  Fast and smooth.</p>
<div class="wp-caption alignnone" style="width: 510px"><img title="WD TV Live - User Interface" src="http://farm3.static.flickr.com/2472/4256577908_bec114ebfb.jpg" alt="" width="500" height="375" /><p class="wp-caption-text">WD TV Live - User Interface</p></div>
<p>There&#8217;s also a nice interface which streams content directly from Google&#8217;s video-sharing website <a href="http://www.youtube.com/">YouTube</a>, popular photo-sharing site <a href="http://flickr.com/">Flickr</a> and <a href="http://www.live365.com/">Live 365</a> internet radio. You can login to YouTube if you have an existing account.</p>
<div class="wp-caption alignnone" style="width: 510px"><img title="WD TV Live - browsing YouTube with the built-in UI" src="http://farm3.static.flickr.com/2741/4256577744_d298f0340a.jpg" alt="WD TV Live - browsing YouTube with the built-in UI" width="500" height="375" /><p class="wp-caption-text">WD TV Live - browsing YouTube with the built-in UI</p></div>
<p>My only gripe is the on-screen keyboard, which is clunky and frustrating. You&#8217;re driving it with the up/down/left/right arrows on the remote control, so I&#8217;m not really sure how Western Digital could improve on this. You only need to use the on-screen keyboard if you&#8217;re entering custom network settings, or user names and passwords for network shares and such things. Fortunately the <strong>WD TV Live</strong> remembers these settings, so you rarely need to use the on-screen keyboard.</p>
<h2>Problems with HomeGroup Networking</h2>
<p>Tech Talk&#8217;s <a href="http://twitter.com/gc248">Graeme Callaghan</a> also purchased one of these little boxes some weeks ago. He told me that the only difficulties he has experienced have been with Windows 7 &#8220;<a href="http://windows.microsoft.com/en-AU/windows7/products/features/homegroup">HomeGroup</a>&#8221; networking, which apparently does strange things, e.g. causing network shares to disappear, reappear then disappear again. Graeme said that after he disabled HomeGroup networking, in favour of <a href="http://www.microsoft.com/windowsxp/using/networking/expert/honeycutt_august13.mspx">traditional Windows workgroups</a>, everything worked consistently and well. I&#8217;m sharing content off a Windows 7 Professional machine in traditional &#8216;workgroups&#8217; mode and everything with the <strong>WD TV Live</strong> has been smooth-sailing.</p>
<h2>The Verdict</h2>
<p>Good.</p>
<p>Easy to set up; reliable; intuitive user interface; excellent playback quality. High WAF*. This is a media streamer which fills a fundamental hole in the digital lounge room.</p>
<p>Or, in this case, Dr Ron&#8217;s Digital Bedroom.</p>
<pre>* Wife Acceptability Factor</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.drron.com.au/2010/01/08/western-digitals-wd-tv-live-robust-hd-media-player-with-high-level-waf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
