<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>slaudioplayer Wiki &amp; Documentation Rss Feed</title><link>http://www.codeplex.com/slaudioplayer/Wiki/View.aspx?title=Home</link><description>slaudioplayer Wiki Rss Description</description><item><title>Updated Wiki: Home</title><link>http://slaudioplayer.codeplex.com/wikipage?version=26</link><description>&lt;div class="wikidoc"&gt;&lt;h2&gt;Overview&lt;/h2&gt;Silverlight Audio Player is a simple audio player that can be used for playing back one or more audio files. It currently supports two styles of player. The first plays a single file and is based on the visual design of the &lt;a href="http://wpaudioplayer.com/" class="externalLink"&gt;WordPress audio player&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;. The second allows you to play multiple files.&lt;br /&gt;
&lt;h2&gt;Installation&lt;/h2&gt;You need the AudioPlayer.xap file, and optionally an XML playlist file. Once you have those, you can&lt;br /&gt;load the Silverlight application in the same way you would any other. Remember to set up the size appropriately,&lt;br /&gt;and pass in the MP3 file Url or Playlist Url in the Initparams (see below).  By convention, Visual Studio likes&lt;br /&gt;XAP files to be stored in a ClientBin folder. You do not need to do this, and if you don't, you will need to adjust the&lt;br /&gt;relative paths from the examples shown below (i.e. no need for ..\ on your Urls).&lt;br /&gt;
&lt;h2&gt;Using the Single Player&lt;/h2&gt;To use the single player, simply pass init params following the to your silverlight object. The single player should be sized 295 pixels wide and 30 pixels high.&lt;br /&gt;    &lt;br /&gt;&lt;b&gt;InitParams:&lt;/b&gt; &lt;i&gt;Url=http://www.mydomain.com/audio/song-1.mp3,Artist=Artist Name,Title=Song title&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=slaudioplayer&amp;DownloadId=89960" alt="slaudioplayer30oct2009.png" title="slaudioplayer30oct2009.png" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Try it out:&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;object data="data:application/x-silverlight-2," type="application/x-silverlight-2" style="height:30px;width:295px;"&gt;&lt;param name="source" value="http://www.wordandspirit.co.uk/software/AudioPlayer.xap"&gt;&lt;/param&gt;&lt;param name="windowless" value="true"&gt;&lt;/param&gt;&lt;param name="initParams" value="Path=http://herdingcode.com/wp-content/uploads/HerdingCode-0063-Victory-in-Software-Development-with-K-Scott-Allen.mp3,Title=Herding Code Episode 63:Victory in Software Development with K Scott Allen"&gt;&lt;/param&gt;&lt;param name="minRuntimeVersion" value="3.0.40624.0"&gt;&lt;/param&gt;&lt;param name="autoUpgrade" value="true"&gt;&lt;/param&gt;&lt;p&gt;You need to install Microsoft Silverlight to view this content. &lt;a href="http://go.microsoft.com/fwlink/?LinkID=149156&amp;v=3.0.40624.0" style="text-decoration:none;"&gt;Get Silverlight!&lt;br /&gt;&lt;img src="http://go.microsoft.com/fwlink/?LinkID=108181" alt="Get Microsoft Silverlight" style="border-style:none;" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;/object&gt;&lt;iframe style="visibility:hidden;height:0;width:0;border-width:0;"&gt;&lt;/iframe&gt;&lt;br /&gt;
&lt;h2&gt;Using the Multiple Player&lt;/h2&gt;The multi-player is still a work in progress. To launch the player with multiple files, you need to point it at a playlist. A playlist is&lt;br /&gt;an XML file containing the Url, Artist and Title for each track you wish to play.&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; ?&amp;gt;
&amp;lt;playlist&amp;gt;
  &amp;lt;audiofile url=&amp;quot;http://www.wordandspirit.co.uk/blog/audio/01-opposition-and-joy.mp3&amp;quot; title=&amp;quot;Opposition and Joy&amp;quot; artist=&amp;quot;Mark Heath&amp;quot; /&amp;gt;
  &amp;lt;audiofile url=&amp;quot;http://www.wordandspirit.co.uk/blog/audio/you-have-always-given.mp3&amp;quot; title=&amp;quot;You have always given&amp;quot; artist=&amp;quot;Mark Heath&amp;quot; /&amp;gt;
  &amp;lt;audiofile url=&amp;quot;http://www.wordandspirit.co.uk/blog/audio/dont-look-at-me.mp3&amp;quot; title=&amp;quot;Don't Look at Me&amp;quot; artist=&amp;quot;Mark Heath&amp;quot; /&amp;gt;
  &amp;lt;audiofile url=&amp;quot;http://www.wordandspirit.co.uk/blog/audio/holy-spirit-will-you-be.mp3&amp;quot; title=&amp;quot;Holy Spirit Will You Be&amp;quot; artist=&amp;quot;Mark Heath&amp;quot; /&amp;gt;
&amp;lt;/playlist&amp;gt;
&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;InitParams:&lt;/b&gt; &lt;i&gt;Playlist=../MyPlaylist.xml&lt;/i&gt;&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=slaudioplayer&amp;DownloadId=83521" alt="sl-multi-player.png" title="sl-multi-player.png" /&gt;&lt;br /&gt;
&lt;h2&gt;Project News&lt;/h2&gt;&lt;b&gt;1 Apr 2008&lt;/b&gt;&lt;br /&gt;The Single and Multi player controls are basically working now, but need a little bit of visual tidy-up before we make our first beta release. Also, the project structure will be simplified, as we do not really need a separate controls DLL.&lt;br /&gt;&lt;b&gt;17 May 2008&lt;/b&gt;&lt;br /&gt;Due to a known bug in Silverlight 2 beta 1 to do with customising vertical scrollbars, I am waiting for the next beta release before doing too much more work on this.&lt;br /&gt;&lt;b&gt;8 Jun 2008&lt;/b&gt;&lt;br /&gt;Updated to work with Silverlight 2 beta 2&lt;br /&gt;Work will focus on making the simple player and multi player look nice, at which point we will be ready for a first beta release&lt;br /&gt;&lt;b&gt;14 Oct 2008&lt;/b&gt;&lt;br /&gt;Updated to work with Silverlight 2 RTW&lt;br /&gt;&lt;b&gt;6 Jan 2009&lt;/b&gt;&lt;br /&gt;Have been slowly improving the visual appearance of both players, working towards a first release&lt;br /&gt;&lt;b&gt;14 Sep 2009&lt;/b&gt;&lt;br /&gt;Finally a first beta release!&lt;br /&gt;&lt;b&gt;30 Oct 2009&lt;/b&gt;&lt;br /&gt;Volume control for the simple audio player&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>markheath</author><pubDate>Fri, 30 Oct 2009 17:08:05 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20091030050805P</guid></item><item><title>Updated Wiki: Home</title><link>http://slaudioplayer.codeplex.com/wikipage?version=25</link><description>&lt;div class="wikidoc"&gt;&lt;h2&gt;Overview&lt;/h2&gt;Silverlight Audio Player is a simple audio player that can be used for playing back one or more audio files. It currently supports two styles of player. The first plays a single file and is based on the visual design of the &lt;a href="http://wpaudioplayer.com/" class="externalLink"&gt;WordPress audio player&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;. The second allows you to play multiple files.&lt;br /&gt;
&lt;h2&gt;Installation&lt;/h2&gt;You need the AudioPlayer.xap file, and optionally an XML playlist file. Once you have those, you can&lt;br /&gt;load the Silverlight application in the same way you would any other. Remember to set up the size appropriately,&lt;br /&gt;and pass in the MP3 file Url or Playlist Url in the Initparams (see below).  By convention, Visual Studio likes&lt;br /&gt;XAP files to be stored in a ClientBin folder. You do not need to do this, and if you don't, you will need to adjust the&lt;br /&gt;relative paths from the examples shown below (i.e. no need for ..\ on your Urls).&lt;br /&gt;
&lt;h2&gt;Using the Single Player&lt;/h2&gt;To use the single player, simply pass init params following the to your silverlight object. The single player should be sized 295 pixels wide and 30 pixels high.&lt;br /&gt;    &lt;br /&gt;&lt;b&gt;InitParams:&lt;/b&gt; &lt;i&gt;Url=http://www.mydomain.com/audio/song-1.mp3,Artist=Artist Name,Title=Song title&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=slaudioplayer&amp;DownloadId=89960" alt="slaudioplayer30oct2009.png" title="slaudioplayer30oct2009.png" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Try it out:&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;object data="data:application/x-silverlight-2," type="application/x-silverlight-2" style="height:30px;width:295px;"&gt;&lt;param name="source" value="http://www.wordandspirit.co.uk/software/AudioPlayer.xap"&gt;&lt;/param&gt;&lt;param name="windowless" value="true"&gt;&lt;/param&gt;&lt;param name="initParams" value="Path=http://herdingcode.com/wp-content/uploads/HerdingCode-0063-Victory-in-Software-Development-with-K-Scott-Allen.mp3"&gt;&lt;/param&gt;&lt;param name="minRuntimeVersion" value="3.0.40624.0"&gt;&lt;/param&gt;&lt;param name="autoUpgrade" value="true"&gt;&lt;/param&gt;&lt;p&gt;You need to install Microsoft Silverlight to view this content. &lt;a href="http://go.microsoft.com/fwlink/?LinkID=149156&amp;v=3.0.40624.0" style="text-decoration:none;"&gt;Get Silverlight!&lt;br /&gt;&lt;img src="http://go.microsoft.com/fwlink/?LinkID=108181" alt="Get Microsoft Silverlight" style="border-style:none;" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;/object&gt;&lt;iframe style="visibility:hidden;height:0;width:0;border-width:0;"&gt;&lt;/iframe&gt;&lt;br /&gt;
&lt;h2&gt;Using the Multiple Player&lt;/h2&gt;The multi-player is still a work in progress. To launch the player with multiple files, you need to point it at a playlist. A playlist is&lt;br /&gt;an XML file containing the Url, Artist and Title for each track you wish to play.&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; ?&amp;gt;
&amp;lt;playlist&amp;gt;
  &amp;lt;audiofile url=&amp;quot;http://www.wordandspirit.co.uk/blog/audio/01-opposition-and-joy.mp3&amp;quot; title=&amp;quot;Opposition and Joy&amp;quot; artist=&amp;quot;Mark Heath&amp;quot; /&amp;gt;
  &amp;lt;audiofile url=&amp;quot;http://www.wordandspirit.co.uk/blog/audio/you-have-always-given.mp3&amp;quot; title=&amp;quot;You have always given&amp;quot; artist=&amp;quot;Mark Heath&amp;quot; /&amp;gt;
  &amp;lt;audiofile url=&amp;quot;http://www.wordandspirit.co.uk/blog/audio/dont-look-at-me.mp3&amp;quot; title=&amp;quot;Don't Look at Me&amp;quot; artist=&amp;quot;Mark Heath&amp;quot; /&amp;gt;
  &amp;lt;audiofile url=&amp;quot;http://www.wordandspirit.co.uk/blog/audio/holy-spirit-will-you-be.mp3&amp;quot; title=&amp;quot;Holy Spirit Will You Be&amp;quot; artist=&amp;quot;Mark Heath&amp;quot; /&amp;gt;
