<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:copyright="http://blogs.law.harvard.edu/tech/rss" xmlns:image="http://purl.org/rss/1.0/modules/image/">
    <channel>
        <title>Media Center</title>
        <link>http://geekswithblogs.net/MotoWilliams/category/2396.aspx</link>
        <description>Media Center</description>
        <language>en-US</language>
        <copyright>Eric Williams</copyright>
        <managingEditor>vuduchile66@hotmail.com</managingEditor>
        <generator>Subtext Version 0.0.0.0</generator>
        <item>
            <title>Hey Mircosoft, iTunes is kicking your a$$</title>
            <link>http://geekswithblogs.net/MotoWilliams/archive/2005/08/09/49728.aspx</link>
            <description>&lt;font face="Verdana,Arial,Helvetica,sans-serif" color="#004080" size="2"&gt;Why oh why does it take so darn long to load a list of Artists or Albums in My Music Application of Media Center?  Come on iTunes stores it's library as an XML file and you have a binary library file.  Seems to me the sort of performance argument between XML and Binary serialization - only backwards.&lt;/font&gt; &lt;img src="http://geekswithblogs.net/MotoWilliams/aggbug/49728.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Eric</dc:creator>
            <guid>http://geekswithblogs.net/MotoWilliams/archive/2005/08/09/49728.aspx</guid>
            <pubDate>Tue, 09 Aug 2005 12:33:00 GMT</pubDate>
            <wfw:comment>http://geekswithblogs.net/MotoWilliams/comments/49728.aspx</wfw:comment>
            <comments>http://geekswithblogs.net/MotoWilliams/archive/2005/08/09/49728.aspx#feedback</comments>
            <slash:comments>2</slash:comments>
            <wfw:commentRss>http://geekswithblogs.net/MotoWilliams/comments/commentRss/49728.aspx</wfw:commentRss>
            <trackback:ping>http://geekswithblogs.net/MotoWilliams/services/trackbacks/49728.aspx</trackback:ping>
        </item>
        <item>
            <title>Windows Media Center - My Music Library</title>
            <link>http://geekswithblogs.net/MotoWilliams/archive/2005/08/08/49653.aspx</link>
            <description>Windows Media Center has to have the Album Artist tag set in order to show up in the My Music module of Windows Media Center.  Since this is driven by the Windows Media Player library those tags need to set there.  Unfortunately for me almost none of those tags were set in my library so it was time for some scripting:
&lt;BR&gt;&lt;BR&gt;
Dim Artist&lt;br&gt;
Dim AlbumArtist&lt;br&gt;
Set objPlayer = CreateObject("WMPlayer.OCX" )&lt;br&gt;
Set objMediaCollection = objPlayer.MediaCollection&lt;br&gt;
Set colSongList = objMediaCollection.getByAttribute("MediaType", "Audio")&lt;br&gt;

For i = 0 to colSongList.Count - 1&lt;br&gt;
  Set objSong = colSongList.Item(i)&lt;br&gt;
  Artist = objSong.getItemInfo("Artist")&lt;br&gt;
  AlbumArtist = objSong.getItemInfo("WM/AlbumArtist")  &lt;br&gt;
  if Artist &lt;&gt; AlbumArtist then    &lt;br&gt;
    wscript.echo objSong.Name&lt;br&gt;
    Wscript.Echo Artist &amp; "=" &amp; AlbumArtist&lt;br&gt;
    wscript.echo&lt;br&gt;
    objSong.setItemInfo "WM/AlbumArtist", Artist&lt;br&gt;
  end if  &lt;br&gt;
Next&lt;br&gt; &lt;img src="http://geekswithblogs.net/MotoWilliams/aggbug/49653.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Eric</dc:creator>
            <guid>http://geekswithblogs.net/MotoWilliams/archive/2005/08/08/49653.aspx</guid>
            <pubDate>Mon, 08 Aug 2005 19:21:00 GMT</pubDate>
            <wfw:comment>http://geekswithblogs.net/MotoWilliams/comments/49653.aspx</wfw:comment>
            <comments>http://geekswithblogs.net/MotoWilliams/archive/2005/08/08/49653.aspx#feedback</comments>
            <slash:comments>2</slash:comments>
            <wfw:commentRss>http://geekswithblogs.net/MotoWilliams/comments/commentRss/49653.aspx</wfw:commentRss>
            <trackback:ping>http://geekswithblogs.net/MotoWilliams/services/trackbacks/49653.aspx</trackback:ping>
        </item>
        <item>
            <title>Some Company for SyncBackSE?</title>
            <link>http://geekswithblogs.net/MotoWilliams/archive/2005/08/08/49650.aspx</link>
            <description>I've been using &lt;a href="http://www.2brightsparks.com/syncback/sbse.html"&gt;SyncBackSE&lt;/a&gt; for quite a while now and I'm almost embarrassed on how much I love this little thing.  I use it to keep my music in sync between my Media Center PC and my two portable USB hard drives.  I don't have too much music , only about 7600 songs, but it is such a pain to remember which tags have been updated on which drive when I go into my tag clean up frenzies which is a &lt;a href="http://www.geekswithblogs.net/motowilliams/archive/2005/08/08/49653.aspx"&gt;requirement of Media Center to have all your music diplayed in the My Music section.&lt;/a&gt;  I also use it to keep my work laptop's data files and my local source code snippets backed up to my home drive at work.  Saves me tons of time on my 4 to 5 month repaving schedule!
&lt;BR&gt;&lt;BR&gt;
Now it looks like Microsoft has a similar tool on the way with &lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=e0fc1154-c975-4814-9649-cce41af06eb7&amp;DisplayLang=en"&gt;SyncToy&lt;/a&gt;.  Although I don't understand what they were thinking naming a function 'echo'... &lt;img src="http://geekswithblogs.net/MotoWilliams/aggbug/49650.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Eric</dc:creator>
            <guid>http://geekswithblogs.net/MotoWilliams/archive/2005/08/08/49650.aspx</guid>
            <pubDate>Mon, 08 Aug 2005 19:02:00 GMT</pubDate>
            <wfw:comment>http://geekswithblogs.net/MotoWilliams/comments/49650.aspx</wfw:comment>
            <comments>http://geekswithblogs.net/MotoWilliams/archive/2005/08/08/49650.aspx#feedback</comments>
            <wfw:commentRss>http://geekswithblogs.net/MotoWilliams/comments/commentRss/49650.aspx</wfw:commentRss>
            <trackback:ping>http://geekswithblogs.net/MotoWilliams/services/trackbacks/49650.aspx</trackback:ping>
        </item>
    </channel>
</rss>