&amp;lt;/playlist&amp;gt;
&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;InitParams:&lt;/b&gt; &lt;i&gt;Playlist=../MyPlaylist.xml&lt;/i&gt;&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=slaudioplayer&amp;DownloadId=83521" alt="sl-multi-player.png" title="sl-multi-player.png" /&gt;&lt;br /&gt;
&lt;h2&gt;Project News&lt;/h2&gt;&lt;b&gt;1 Apr 2008&lt;/b&gt;&lt;br /&gt;The Single and Multi player controls are basically working now, but need a little bit of visual tidy-up before we make our first beta release. Also, the project structure will be simplified, as we do not really need a separate controls DLL.&lt;br /&gt;&lt;b&gt;17 May 2008&lt;/b&gt;&lt;br /&gt;Due to a known bug in Silverlight 2 beta 1 to do with customising vertical scrollbars, I am waiting for the next beta release before doing too much more work on this.&lt;br /&gt;&lt;b&gt;8 Jun 2008&lt;/b&gt;&lt;br /&gt;Updated to work with Silverlight 2 beta 2&lt;br /&gt;Work will focus on making the simple player and multi player look nice, at which point we will be ready for a first beta release&lt;br /&gt;&lt;b&gt;14 Oct 2008&lt;/b&gt;&lt;br /&gt;Updated to work with Silverlight 2 RTW&lt;br /&gt;&lt;b&gt;6 Jan 2009&lt;/b&gt;&lt;br /&gt;Have been slowly improving the visual appearance of both players, working towards a first release&lt;br /&gt;&lt;b&gt;14 Sep 2009&lt;/b&gt;&lt;br /&gt;Finally a first beta release!&lt;br /&gt;&lt;b&gt;30 Oct 2009&lt;/b&gt;&lt;br /&gt;Volume control for the simple audio player&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>markheath</author><pubDate>Fri, 30 Oct 2009 17:05:37 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20091030050537P</guid></item><item><title>Updated Wiki: Home</title><link>http://slaudioplayer.codeplex.com/wikipage?version=24</link><description>&lt;div class="wikidoc"&gt;&lt;h2&gt;Overview&lt;/h2&gt;Silverlight Audio Player is a simple audio player that can be used for playing back one or more audio files. It currently supports two styles of player. The first plays a single file and is based on the visual design of the &lt;a href="http://wpaudioplayer.com/" class="externalLink"&gt;WordPress audio player&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;. The second allows you to play multiple files.&lt;br /&gt;
&lt;h2&gt;Installation&lt;/h2&gt;You need the AudioPlayer.xap file, and optionally an XML playlist file. Once you have those, you can&lt;br /&gt;load the Silverlight application in the same way you would any other. Remember to set up the size appropriately,&lt;br /&gt;and pass in the MP3 file Url or Playlist Url in the Initparams (see below).  By convention, Visual Studio likes&lt;br /&gt;XAP files to be stored in a ClientBin folder. You do not need to do this, and if you don't, you will need to adjust the&lt;br /&gt;relative paths from the examples shown below (i.e. no need for ..\ on your Urls).&lt;br /&gt;
&lt;h2&gt;Using the Single Player&lt;/h2&gt;To use the single player, simply pass init params following the to your silverlight object. The single player should be sized 295 pixels wide and 30 pixels high.&lt;br /&gt;    &lt;br /&gt;&lt;b&gt;InitParams:&lt;/b&gt; &lt;i&gt;Url=http://www.mydomain.com/audio/song-1.mp3,Artist=Artist Name,Title=Song title&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=slaudioplayer&amp;DownloadId=89960" alt="slaudioplayer30oct2009.png" title="slaudioplayer30oct2009.png" /&gt;&lt;br /&gt;
&lt;h2&gt;Using the Multiple Player&lt;/h2&gt;The multi-player is still a work in progress. To launch the player with multiple files, you need to point it at a playlist. A playlist is&lt;br /&gt;an XML file containing the Url, Artist and Title for each track you wish to play.&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; ?&amp;gt;
&amp;lt;playlist&amp;gt;
  &amp;lt;audiofile url=&amp;quot;http://www.wordandspirit.co.uk/blog/audio/01-opposition-and-joy.mp3&amp;quot; title=&amp;quot;Opposition and Joy&amp;quot; artist=&amp;quot;Mark Heath&amp;quot; /&amp;gt;
  &amp;lt;audiofile url=&amp;quot;http://www.wordandspirit.co.uk/blog/audio/you-have-always-given.mp3&amp;quot; title=&amp;quot;You have always given&amp;quot; artist=&amp;quot;Mark Heath&amp;quot; /&amp;gt;
  &amp;lt;audiofile url=&amp;quot;http://www.wordandspirit.co.uk/blog/audio/dont-look-at-me.mp3&amp;quot; title=&amp;quot;Don't Look at Me&amp;quot; artist=&amp;quot;Mark Heath&amp;quot; /&amp;gt;
  &amp;lt;audiofile url=&amp;quot;http://www.wordandspirit.co.uk/blog/audio/holy-spirit-will-you-be.mp3&amp;quot; title=&amp;quot;Holy Spirit Will You Be&amp;quot; artist=&amp;quot;Mark Heath&amp;quot; /&amp;gt;
&amp;lt;/playlist&amp;gt;
&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;InitParams:&lt;/b&gt; &lt;i&gt;Playlist=../MyPlaylist.xml&lt;/i&gt;&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=slaudioplayer&amp;DownloadId=83521" alt="sl-multi-player.png" title="sl-multi-player.png" /&gt;&lt;br /&gt;
&lt;h2&gt;Project News&lt;/h2&gt;&lt;b&gt;1 Apr 2008&lt;/b&gt;&lt;br /&gt;The Single and Multi player controls are basically working now, but need a little bit of visual tidy-up before we make our first beta release. Also, the project structure will be simplified, as we do not really need a separate controls DLL.&lt;br /&gt;&lt;b&gt;17 May 2008&lt;/b&gt;&lt;br /&gt;Due to a known bug in Silverlight 2 beta 1 to do with customising vertical scrollbars, I am waiting for the next beta release before doing too much more work on this.&lt;br /&gt;&lt;b&gt;8 Jun 2008&lt;/b&gt;&lt;br /&gt;Updated to work with Silverlight 2 beta 2&lt;br /&gt;Work will focus on making the simple player and multi player look nice, at which point we will be ready for a first beta release&lt;br /&gt;&lt;b&gt;14 Oct 2008&lt;/b&gt;&lt;br /&gt;Updated to work with Silverlight 2 RTW&lt;br /&gt;&lt;b&gt;6 Jan 2009&lt;/b&gt;&lt;br /&gt;Have been slowly improving the visual appearance of both players, working towards a first release&lt;br /&gt;&lt;b&gt;14 Sep 2009&lt;/b&gt;&lt;br /&gt;Finally a first beta release!&lt;br /&gt;&lt;b&gt;30 Oct 2009&lt;/b&gt;&lt;br /&gt;Volume control for the simple audio player&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>markheath</author><pubDate>Fri, 30 Oct 2009 16:49:37 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20091030044937P</guid></item><item><title>Updated Wiki: Home</title><link>http://slaudioplayer.codeplex.com/wikipage?version=23</link><description>&lt;div class="wikidoc"&gt;&lt;h2&gt;Overview&lt;/h2&gt;Silverlight Audio Player is a simple audio player that can be used for playing back one or more audio files. It currently supports two styles of player. The first plays a single file and is based on the visual design of the &lt;a href="http://wpaudioplayer.com/" class="externalLink"&gt;WordPress audio player&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;. The second allows you to play multiple files.&lt;br /&gt;
&lt;h2&gt;Installation&lt;/h2&gt;You need the AudioPlayer.xap file, and optionally an XML playlist file. Once you have those, you can&lt;br /&gt;load the Silverlight application in the same way you would any other. Remember to set up the size appropriately,&lt;br /&gt;and pass in the MP3 file Url or Playlist Url in the Initparams (see below).  By convention, Visual Studio likes&lt;br /&gt;XAP files to be stored in a ClientBin folder. You do not need to do this, and if you don't, you will need to adjust the&lt;br /&gt;relative paths from the examples shown below (i.e. no need for ..\ on your Urls).&lt;br /&gt;
&lt;h2&gt;Using the Single Player&lt;/h2&gt;To use the single player, simply pass init params following the to your silverlight object. The single player should be sized 295 pixels wide and 30 pixels high.&lt;br /&gt;    &lt;br /&gt;&lt;b&gt;InitParams:&lt;/b&gt; &lt;i&gt;Url=http://www.mydomain.com/audio/song-1.mp3,Artist=Artist Name,Title=Song title&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=slaudioplayer&amp;DownloadId=83520" alt="sl-audio-player.png" title="sl-audio-player.png" /&gt;&lt;br /&gt;
&lt;h2&gt;Using the Multiple Player&lt;/h2&gt;The multi-player is still a work in progress. To launch the player with multiple files, you need to point it at a playlist. A playlist is&lt;br /&gt;an XML file containing the Url, Artist and Title for each track you wish to play.&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; ?&amp;gt;
&amp;lt;playlist&amp;gt;
  &amp;lt;audiofile url=&amp;quot;http://www.wordandspirit.co.uk/blog/audio/01-opposition-and-joy.mp3&amp;quot; title=&amp;quot;Opposition and Joy&amp;quot; artist=&amp;quot;Mark Heath&amp;quot; /&amp;gt;
  &amp;lt;audiofile url=&amp;quot;http://www.wordandspirit.co.uk/blog/audio/you-have-always-given.mp3&amp;quot; title=&amp;quot;You have always given&amp;quot; artist=&amp;quot;Mark Heath&amp;quot; /&amp;gt;
  &amp;lt;audiofile url=&amp;quot;http://www.wordandspirit.co.uk/blog/audio/dont-look-at-me.mp3&amp;quot; title=&amp;quot;Don't Look at Me&amp;quot; artist=&amp;quot;Mark Heath&amp;quot; /&amp;gt;
  &amp;lt;audiofile url=&amp;quot;http://www.wordandspirit.co.uk/blog/audio/holy-spirit-will-you-be.mp3&amp;quot; title=&amp;quot;Holy Spirit Will You Be&amp;quot; artist=&amp;quot;Mark Heath&amp;quot; /&amp;gt;
&amp;lt;/playlist&amp;gt;
&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;InitParams:&lt;/b&gt; &lt;i&gt;Playlist=../MyPlaylist.xml&lt;/i&gt;&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=slaudioplayer&amp;DownloadId=83521" alt="sl-multi-player.png" title="sl-multi-player.png" /&gt;&lt;br /&gt;
&lt;h2&gt;Project News&lt;/h2&gt;&lt;b&gt;1 Apr 2008&lt;/b&gt;&lt;br /&gt;The Single and Multi player controls are basically working now, but need a little bit of visual tidy-up before we make our first beta release. Also, the project structure will be simplified, as we do not really need a separate controls DLL.&lt;br /&gt;&lt;b&gt;17 May 2008&lt;/b&gt;&lt;br /&gt;Due to a known bug in Silverlight 2 beta 1 to do with customising vertical scrollbars, I am waiting for the next beta release before doing too much more work on this.&lt;br /&gt;&lt;b&gt;8 Jun 2008&lt;/b&gt;&lt;br /&gt;Updated to work with Silverlight 2 beta 2&lt;br /&gt;Work will focus on making the simple player and multi player look nice, at which point we will be ready for a first beta release&lt;br /&gt;&lt;b&gt;14 Oct 2008&lt;/b&gt;&lt;br /&gt;Updated to work with Silverlight 2 RTW&lt;br /&gt;&lt;b&gt;6 Jan 2009&lt;/b&gt;&lt;br /&gt;Have been slowly improving the visual appearance of both players, working towards a first release&lt;br /&gt;&lt;b&gt;14 Sep 2009&lt;/b&gt;&lt;br /&gt;Finally a first beta release!&lt;br /&gt;&lt;b&gt;30 Oct 2009&lt;/b&gt;&lt;br /&gt;Volume control for the simple audio player&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>markheath</author><pubDate>Fri, 30 Oct 2009 16:42:46 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20091030044246P</guid></item><item><title>Updated Wiki: Home</title><link>http://slaudioplayer.codeplex.com/wikipage?version=22</link><description>&lt;div class="wikidoc"&gt;&lt;h2&gt;Overview&lt;/h2&gt;Silverlight Audio Player is a simple audio player that can be used for playing back one or more audio files. It currently supports two styles of player. The first plays a single file and is based on the visual design of the &lt;a href="http://wpaudioplayer.com/" class="externalLink"&gt;WordPress audio player&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;. The second allows you to play multiple files.&lt;br /&gt;
&lt;h2&gt;Installation&lt;/h2&gt;You need the AudioPlayer.xap file, and optionally an XML playlist file. Once you have those, you can&lt;br /&gt;load the Silverlight application in the same way you would any other. Remember to set up the size appropriately,&lt;br /&gt;and pass in the MP3 file Url or Playlist Url in the Initparams (see below).  By convention, Visual Studio likes&lt;br /&gt;XAP files to be stored in a ClientBin folder. You do not need to do this, and if you don't, you will need to adjust the&lt;br /&gt;relative paths from the examples shown below (i.e. no need for ..\ on your Urls).&lt;br /&gt;
&lt;h2&gt;Using the Single Player&lt;/h2&gt;To use the single player, simply pass init params following the to your silverlight object. The single player should be sized 295 pixels wide and 30 pixels high.&lt;br /&gt;    &lt;br /&gt;&lt;b&gt;InitParams:&lt;/b&gt; &lt;i&gt;Url=http://www.mydomain.com/audio/song-1.mp3,Artist=Artist Name,Title=Song title&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=slaudioplayer&amp;DownloadId=83520" alt="sl-audio-player.png" title="sl-audio-player.png" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;object data="data:application/x-silverlight-2," type="application/x-silverlight-2" style="height:30px;width:295px;"&gt;&lt;param name="source" value="http://www.wordandspirit.co.uk/software/AudioPlayer.xap"&gt;&lt;/param&gt;&lt;param name="windowless" value="true"&gt;&lt;/param&gt;&lt;param name="minRuntimeVersion" value="3.0.40624.0"&gt;&lt;/param&gt;&lt;param name="autoUpgrade" value="true"&gt;&lt;/param&gt;&lt;p&gt;You need to install Microsoft Silverlight to view this content. &lt;a href="http://go.microsoft.com/fwlink/?LinkID=149156&amp;v=3.0.40624.0" style="text-decoration:none;"&gt;Get Silverlight!&lt;br /&gt;&lt;img src="http://go.microsoft.com/fwlink/?LinkID=108181" alt="Get Microsoft Silverlight" style="border-style:none;" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;/object&gt;&lt;iframe style="visibility:hidden;height:0;width:0;border-width:0;"&gt;&lt;/iframe&gt;&lt;br /&gt;
&lt;h2&gt;Using the Multiple Player&lt;/h2&gt;The multi-player is still a work in progress. To launch the player with multiple files, you need to point it at a playlist. A playlist is&lt;br /&gt;an XML file containing the Url, Artist and Title for each track you wish to play.&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; ?&amp;gt;
&amp;lt;playlist&amp;gt;
  &amp;lt;audiofile url=&amp;quot;http://www.wordandspirit.co.uk/blog/audio/01-opposition-and-joy.mp3&amp;quot; title=&amp;quot;Opposition and Joy&amp;quot; artist=&amp;quot;Mark Heath&amp;quot; /&amp;gt;
  &amp;lt;audiofile url=&amp;quot;http://www.wordandspirit.co.uk/blog/audio/you-have-always-given.mp3&amp;quot; title=&amp;quot;You have always given&amp;quot; artist=&amp;quot;Mark Heath&amp;quot; /&amp;gt;
  &amp;lt;audiofile url=&amp;quot;http://www.wordandspirit.co.uk/blog/audio/dont-look-at-me.mp3&amp;quot; title=&amp;quot;Don't Look at Me&amp;quot; artist=&amp;quot;Mark Heath&amp;quot; /&amp;gt;
  &amp;lt;audiofile url=&amp;quot;http://www.wordandspirit.co.uk/blog/audio/holy-spirit-will-you-be.mp3&amp;quot; title=&amp;quot;Holy Spirit Will You Be&amp;quot; artist=&amp;quot;Mark Heath&amp;quot; /&amp;gt;
&amp;lt;/playlist&amp;gt;
&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;InitParams:&lt;/b&gt; &lt;i&gt;Playlist=../MyPlaylist.xml&lt;/i&gt;&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=slaudioplayer&amp;DownloadId=83521" alt="sl-multi-player.png" title="sl-multi-player.png" /&gt;&lt;br /&gt;
&lt;h2&gt;Project News&lt;/h2&gt;&lt;b&gt;1 Apr 2008&lt;/b&gt;&lt;br /&gt;The Single and Multi player controls are basically working now, but need a little bit of visual tidy-up before we make our first beta release. Also, the project structure will be simplified, as we do not really need a separate controls DLL.&lt;br /&gt;&lt;b&gt;17 May 2008&lt;/b&gt;&lt;br /&gt;Due to a known bug in Silverlight 2 beta 1 to do with customising vertical scrollbars, I am waiting for the next beta release before doing too much more work on this.&lt;br /&gt;&lt;b&gt;8 Jun 2008&lt;/b&gt;&lt;br /&gt;Updated to work with Silverlight 2 beta 2&lt;br /&gt;Work will focus on making the simple player and multi player look nice, at which point we will be ready for a first beta release&lt;br /&gt;&lt;b&gt;14 Oct 2008&lt;/b&gt;&lt;br /&gt;Updated to work with Silverlight 2 RTW&lt;br /&gt;&lt;b&gt;6 Jan 2009&lt;/b&gt;&lt;br /&gt;Have been slowly improving the visual appearance of both players, working towards a first release&lt;br /&gt;&lt;b&gt;14 Sep 2009&lt;/b&gt;&lt;br /&gt;Finally a first beta release!&lt;br /&gt;&lt;b&gt;30 Oct 2009&lt;/b&gt;&lt;br /&gt;Volume control for the simple audio player&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>markheath</author><pubDate>Fri, 30 Oct 2009 16:42:30 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20091030044230P</guid></item><item><title>Updated Wiki: Home</title><link>http://slaudioplayer.codeplex.com/wikipage?version=21</link><description>&lt;div class="wikidoc"&gt;&lt;h2&gt;Overview&lt;/h2&gt;Silverlight Audio Player is a simple audio player that can be used for playing back one or more audio files. It currently supports two styles of player. The first plays a single file and is based on the visual design of the &lt;a href="http://wpaudioplayer.com/" class="externalLink"&gt;WordPress audio player&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;. The second allows you to play multiple files.&lt;br /&gt;
&lt;h2&gt;Installation&lt;/h2&gt;You need the AudioPlayer.xap file, and optionally an XML playlist file. Once you have those, you can&lt;br /&gt;load the Silverlight application in the same way you would any other. Remember to set up the size appropriately,&lt;br /&gt;and pass in the MP3 file Url or Playlist Url in the Initparams (see below).  By convention, Visual Studio likes&lt;br /&gt;XAP files to be stored in a ClientBin folder. You do not need to do this, and if you don't, you will need to adjust the&lt;br /&gt;relative paths from the examples shown below (i.e. no need for ..\ on your Urls).&lt;br /&gt;
&lt;h2&gt;Using the Single Player&lt;/h2&gt;To use the single player, simply pass init params following the to your silverlight object. The single player should be sized 295 pixels wide and 30 pixels high.&lt;br /&gt;    &lt;br /&gt;&lt;b&gt;InitParams:&lt;/b&gt; &lt;i&gt;Url=http://www.mydomain.com/audio/song-1.mp3,Artist=Artist Name,Title=Song title&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=slaudioplayer&amp;DownloadId=83520" alt="sl-audio-player.png" title="sl-audio-player.png" /&gt;&lt;br /&gt;
&lt;h2&gt;Using the Multiple Player&lt;/h2&gt;The multi-player is still a work in progress. To launch the player with multiple files, you need to point it at a playlist. A playlist is&lt;br /&gt;an XML file containing the Url, Artist and Title for each track you wish to play.&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; ?&amp;gt;
&amp;lt;playlist&amp;gt;
  &amp;lt;audiofile url=&amp;quot;http://www.wordandspirit.co.uk/blog/audio/01-opposition-and-joy.mp3&amp;quot; title=&amp;quot;Opposition and Joy&amp;quot; artist=&amp;quot;Mark Heath&amp;quot; /&amp;gt;
  &amp;lt;audiofile url=&amp;quot;http://www.wordandspirit.co.uk/blog/audio/you-have-always-given.mp3&amp;quot; title=&amp;quot;You have always given&amp;quot; artist=&amp;quot;Mark Heath&amp;quot; /&amp;gt;
  &amp;lt;audiofile url=&amp;quot;http://www.wordandspirit.co.uk/blog/audio/dont-look-at-me.mp3&amp;quot; title=&amp;quot;Don't Look at Me&amp;quot; artist=&amp;quot;Mark Heath&amp;quot; /&amp;gt;
  &amp;lt;audiofile url=&amp;quot;http://www.wordandspirit.co.uk/blog/audio/holy-spirit-will-you-be.mp3&amp;quot; title=&amp;quot;Holy Spirit Will You Be&amp;quot; artist=&amp;quot;Mark Heath&amp;quot; /&amp;gt;
&amp;lt;/playlist&amp;gt;
&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;InitParams:&lt;/b&gt; &lt;i&gt;Playlist=../MyPlaylist.xml&lt;/i&gt;&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=slaudioplayer&amp;DownloadId=83521" alt="sl-multi-player.png" title="sl-multi-player.png" /&gt;&lt;br /&gt;
&lt;h2&gt;Project News&lt;/h2&gt;&lt;b&gt;1 Apr 2008&lt;/b&gt;&lt;br /&gt;The Single and Multi player controls are basically working now, but need a little bit of visual tidy-up before we make our first beta release. Also, the project structure will be simplified, as we do not really need a separate controls DLL.&lt;br /&gt;&lt;b&gt;17 May 2008&lt;/b&gt;&lt;br /&gt;Due to a known bug in Silverlight 2 beta 1 to do with customising vertical scrollbars, I am waiting for the next beta release before doing too much more work on this.&lt;br /&gt;&lt;b&gt;8 Jun 2008&lt;/b&gt;&lt;br /&gt;Updated to work with Silverlight 2 beta 2&lt;br /&gt;Work will focus on making the simple player and multi player look nice, at which point we will be ready for a first beta release&lt;br /&gt;&lt;b&gt;14 Oct 2008&lt;/b&gt;&lt;br /&gt;Updated to work with Silverlight 2 RTW&lt;br /&gt;&lt;b&gt;6 Jan 2009&lt;/b&gt;&lt;br /&gt;Have been slowly improving the visual appearance of both players, working towards a first release&lt;br /&gt;&lt;b&gt;14 Sep 2009&lt;/b&gt;&lt;br /&gt;Finally a first beta release!&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>markheath</author><pubDate>Fri, 30 Oct 2009 16:30:15 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20091030043015P</guid></item><item><title>Updated Wiki: Home</title><link>http://slaudioplayer.codeplex.com/Wiki/View.aspx?title=Home&amp;version=20</link><description>&lt;div class="wikidoc"&gt;&lt;h2&gt;Overview&lt;/h2&gt;Silverlight Audio Player is a simple audio player that can be used for playing back one or more audio files. It currently supports two styles of player. The first plays a single file and is based on the visual design of the &lt;a href="http://wpaudioplayer.com/" class="externalLink"&gt;WordPress audio player&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;. The second allows you to play multiple files.&lt;br /&gt;
&lt;h2&gt;Installation&lt;/h2&gt;You need the AudioPlayer.xap file, and optionally an XML playlist file. Once you have those, you can&lt;br /&gt;load the Silverlight application in the same way you would any other. Remember to set up the size appropriately,&lt;br /&gt;and pass in the MP3 file Url or Playlist Url in the Initparams (see below).  By convention, Visual Studio likes&lt;br /&gt;XAP files to be stored in a ClientBin folder. You do not need to do this, and if you don't, you will need to adjust the&lt;br /&gt;relative paths from the examples shown below (i.e. no need for ..\ on your Urls).&lt;br /&gt;
&lt;h2&gt;Using the Single Player&lt;/h2&gt;To use the single player, simply pass init params following the to your silverlight object. The single player should be sized 295 pixels wide and 30 pixels high.&lt;br /&gt;    &lt;br /&gt;&lt;b&gt;InitParams:&lt;/b&gt; &lt;i&gt;Url=http://www.mydomain.com/audio/song-1.mp3,Artist=Artist Name,Title=Song title&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=slaudioplayer&amp;DownloadId=83520" alt="sl-audio-player.png" title="sl-audio-player.png" /&gt;&lt;br /&gt;
&lt;h2&gt;Using the Multiple Player&lt;/h2&gt;The multi-player is still a work in progress. To launch the player with multiple files, you need to point it at a playlist. A playlist is&lt;br /&gt;an XML file containing the Url, Artist and Title for each track you wish to play.&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; ?&amp;gt;
&amp;lt;playlist&amp;gt;
  &amp;lt;audiofile url=&amp;quot;http://www.wordandspirit.co.uk/blog/audio/01-opposition-and-joy.mp3&amp;quot; title=&amp;quot;Opposition and Joy&amp;quot; artist=&amp;quot;Mark Heath&amp;quot; /&amp;gt;
  &amp;lt;audiofile url=&amp;quot;http://www.wordandspirit.co.uk/blog/audio/you-have-always-given.mp3&amp;quot; title=&amp;quot;You have always given&amp;quot; artist=&amp;quot;Mark Heath&amp;quot; /&amp;gt;
  &amp;lt;audiofile url=&amp;quot;http://www.wordandspirit.co.uk/blog/audio/dont-look-at-me.mp3&amp;quot; title=&amp;quot;Don't Look at Me&amp;quot; artist=&amp;quot;Mark Heath&amp;quot; /&amp;gt;
  &amp;lt;audiofile url=&amp;quot;http://www.wordandspirit.co.uk/blog/audio/holy-spirit-will-you-be.mp3&amp;quot; title=&amp;quot;Holy Spirit Will You Be&amp;quot; artist=&amp;quot;Mark Heath&amp;quot; /&amp;gt;
&amp;lt;/playlist&amp;gt;
&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;InitParams:&lt;/b&gt; &lt;i&gt;Playlist=../MyPlaylist.xml&lt;/i&gt;&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=slaudioplayer&amp;DownloadId=83521" alt="sl-multi-player.png" title="sl-multi-player.png" /&gt;&lt;br /&gt;
&lt;h2&gt;Project News&lt;/h2&gt;&lt;b&gt;1 Apr 2008&lt;/b&gt;&lt;br /&gt;The Single and Multi player controls are basically working now, but need a little bit of visual tidy-up before we make our first beta release. Also, the project structure will be simplified, as we do not really need a separate controls DLL.&lt;br /&gt;&lt;b&gt;17 May 2008&lt;/b&gt;&lt;br /&gt;Due to a known bug in Silverlight 2 beta 1 to do with customising vertical scrollbars, I am waiting for the next beta release before doing too much more work on this.&lt;br /&gt;&lt;b&gt;8 Jun 2008&lt;/b&gt;&lt;br /&gt;Updated to work with Silverlight 2 beta 2&lt;br /&gt;Work will focus on making the simple player and multi player look nice, at which point we will be ready for a first beta release&lt;br /&gt;&lt;b&gt;14 Oct 2008&lt;/b&gt;&lt;br /&gt;Updated to work with Silverlight 2 RTW&lt;br /&gt;&lt;b&gt;6 Jan 2009&lt;/b&gt;&lt;br /&gt;Have been slowly improving the visual appearance of both players, working towards a first release&lt;br /&gt;&lt;b&gt;14 Sep 2009&lt;/b&gt;&lt;br /&gt;Finally a first beta release!&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>markheath</author><pubDate>Mon, 14 Sep 2009 21:47:18 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20090914094718P</guid></item><item><title>Updated Wiki: Home</title><link>http://slaudioplayer.codeplex.com/Wiki/View.aspx?title=Home&amp;version=19</link><description>&lt;div class="wikidoc"&gt;&lt;h2&gt;Overview&lt;/h2&gt;Silverlight Audio Player is a simple audio player that can be used for playing back one or more audio files. It currently supports two styles of player. The first plays a single file and is based on the visual design of the &lt;a href="http://wpaudioplayer.com/" class="externalLink"&gt;WordPress audio player&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;. The second allows you to play multiple files.&lt;br /&gt;
&lt;h2&gt;Installation&lt;/h2&gt;You need the AudioPlayer.xap file, and optionally an XML playlist file. Once you have those, you can&lt;br /&gt;load the Silverlight application in the same way you would any other. Remember to set up the size appropriately,&lt;br /&gt;and pass in the MP3 file Url or Playlist Url in the Initparams (see below).  By convention, Visual Studio likes&lt;br /&gt;XAP files to be stored in a ClientBin folder. You do not need to do this, and if you don't, you will need to adjust the&lt;br /&gt;relative paths from the examples shown below (i.e. no need for ..\ on your Urls).&lt;br /&gt;
&lt;h2&gt;Using the Single Player&lt;/h2&gt;To use the single player, simply pass init params following the to your silverlight object. The single player should be sized 295 pixels wide and 30 pixels high.&amp;lt;/p&amp;gt;&lt;br /&gt;    &lt;br /&gt;&lt;b&gt;InitParams:&lt;/b&gt; &lt;i&gt;Url=http://www.mydomain.com/audio/song-1.mp3,Artist=Artist Name,Title=Song title&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=slaudioplayer&amp;DownloadId=83520" alt="sl-audio-player.png" title="sl-audio-player.png" /&gt;&lt;br /&gt;
&lt;h2&gt;Using the Multiple Player&lt;/h2&gt;The multi-player is still a work in progress. To launch the player with multiple files, you need to point it at a playlist. A playlist is&lt;br /&gt;an XML file containing the Url, Artist and Title for each track you wish to play.&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; ?&amp;gt;
&amp;lt;playlist&amp;gt;
  &amp;lt;audiofile url=&amp;quot;http://www.wordandspirit.co.uk/blog/audio/01-opposition-and-joy.mp3&amp;quot; title=&amp;quot;Opposition and Joy&amp;quot; artist=&amp;quot;Mark Heath&amp;quot; /&amp;gt;
  &amp;lt;audiofile url=&amp;quot;http://www.wordandspirit.co.uk/blog/audio/you-have-always-given.mp3&amp;quot; title=&amp;quot;You have always given&amp;quot; artist=&amp;quot;Mark Heath&amp;quot; /&amp;gt;
  &amp;lt;audiofile url=&amp;quot;http://www.wordandspirit.co.uk/blog/audio/dont-look-at-me.mp3&amp;quot; title=&amp;quot;Don't Look at Me&amp;quot; artist=&amp;quot;Mark Heath&amp;quot; /&amp;gt;
  &amp;lt;audiofile url=&amp;quot;http://www.wordandspirit.co.uk/blog/audio/holy-spirit-will-you-be.mp3&amp;quot; title=&amp;quot;Holy Spirit Will You Be&amp;quot; artist=&amp;quot;Mark Heath&amp;quot; /&amp;gt;
&amp;lt;/playlist&amp;gt;
&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;InitParams:&lt;/b&gt; &lt;i&gt;Playlist=../MyPlaylist.xml&lt;/i&gt;&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=slaudioplayer&amp;DownloadId=83521" alt="sl-multi-player.png" title="sl-multi-player.png" /&gt;&lt;br /&gt;
&lt;h2&gt;Project News&lt;/h2&gt;&lt;b&gt;1 Apr 2008&lt;/b&gt;&lt;br /&gt;The Single and Multi player controls are basically working now, but need a little bit of visual tidy-up before we make our first beta release. Also, the project structure will be simplified, as we do not really need a separate controls DLL.&lt;br /&gt;&lt;b&gt;17 May 2008&lt;/b&gt;&lt;br /&gt;Due to a known bug in Silverlight 2 beta 1 to do with customising vertical scrollbars, I am waiting for the next beta release before doing too much more work on this.&lt;br /&gt;&lt;b&gt;8 Jun 2008&lt;/b&gt;&lt;br /&gt;Updated to work with Silverlight 2 beta 2&lt;br /&gt;Work will focus on making the simple player and multi player look nice, at which point we will be ready for a first beta release&lt;br /&gt;&lt;b&gt;14 Oct 2008&lt;/b&gt;&lt;br /&gt;Updated to work with Silverlight 2 RTW&lt;br /&gt;&lt;b&gt;6 Jan 2009&lt;/b&gt;&lt;br /&gt;Have been slowly improving the visual appearance of both players, working towards a first release&lt;br /&gt;&lt;b&gt;14 Sep 2009&lt;/b&gt;&lt;br /&gt;Finally a first beta release!&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>markheath</author><pubDate>Mon, 14 Sep 2009 21:32:41 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20090914093241P</guid></item><item><title>Updated Wiki: Home</title><link>http://slaudioplayer.codeplex.com/Wiki/View.aspx?title=Home&amp;version=18</link><description>&lt;div class="wikidoc"&gt;&lt;h2&gt;Overview&lt;/h2&gt;Silverlight Audio Player is a simple audio player that can be used for playing back one or more audio files. It currently supports two styles of player. The first plays a single file and is based on the visual design of the &lt;a href="http://wpaudioplayer.com/" class="externalLink"&gt;WordPress audio player&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;. The second allows you to play multiple files.&lt;br /&gt;
&lt;h2&gt;Installation&lt;/h2&gt;You need the AudioPlayer.xap file, and optionally an XML playlist file. Once you have those, you can&lt;br /&gt;load the Silverlight application in the same way you would any other. Remember to set up the size appropriately,&lt;br /&gt;and pass in the MP3 file Url or Playlist Url in the Initparams (see below).  By convention, Visual Studio likes&lt;br /&gt;XAP files to be stored in a ClientBin folder. You do not need to do this, and if you don't, you will need to adjust the&lt;br /&gt;relative paths from the examples shown below (i.e. no need for ..\ on your Urls).&lt;br /&gt;&lt;br /&gt;!!Using the Single Player&lt;br /&gt;To use the single player, simply pass init params following the to your silverlight object. The single player should be sized 295 pixels wide and 30 pixels high.&amp;lt;/p&amp;gt;&lt;br /&gt;    &lt;br /&gt;&lt;b&gt;InitParams:&lt;/b&gt; &lt;i&gt;Url=http://www.mydomain.com/audio/song-1.mp3,Artist=Artist Name,Title=Song title&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=slaudioplayer&amp;DownloadId=83520" alt="sl-audio-player.png" title="sl-audio-player.png" /&gt;&lt;br /&gt;&lt;br /&gt;!!Using the Multiple Player&lt;br /&gt;The multi-player is still a work in progress. To launch the player with multiple files, you need to point it at a playlist. A playlist is&lt;br /&gt;an XML file containing the Url, Artist and Title for each track you wish to play.&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; ?&amp;gt;
&amp;lt;playlist&amp;gt;
  &amp;lt;audiofile url=&amp;quot;http://www.wordandspirit.co.uk/blog/audio/01-opposition-and-joy.mp3&amp;quot; title=&amp;quot;Opposition and Joy&amp;quot; artist=&amp;quot;Mark Heath&amp;quot; /&amp;gt;
  &amp;lt;audiofile url=&amp;quot;http://www.wordandspirit.co.uk/blog/audio/you-have-always-given.mp3&amp;quot; title=&amp;quot;You have always given&amp;quot; artist=&amp;quot;Mark Heath&amp;quot; /&amp;gt;
  &amp;lt;audiofile url=&amp;quot;http://www.wordandspirit.co.uk/blog/audio/dont-look-at-me.mp3&amp;quot; title=&amp;quot;Don't Look at Me&amp;quot; artist=&amp;quot;Mark Heath&amp;quot; /&amp;gt;
  &amp;lt;audiofile url=&amp;quot;http://www.wordandspirit.co.uk/blog/audio/holy-spirit-will-you-be.mp3&amp;quot; title=&amp;quot;Holy Spirit Will You Be&amp;quot; artist=&amp;quot;Mark Heath&amp;quot; /&amp;gt;
&amp;lt;/playlist&amp;gt;
&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;InitParams:&lt;/b&gt; &lt;i&gt;Playlist=../MyPlaylist.xml&lt;/i&gt;&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=slaudioplayer&amp;DownloadId=83521" alt="sl-multi-player.png" title="sl-multi-player.png" /&gt;&lt;br /&gt;
&lt;h2&gt;Project News&lt;/h2&gt;&lt;b&gt;1 Apr 2008&lt;/b&gt;&lt;br /&gt;The Single and Multi player controls are basically working now, but need a little bit of visual tidy-up before we make our first beta release. Also, the project structure will be simplified, as we do not really need a separate controls DLL.&lt;br /&gt;&lt;b&gt;17 May 2008&lt;/b&gt;&lt;br /&gt;Due to a known bug in Silverlight 2 beta 1 to do with customising vertical scrollbars, I am waiting for the next beta release before doing too much more work on this.&lt;br /&gt;&lt;b&gt;8 Jun 2008&lt;/b&gt;&lt;br /&gt;Updated to work with Silverlight 2 beta 2&lt;br /&gt;Work will focus on making the simple player and multi player look nice, at which point we will be ready for a first beta release&lt;br /&gt;&lt;b&gt;14 Oct 2008&lt;/b&gt;&lt;br /&gt;Updated to work with Silverlight 2 RTW&lt;br /&gt;&lt;b&gt;6 Jan 2009&lt;/b&gt;&lt;br /&gt;Have been slowly improving the visual appearance of both players, working towards a first release&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>markheath</author><pubDate>Mon, 14 Sep 2009 21:31:53 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20090914093153P</guid></item><item><title>Updated Wiki: Home</title><link>http://slaudioplayer.codeplex.com/Wiki/View.aspx?title=Home&amp;version=17</link><description>&lt;div class="wikidoc"&gt;&lt;h2&gt;Overview&lt;/h2&gt;Silverlight Audio Player is a simple audio player that can be used for playing back one or more audio files. It currently supports two styles of player. The first plays a single file and is based on the visual design of the &lt;a href="http://wpaudioplayer.com/" class="externalLink"&gt;WordPress audio player&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;. The second allows you to play multiple files.&lt;br /&gt;
&lt;h2&gt;Installation&lt;/h2&gt;You need the AudioPlayer.xap file, and optionally an XML playlist file. Once you have those, you can&lt;br /&gt;load the Silverlight application in the same way you would any other. Remember to set up the size appropriately,&lt;br /&gt;and pass in the MP3 file Url or Playlist Url in the Initparams (see below).  By convention, Visual Studio likes&lt;br /&gt;XAP files to be stored in a ClientBin folder. You do not need to do this, and if you don't, you will need to adjust the&lt;br /&gt;relative paths from the examples shown below (i.e. no need for ..\ on your Urls).&lt;br /&gt;&lt;br /&gt;!!Using the Single Player&lt;br /&gt;To use the single player, simply pass init params following the to your silverlight object. The single player should be sized 295 pixels wide and 30 pixels high.&amp;lt;/p&amp;gt;&lt;br /&gt;    &lt;br /&gt;&lt;b&gt;InitParams:&lt;/b&gt; &lt;i&gt;Url=http://www.mydomain.com/audio/song-1.mp3,Artist=Artist Name,Title=Song title&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=slaudioplayer&amp;DownloadId=83520" alt="sl-audio-player.png" title="sl-audio-player.png" /&gt;&lt;br /&gt;&lt;br /&gt;!!Using the Multiple Player&lt;br /&gt;The multi-player is still a work in progress. To launch the player with multiple files, you need to point it at a playlist. A playlist is&lt;br /&gt;an XML file containing the Url, Artist and Title for each track you wish to play.&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; ?&amp;gt;
&amp;lt;playlist&amp;gt;
  &amp;lt;audiofile url=&amp;quot;http://www.wordandspirit.co.uk/blog/audio/01-opposition-and-joy.mp3&amp;quot; title=&amp;quot;Opposition and Joy&amp;quot; artist=&amp;quot;Mark Heath&amp;quot; /&amp;gt;
  &amp;lt;audiofile url=&amp;quot;http://www.wordandspirit.co.uk/blog/audio/you-have-always-given.mp3&amp;quot; title=&amp;quot;You have always given&amp;quot; artist=&amp;quot;Mark Heath&amp;quot; /&amp;gt;
  &amp;lt;audiofile url=&amp;quot;http://www.wordandspirit.co.uk/blog/audio/dont-look-at-me.mp3&amp;quot; title=&amp;quot;Don't Look at Me&amp;quot; artist=&amp;quot;Mark Heath&amp;quot; /&amp;gt;
  &amp;lt;audiofile url=&amp;quot;http://www.wordandspirit.co.uk/blog/audio/holy-spirit-will-you-be.mp3&amp;quot; title=&amp;quot;Holy Spirit Will You Be&amp;quot; artist=&amp;quot;Mark Heath&amp;quot; /&amp;gt;
&amp;lt;/playlist&amp;gt;
&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;InitParams:&lt;/b&gt; &lt;i&gt;Playlist=../MyPlaylist.xml&lt;/i&gt;&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=slaudioplayer&amp;DownloadId=83520" alt="sl-audio-player.png" title="sl-audio-player.png" /&gt;&lt;br /&gt;
&lt;h2&gt;Project News&lt;/h2&gt;&lt;b&gt;1 Apr 2008&lt;/b&gt;&lt;br /&gt;The Single and Multi player controls are basically working now, but need a little bit of visual tidy-up before we make our first beta release. Also, the project structure will be simplified, as we do not really need a separate controls DLL.&lt;br /&gt;&lt;b&gt;17 May 2008&lt;/b&gt;&lt;br /&gt;Due to a known bug in Silverlight 2 beta 1 to do with customising vertical scrollbars, I am waiting for the next beta release before doing too much more work on this.&lt;br /&gt;&lt;b&gt;8 Jun 2008&lt;/b&gt;&lt;br /&gt;Updated to work with Silverlight 2 beta 2&lt;br /&gt;Work will focus on making the simple player and multi player look nice, at which point we will be ready for a first beta release&lt;br /&gt;&lt;b&gt;14 Oct 2008&lt;/b&gt;&lt;br /&gt;Updated to work with Silverlight 2 RTW&lt;br /&gt;&lt;b&gt;6 Jan 2009&lt;/b&gt;&lt;br /&gt;Have been slowly improving the visual appearance of both players, working towards a first release&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>markheath</author><pubDate>Mon, 14 Sep 2009 21:30:58 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20090914093058P</guid></item><item><title>Updated Wiki: Home</title><link>http://www.codeplex.com/slaudioplayer/Wiki/View.aspx?title=Home&amp;version=16</link><description>&lt;div class="wikidoc"&gt;
&lt;h2&gt;
Overview
&lt;/h2&gt;The Silverlight Audio Player project aims to provide a number of Silverlight applications for playback of audio in your website. The emphasis will be placed on making it as simple as possible to include on a webpage.&lt;br /&gt; &lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=slaudioplayer&amp;amp;DownloadId=54123" alt="AudioPlayer3.png" /&gt;&lt;br /&gt; &lt;br /&gt;The initial intention is to provide at least two players&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;A simple player for playback of one audio file including play, pause, repositioning, volume adjustment and display of song title and artist. The design of this player is inspired by the &lt;a href="http://wpaudioplayer.com/" class="externalLink"&gt;WordPress audio player&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.&lt;/li&gt;&lt;li&gt;A more complicated player supporting a playlist&lt;/li&gt;&lt;li&gt;Possibly also a very small player which just supports play and pause&lt;/li&gt;
&lt;/ul&gt;Once these are complete, we will investigate providing a variety of customised appearances for each player. Graphic designers with XAML skills are welcome to submit ideas.&lt;br /&gt;&lt;h2&gt;
Usage
&lt;/h2&gt;These how-to guides are still a work in progress so please be patient&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;How to &lt;a href="http://www.codeplex.com/slaudioplayer/Wiki/View.aspx?title=create%20a%20playlist&amp;amp;referringTitle=Home"&gt;create a playlist&lt;/a&gt;&lt;/li&gt;&lt;li&gt;How to &lt;a href="http://www.codeplex.com/slaudioplayer/Wiki/View.aspx?title=host%20on%20Silverlight%20Streaming&amp;amp;referringTitle=Home"&gt;host on Silverlight Streaming&lt;/a&gt;&lt;/li&gt;&lt;li&gt;How to &lt;a href="http://www.codeplex.com/slaudioplayer/Wiki/View.aspx?title=host%20on%20your%20own%20webspace&amp;amp;referringTitle=Home"&gt;host on your own webspace&lt;/a&gt;&lt;/li&gt;&lt;li&gt;How to &lt;a href="http://www.codeplex.com/slaudioplayer/Wiki/View.aspx?title=customize%20player%20appearance&amp;amp;referringTitle=Home"&gt;customize player appearance&lt;/a&gt;&lt;/li&gt;&lt;li&gt;How to &lt;a href="http://www.codeplex.com/slaudioplayer/Wiki/View.aspx?title=create%20custom%20players&amp;amp;referringTitle=Home"&gt;create custom players&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;h2&gt;
Project News
&lt;/h2&gt;&lt;b&gt;1 Apr 2008&lt;/b&gt;&lt;br /&gt;The Single and Multi player controls are basically working now, but need a little bit of visual tidy-up before we make our first beta release. Also, the project structure will be simplified, as we do not really need a separate controls DLL.&lt;br /&gt;&lt;b&gt;17 May 2008&lt;/b&gt;&lt;br /&gt;Due to a known bug in Silverlight 2 beta 1 to do with customising vertical scrollbars, I am waiting for the next beta release before doing too much more work on this.&lt;br /&gt;&lt;b&gt;8 Jun 2008&lt;/b&gt;&lt;br /&gt;Updated to work with Silverlight 2 beta 2&lt;br /&gt;Work will focus on making the simple player and multi player look nice, at which point we will be ready for a first beta release&lt;br /&gt;&lt;b&gt;14 Oct 2008&lt;/b&gt;&lt;br /&gt;Updated to work with Silverlight 2 RTW&lt;br /&gt;&lt;b&gt;6 Jan 2009&lt;/b&gt;&lt;br /&gt;Have been slowly improving the visual appearance of both players, working towards a first release&lt;br /&gt;
&lt;/div&gt;</description><author>markheath</author><pubDate>Wed, 07 Jan 2009 09:47:26 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20090107094726A</guid></item><item><title>Updated Wiki: Home</title><link>http://www.codeplex.com/slaudioplayer/Wiki/View.aspx?title=Home&amp;version=15</link><description>&lt;div class="wikidoc"&gt;
&lt;h2&gt;
Overview
&lt;/h2&gt;The Silverlight Audio Player project aims to provide a number of Silverlight applications for playback of audio in your website. The emphasis will be placed on making it as simple as possible to include on a webpage.&lt;br /&gt; &lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=slaudioplayer&amp;amp;DownloadId=54123" alt="AudioPlayer3.png" /&gt;&lt;br /&gt; &lt;br /&gt;The initial intention is to provide at least two players&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;A simple player for playback of one audio file including play, pause, repositioning, volume adjustment and display of song title and artist&lt;/li&gt;&lt;li&gt;A more complicated player supporting a playlist&lt;/li&gt;&lt;li&gt;Possibly also a very small player which just supports play and pause&lt;/li&gt;
&lt;/ul&gt;Once these are complete, we will investigate providing a variety of customised appearances for each player. Graphic designers with XAML skills are welcome to submit ideas.&lt;br /&gt;&lt;h2&gt;
Usage
&lt;/h2&gt;These how-to guides are still a work in progress so please be patient&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;How to &lt;a href="http://www.codeplex.com/slaudioplayer/Wiki/View.aspx?title=create%20a%20playlist&amp;amp;referringTitle=Home"&gt;create a playlist&lt;/a&gt;&lt;/li&gt;&lt;li&gt;How to &lt;a href="http://www.codeplex.com/slaudioplayer/Wiki/View.aspx?title=host%20on%20Silverlight%20Streaming&amp;amp;referringTitle=Home"&gt;host on Silverlight Streaming&lt;/a&gt;&lt;/li&gt;&lt;li&gt;How to &lt;a href="http://www.codeplex.com/slaudioplayer/Wiki/View.aspx?title=host%20on%20your%20own%20webspace&amp;amp;referringTitle=Home"&gt;host on your own webspace&lt;/a&gt;&lt;/li&gt;&lt;li&gt;How to &lt;a href="http://www.codeplex.com/slaudioplayer/Wiki/View.aspx?title=customize%20player%20appearance&amp;amp;referringTitle=Home"&gt;customize player appearance&lt;/a&gt;&lt;/li&gt;&lt;li&gt;How to &lt;a href="http://www.codeplex.com/slaudioplayer/Wiki/View.aspx?title=create%20custom%20players&amp;amp;referringTitle=Home"&gt;create custom players&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;h2&gt;
Project News
&lt;/h2&gt;&lt;b&gt;1 Apr 2008&lt;/b&gt;&lt;br /&gt;The Single and Multi player controls are basically working now, but need a little bit of visual tidy-up before we make our first beta release. Also, the project structure will be simplified, as we do not really need a separate controls DLL.&lt;br /&gt;&lt;b&gt;17 May 2008&lt;/b&gt;&lt;br /&gt;Due to a known bug in Silverlight 2 beta 1 to do with customising vertical scrollbars, I am waiting for the next beta release before doing too much more work on this.&lt;br /&gt;&lt;b&gt;8 Jun 2008&lt;/b&gt;&lt;br /&gt;Updated to work with Silverlight 2 beta 2&lt;br /&gt;Work will focus on making the simple player and multi player look nice, at which point we will be ready for a first beta release&lt;br /&gt;&lt;b&gt;14 Oct 2008&lt;/b&gt;&lt;br /&gt;Updated to work with Silverlight 2 RTW&lt;br /&gt;&lt;b&gt;6 Jan 2009&lt;/b&gt;&lt;br /&gt;Have been slowly improving the visual appearance of both players, working towards a first release&lt;br /&gt;
&lt;/div&gt;</description><author>markheath</author><pubDate>Tue, 06 Jan 2009 22:58:24 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20090106105824P</guid></item><item><title>Updated Wiki: Home</title><link>http://www.codeplex.com/slaudioplayer/Wiki/View.aspx?title=Home&amp;version=14</link><description>&lt;div class="wikidoc"&gt;
&lt;h2&gt;
Overview
&lt;/h2&gt;The Silverlight Audio Player project aims to provide a number of Silverlight applications for playback of audio in your website. The emphasis will be placed on making it as simple as possible to include on a webpage.&lt;br /&gt; &lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=slaudioplayer&amp;amp;DownloadId=36381" alt="SinglePlayer.png" /&gt;&lt;br /&gt; &lt;br /&gt;The initial intention is to provide at least two players&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;A simple player for playback of one audio file including play, pause, repositioning, volume adjustment and display of song title and artist&lt;/li&gt;&lt;li&gt;A more complicated player supporting a playlist&lt;/li&gt;&lt;li&gt;Possibly also a very small player which just supports play and pause&lt;/li&gt;
&lt;/ul&gt;Once these are complete, we will investigate providing a variety of customised appearances for each player. Graphic designers with XAML skills are welcome to submit ideas.&lt;br /&gt;&lt;h2&gt;
Usage
&lt;/h2&gt;These how-to guides are still a work in progress so please be patient&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;How to &lt;a href="http://www.codeplex.com/slaudioplayer/Wiki/View.aspx?title=create%20a%20playlist&amp;amp;referringTitle=Home"&gt;create a playlist&lt;/a&gt;&lt;/li&gt;&lt;li&gt;How to &lt;a href="http://www.codeplex.com/slaudioplayer/Wiki/View.aspx?title=host%20on%20Silverlight%20Streaming&amp;amp;referringTitle=Home"&gt;host on Silverlight Streaming&lt;/a&gt;&lt;/li&gt;&lt;li&gt;How to &lt;a href="http://www.codeplex.com/slaudioplayer/Wiki/View.aspx?title=host%20on%20your%20own%20webspace&amp;amp;referringTitle=Home"&gt;host on your own webspace&lt;/a&gt;&lt;/li&gt;&lt;li&gt;How to &lt;a href="http://www.codeplex.com/slaudioplayer/Wiki/View.aspx?title=customize%20player%20appearance&amp;amp;referringTitle=Home"&gt;customize player appearance&lt;/a&gt;&lt;/li&gt;&lt;li&gt;How to &lt;a href="http://www.codeplex.com/slaudioplayer/Wiki/View.aspx?title=create%20custom%20players&amp;amp;referringTitle=Home"&gt;create custom players&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;h2&gt;
Project News
&lt;/h2&gt;&lt;b&gt;1 Apr 2008&lt;/b&gt;&lt;br /&gt;The Single and Multi player controls are basically working now, but need a little bit of visual tidy-up before we make our first beta release. Also, the project structure will be simplified, as we do not really need a separate controls DLL.&lt;br /&gt;&lt;b&gt;17 May 2008&lt;/b&gt;&lt;br /&gt;Due to a known bug in Silverlight 2 beta 1 to do with customising vertical scrollbars, I am waiting for the next beta release before doing too much more work on this.&lt;br /&gt;&lt;b&gt;8 Jun 2008&lt;/b&gt;&lt;br /&gt;Updated to work with Silverlight 2 beta 2&lt;br /&gt;Work will focus on making the simple player and multi player look nice, at which point we will be ready for a first beta release&lt;br /&gt;&lt;b&gt;14 Oct 2008&lt;/b&gt;&lt;br /&gt;Updated to work with Silverlight 2 RTW&lt;br /&gt;
&lt;/div&gt;</description><author>markheath</author><pubDate>Wed, 15 Oct 2008 12:36:04 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20081015123604P</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/slaudioplayer/Wiki/View.aspx?title=Home&amp;version=13</link><description>&lt;div class="wikidoc"&gt;
&lt;h2&gt;
Overview
&lt;/h2&gt;The Silverlight Audio Player project aims to provide a number of Silverlight applications for playback of audio in your website. The emphasis will be placed on making it as simple as possible to include on a webpage.&lt;br /&gt; &lt;br /&gt;&lt;img src="http://www.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=slaudioplayer&amp;amp;DownloadId=36381" alt="SinglePlayer.png" /&gt;&lt;br /&gt; &lt;br /&gt;The initial intention is to provide at least two players&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;A simple player for playback of one audio file including play, pause, repositioning, volume adjustment and display of song title and artist&lt;/li&gt;&lt;li&gt;A more complicated player supporting a playlist&lt;/li&gt;&lt;li&gt;Possibly also a very small player which just supports play and pause&lt;/li&gt;
&lt;/ul&gt;Once these are complete, we will investigate providing a variety of customised appearances for each player. Graphic designers with XAML skills are welcome to submit ideas.&lt;br /&gt;&lt;h2&gt;
Usage
&lt;/h2&gt;These how-to guides are still a work in progress so please be patient&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;How to &lt;a href="http://www.codeplex.com/slaudioplayer/Wiki/View.aspx?title=create%20a%20playlist&amp;amp;referringTitle=Home"&gt;create a playlist&lt;/a&gt;&lt;/li&gt;&lt;li&gt;How to &lt;a href="http://www.codeplex.com/slaudioplayer/Wiki/View.aspx?title=host%20on%20Silverlight%20Streaming&amp;amp;referringTitle=Home"&gt;host on Silverlight Streaming&lt;/a&gt;&lt;/li&gt;&lt;li&gt;How to &lt;a href="http://www.codeplex.com/slaudioplayer/Wiki/View.aspx?title=host%20on%20your%20own%20webspace&amp;amp;referringTitle=Home"&gt;host on your own webspace&lt;/a&gt;&lt;/li&gt;&lt;li&gt;How to &lt;a href="http://www.codeplex.com/slaudioplayer/Wiki/View.aspx?title=customize%20player%20appearance&amp;amp;referringTitle=Home"&gt;customize player appearance&lt;/a&gt;&lt;/li&gt;&lt;li&gt;How to &lt;a href="http://www.codeplex.com/slaudioplayer/Wiki/View.aspx?title=create%20custom%20players&amp;amp;referringTitle=Home"&gt;create custom players&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;h2&gt;
Project News
&lt;/h2&gt;&lt;b&gt;1 Apr 2008&lt;/b&gt;&lt;br /&gt;The Single and Multi player controls are basically working now, but need a little bit of visual tidy-up before we make our first beta release. Also, the project structure will be simplified, as we do not really need a separate controls DLL.&lt;br /&gt;&lt;b&gt;17 May 2008&lt;/b&gt;&lt;br /&gt;Due to a known bug in Silverlight 2 beta 1 to do with customising vertical scrollbars, I am waiting for the next beta release before doing too much more work on this.&lt;br /&gt;&lt;b&gt;8 Jun 2008&lt;/b&gt;&lt;br /&gt;Updated to work with Silverlight 2 beta 2&lt;br /&gt;Work will focus on making the simple player and multi player look nice, at which point we will be ready for a first beta release&lt;br /&gt;
&lt;/div&gt;</description><author>markheath</author><pubDate>Sun, 08 Jun 2008 15:54:54 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20080608035454P</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/slaudioplayer/Wiki/View.aspx?title=Home&amp;version=12</link><description>&lt;div class="wikidoc"&gt;
&lt;h2&gt;
Overview
&lt;/h2&gt;The Silverlight Audio Player project aims to provide a number of Silverlight applications for playback of audio in your website. The emphasis will be placed on making it as simple as possible to include on a webpage.&lt;br /&gt; &lt;br /&gt;&lt;img src="http://www.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=slaudioplayer&amp;amp;DownloadId=29574" alt="AudioPlayer2.png" /&gt;&lt;br /&gt; &lt;br /&gt;The initial intention is to provide at least two players&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;A simple player for playback of one audio file including play, pause, repositioning, volume adjustment and display of song title and artist&lt;/li&gt;&lt;li&gt;A more complicated player supporting a playlist&lt;/li&gt;&lt;li&gt;Possibly also a very small player which just supports play and pause&lt;/li&gt;
&lt;/ul&gt;Once these are complete, we will investigate providing a variety of customised appearances for each player. Graphic designers with XAML skills are welcome to submit ideas.&lt;br /&gt;&lt;h2&gt;
Usage
&lt;/h2&gt;These how-to guides are still a work in progress so please be patient&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;How to &lt;a href="http://www.codeplex.com/slaudioplayer/Wiki/View.aspx?title=create%20a%20playlist&amp;amp;referringTitle=Home"&gt;create a playlist&lt;/a&gt;&lt;/li&gt;&lt;li&gt;How to &lt;a href="http://www.codeplex.com/slaudioplayer/Wiki/View.aspx?title=host%20on%20Silverlight%20Streaming&amp;amp;referringTitle=Home"&gt;host on Silverlight Streaming&lt;/a&gt;&lt;/li&gt;&lt;li&gt;How to &lt;a href="http://www.codeplex.com/slaudioplayer/Wiki/View.aspx?title=host%20on%20your%20own%20webspace&amp;amp;referringTitle=Home"&gt;host on your own webspace&lt;/a&gt;&lt;/li&gt;&lt;li&gt;How to &lt;a href="http://www.codeplex.com/slaudioplayer/Wiki/View.aspx?title=customize%20player%20appearance&amp;amp;referringTitle=Home"&gt;customize player appearance&lt;/a&gt;&lt;/li&gt;&lt;li&gt;How to &lt;a href="http://www.codeplex.com/slaudioplayer/Wiki/View.aspx?title=create%20custom%20players&amp;amp;referringTitle=Home"&gt;create custom players&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;h2&gt;
Project News
&lt;/h2&gt;&lt;b&gt;1 Apr 2008&lt;/b&gt;&lt;br /&gt;The Single and Multi player controls are basically working now, but need a little bit of visual tidy-up before we make our first beta release. Also, the project structure will be simplified, as we do not really need a separate controls DLL.&lt;br /&gt;&lt;b&gt;17 May 2008&lt;/b&gt;&lt;br /&gt;Due to a known bug in Silverlight 2 beta 1 to do with customising vertical scrollbars, I am waiting for the next beta release before doing too much more work on this.&lt;br /&gt;&lt;b&gt;8 Jun 2008&lt;/b&gt;&lt;br /&gt;Updated to work with Silverlight 2 beta 2&lt;br /&gt;Work will focus on making the simple player and multi player look nice, at which point we will be ready for a first beta release&lt;br /&gt;
&lt;/div&gt;</description><author>markheath</author><pubDate>Sun, 08 Jun 2008 15:39:24 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20080608033924P</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/slaudioplayer/Wiki/View.aspx?title=Home&amp;version=11</link><description>&lt;div class="wikidoc"&gt;
&lt;h2&gt;
Overview
&lt;/h2&gt;The Silverlight Audio Player project aims to provide a number of Silverlight applications for playback of audio in your website. The emphasis will be placed on making it as simple as possible to include on a webpage.&lt;br /&gt; &lt;br /&gt;&lt;img src="http://www.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=slaudioplayer&amp;amp;DownloadId=29574" alt="AudioPlayer2.png" /&gt;&lt;br /&gt; &lt;br /&gt;The initial intention is to provide at least two players&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;A simple player for playback of one audio file including play, pause, repositioning, volume adjustment and display of song title and artist&lt;/li&gt;&lt;li&gt;A more complicated player supporting a playlist&lt;/li&gt;&lt;li&gt;Possibly also a very small player which just supports play and pause&lt;/li&gt;
&lt;/ul&gt;Once these are complete, we will investigate providing a variety of customised appearances for each player. Graphic designers with XAML skills are welcome to submit ideas.&lt;br /&gt;&lt;h2&gt;
Usage
&lt;/h2&gt;These how-to guides are still a work in progress so please be patient&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;How to &lt;a href="http://www.codeplex.com/slaudioplayer/Wiki/View.aspx?title=create%20a%20playlist&amp;amp;referringTitle=Home"&gt;create a playlist&lt;/a&gt;&lt;/li&gt;&lt;li&gt;How to &lt;a href="http://www.codeplex.com/slaudioplayer/Wiki/View.aspx?title=host%20on%20Silverlight%20Streaming&amp;amp;referringTitle=Home"&gt;host on Silverlight Streaming&lt;/a&gt;&lt;/li&gt;&lt;li&gt;How to &lt;a href="http://www.codeplex.com/slaudioplayer/Wiki/View.aspx?title=host%20on%20your%20own%20webspace&amp;amp;referringTitle=Home"&gt;host on your own webspace&lt;/a&gt;&lt;/li&gt;&lt;li&gt;How to &lt;a href="http://www.codeplex.com/slaudioplayer/Wiki/View.aspx?title=customize%20player%20appearance&amp;amp;referringTitle=Home"&gt;customize player appearance&lt;/a&gt;&lt;/li&gt;&lt;li&gt;How to &lt;a href="http://www.codeplex.com/slaudioplayer/Wiki/View.aspx?title=create%20custom%20players&amp;amp;referringTitle=Home"&gt;create custom players&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;h2&gt;
Project News
&lt;/h2&gt;&lt;b&gt;1 Apr 2008&lt;/b&gt;&lt;br /&gt;The Single and Multi player controls are basically working now, but need a little bit of visual tidy-up before we make our first beta release. Also, the project structure will be simplified, as we do not really need a separate controls DLL.&lt;br /&gt;&lt;b&gt;17 May 2008&lt;/b&gt;&lt;br /&gt;Due to a known bug in Silverlight 2 beta 1 to do with customising vertical scrollbars, I am waiting for the next beta release before doing too much more work on this.&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;8 Jun 2008*&lt;/li&gt;
&lt;/ul&gt;Updated to work with Silverlight 2 beta 2&lt;br /&gt;Work will focus on making the simple player and multi player look nice, at which point we will be ready for a first beta release&lt;br /&gt;
&lt;/div&gt;</description><author>markheath</author><pubDate>Sun, 08 Jun 2008 15:38:55 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20080608033855P</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/slaudioplayer/Wiki/View.aspx?title=Home&amp;version=10</link><description>&lt;div class="wikidoc"&gt;
&lt;h2&gt;
Overview
&lt;/h2&gt;The Silverlight Audio Player project aims to provide a number of Silverlight applications for playback of audio in your website. The emphasis will be placed on making it as simple as possible to include on a webpage.&lt;br /&gt; &lt;br /&gt;&lt;img src="http://www.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=slaudioplayer&amp;amp;DownloadId=29574" alt="AudioPlayer2.png" /&gt;&lt;br /&gt; &lt;br /&gt;The initial intention is to provide at least two players&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;A simple player for playback of one audio file including play, pause, repositioning, volume adjustment and display of song title and artist&lt;/li&gt;&lt;li&gt;A more complicated player supporting a playlist&lt;/li&gt;&lt;li&gt;Possibly also a very small player which just supports play and pause&lt;/li&gt;
&lt;/ul&gt;Once these are complete, we will investigate providing a variety of customised appearances for each player. Graphic designers with XAML skills are welcome to submit ideas.&lt;br /&gt;&lt;h2&gt;
Usage
&lt;/h2&gt;These how-to guides are still a work in progress so please be patient&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;How to &lt;a href="http://www.codeplex.com/slaudioplayer/Wiki/View.aspx?title=create%20a%20playlist&amp;amp;referringTitle=Home"&gt;create a playlist&lt;/a&gt;&lt;/li&gt;&lt;li&gt;How to &lt;a href="http://www.codeplex.com/slaudioplayer/Wiki/View.aspx?title=host%20on%20Silverlight%20Streaming&amp;amp;referringTitle=Home"&gt;host on Silverlight Streaming&lt;/a&gt;&lt;/li&gt;&lt;li&gt;How to &lt;a href="http://www.codeplex.com/slaudioplayer/Wiki/View.aspx?title=host%20on%20your%20own%20webspace&amp;amp;referringTitle=Home"&gt;host on your own webspace&lt;/a&gt;&lt;/li&gt;&lt;li&gt;How to &lt;a href="http://www.codeplex.com/slaudioplayer/Wiki/View.aspx?title=customize%20player%20appearance&amp;amp;referringTitle=Home"&gt;customize player appearance&lt;/a&gt;&lt;/li&gt;&lt;li&gt;How to &lt;a href="http://www.codeplex.com/slaudioplayer/Wiki/View.aspx?title=create%20custom%20players&amp;amp;referringTitle=Home"&gt;create custom players&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;h2&gt;
Project News
&lt;/h2&gt;&lt;b&gt;1 Apr 2008&lt;/b&gt;&lt;br /&gt;The Single and Multi player controls are basically working now, but need a little bit of visual tidy-up before we make our first beta release. Also, the project structure will be simplified, as we do not really need a separate controls DLL.&lt;br /&gt;&lt;b&gt;17 May 2008&lt;/b&gt;&lt;br /&gt;Due to a known bug in Silverlight 2 beta 1 to do with customising vertical scrollbars, I am waiting for the next beta release before doing too much more work on this.&lt;br /&gt;
&lt;/div&gt;</description><author>markheath</author><pubDate>Sat, 17 May 2008 10:36:58 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20080517103658A</guid></item><item><title>UPDATED WIKI: create a playlist</title><link>http://www.codeplex.com/slaudioplayer/Wiki/View.aspx?title=create a playlist&amp;version=2</link><description>&lt;div class="wikidoc"&gt;
&lt;h2&gt;
How To Create a Playlist
&lt;/h2&gt; &lt;br /&gt;Silverlight Audio Player needs an XML playlist to know what audio file(s) you want it to play. This article explains the format of that playlist.&lt;br /&gt;By default, Silverlight Audio Player will be looking for a file called &lt;b&gt;playlist.xml&lt;/b&gt; in the same folder as the .xap file. You can however override this to point to any playlist file by using the initParams of the Silverlight control.&lt;br /&gt; &lt;br /&gt;&lt;b&gt;Playlist.xml&lt;/b&gt;&lt;br /&gt; &lt;br /&gt;&lt;pre&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; ?&amp;gt;
&amp;lt;playlist&amp;gt;
  &amp;lt;audiofile url=&amp;quot;test1.mp3&amp;quot; title=&amp;quot;Title One&amp;quot; artist=&amp;quot;Someone&amp;quot; /&amp;gt;
&amp;lt;/playlist&amp;gt;
&lt;/pre&gt; &lt;br /&gt;The title and artist are used by the players to display the information about the currently playing file. These are needed because Silverlight does not automatically extract this information directly from the MP3 file (I haven't tried with WMA).&lt;br /&gt; &lt;br /&gt;Currently, if your playlist contains only one audiofile entry, then you will get the SimplePlayer, and it it has more than one you will get the MultiPlayer. The intention is to enhance the playlist.xml syntax to allow you to choose which player to use, and to customise its appearance more.&lt;br /&gt;
&lt;/div&gt;</description><author>markheath</author><pubDate>Fri, 04 Apr 2008 10:16:57 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: create a playlist 20080404101657A</guid></item><item><title>UPDATED WIKI: create a playlist</title><link>http://www.codeplex.com/slaudioplayer/Wiki/View.aspx?title=create a playlist&amp;version=1</link><description>&lt;div class="wikidoc"&gt;
&lt;h2&gt;
How To Create a Playlist
&lt;/h2&gt; &lt;br /&gt;Silverlight Audio Player needs an XML playlist to know what audio file(s) you want it to play. This article explains the format of that playlist.&lt;br /&gt;By default, Silverlight Audio Player will be looking for a file called &lt;b&gt;playlist.xml&lt;/b&gt; in the same folder as the .xap file. You can however override this to point to any playlist file by using the initParams of the Silverlight control.&lt;br /&gt; &lt;br /&gt;&lt;b&gt;Playlist.xml&lt;/b&gt;&lt;br /&gt; &lt;br /&gt;&lt;pre&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; ?&amp;gt;
&amp;lt;playlist&amp;gt;
  &amp;lt;audiofile url=&amp;quot;test1.mp3&amp;quot; title=&amp;quot;Title One&amp;quot; artist=&amp;quot;Someone&amp;quot; /&amp;gt;
&amp;lt;/playlist&amp;gt;
&lt;/pre&gt;
&lt;/div&gt;</description><author>markheath</author><pubDate>Tue, 01 Apr 2008 13:14:15 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: create a playlist 20080401011415P</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/slaudioplayer/Wiki/View.aspx?title=Home&amp;version=9</link><description>&lt;div class="wikidoc"&gt;
&lt;h2&gt;
Overview
&lt;/h2&gt;The Silverlight Audio Player project aims to provide a number of Silverlight applications for playback of audio in your website. The emphasis will be placed on making it as simple as possible to include on a webpage.&lt;br /&gt; &lt;br /&gt;&lt;img src="http://www.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=slaudioplayer&amp;amp;DownloadId=29574" alt="AudioPlayer2.png" /&gt;&lt;br /&gt; &lt;br /&gt;The initial intention is to provide at least two players&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;A simple player for playback of one audio file including play, pause, repositioning, volume adjustment and display of song title and artist&lt;/li&gt;&lt;li&gt;A more complicated player supporting a playlist&lt;/li&gt;&lt;li&gt;Possibly also a very small player which just supports play and pause&lt;/li&gt;
&lt;/ul&gt;Once these are complete, we will investigate providing a variety of customised appearances for each player. Graphic designers with XAML skills are welcome to submit ideas.&lt;br /&gt;&lt;h2&gt;
Usage
&lt;/h2&gt;These how-to guides are still a work in progress so please be patient&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;How to &lt;a href="http://www.codeplex.com/slaudioplayer/Wiki/View.aspx?title=create%20a%20playlist&amp;amp;referringTitle=Home"&gt;create a playlist&lt;/a&gt;&lt;/li&gt;&lt;li&gt;How to &lt;a href="http://www.codeplex.com/slaudioplayer/Wiki/View.aspx?title=host%20on%20Silverlight%20Streaming&amp;amp;referringTitle=Home"&gt;host on Silverlight Streaming&lt;/a&gt;&lt;/li&gt;&lt;li&gt;How to &lt;a href="http://www.codeplex.com/slaudioplayer/Wiki/View.aspx?title=host%20on%20your%20own%20webspace&amp;amp;referringTitle=Home"&gt;host on your own webspace&lt;/a&gt;&lt;/li&gt;&lt;li&gt;How to &lt;a href="http://www.codeplex.com/slaudioplayer/Wiki/View.aspx?title=customize%20player%20appearance&amp;amp;referringTitle=Home"&gt;customize player appearance&lt;/a&gt;&lt;/li&gt;&lt;li&gt;How to &lt;a href="http://www.codeplex.com/slaudioplayer/Wiki/View.aspx?title=create%20custom%20players&amp;amp;referringTitle=Home"&gt;create custom players&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;h2&gt;
Project News
&lt;/h2&gt;&lt;b&gt;1 Apr 2008&lt;/b&gt;&lt;br /&gt;The Single and Multi player controls are basically working now, but need a little bit of visual tidy-up before we make our first beta release. Also, the project structure will be simplified, as we do not really need a separate controls DLL.&lt;br /&gt;
&lt;/div&gt;</description><author>markheath</author><pubDate>Tue, 01 Apr 2008 12:56:34 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20080401125634P</guid></item></channel></rss>