<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>Silverlight Video Player</title><link>http://slvideoplayer.codeplex.com/project/feeds/rss</link><description>A Silverlight Video player &amp;#40;for Silverlight 2 or higher&amp;#41;</description><item><title>Source code checked in, #94877</title><link>http://slvideoplayer.codeplex.com/SourceControl/changeset/changes/94877</link><description>Upgrade&amp;#58; New Version of LabDefaultTemplate.xaml. To upgrade your build definitions, please visit the following link&amp;#58; http&amp;#58;&amp;#47;&amp;#47;go.microsoft.com&amp;#47;fwlink&amp;#47;&amp;#63;LinkId&amp;#61;254563</description><author>Project Collection Service Accounts</author><pubDate>Mon, 01 Oct 2012 22:38:35 GMT</pubDate><guid isPermaLink="false">Source code checked in, #94877 20121001103835P</guid></item><item><title>Source code checked in, #94876</title><link>http://slvideoplayer.codeplex.com/SourceControl/changeset/changes/94876</link><description>Checked in by server upgrade</description><author>Project Collection Service Accounts</author><pubDate>Mon, 01 Oct 2012 22:31:06 GMT</pubDate><guid isPermaLink="false">Source code checked in, #94876 20121001103106P</guid></item><item><title>New Post: Differences between projects</title><link>http://slvideoplayer.codeplex.com/discussions/340847</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;I have tested the source code and I can see that there are 4 different projects:&lt;/p&gt;
&lt;p&gt;- MediaControl&lt;/p&gt;
&lt;p&gt;- VideoPlayer&lt;/p&gt;
&lt;p&gt;- VideoPlayer-min&lt;/p&gt;
&lt;p&gt;- VideoPlayerThemed&lt;/p&gt;
&lt;p&gt;What are the differences between them?&lt;/p&gt;
&lt;/div&gt;</description><author>RaYWoLF</author><pubDate>Wed, 22 Feb 2012 11:53:53 GMT</pubDate><guid isPermaLink="false">New Post: Differences between projects 20120222115353A</guid></item><item><title>New Post: Integrating video player in .xaml file</title><link>http://slvideoplayer.codeplex.com/discussions/32913</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Finally I found the solution in this post: http://forums.silverlight.net/t/29237.aspx/1&lt;/p&gt;
&lt;p&gt;&lt;em&gt;&lt;span style="color: #1f497d;" lang="EN-US"&gt;I was facing an issue while binding Image URL to an Image in Silverlight app. I solved it by publishing the application to IIS instead of running it from the file system . Refer to my blog for more details &lt;/span&gt;&lt;/em&gt;&lt;span style="color: #1f497d;" lang="EN-US"&gt;&lt;a href="http://nileshgule.blogspot.com/2011/06/ngtweet-part-5-big-bang-refactoring.html"&gt;http://nileshgule.blogspot.com/2011/06/ngtweet-part-5-big-bang-refactoring.html&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;</description><author>RaYWoLF</author><pubDate>Fri, 17 Feb 2012 11:39:25 GMT</pubDate><guid isPermaLink="false">New Post: Integrating video player in .xaml file 20120217113925A</guid></item><item><title>New Post: Integrating video player in .xaml file</title><link>http://slvideoplayer.codeplex.com/discussions/32913</link><description>&lt;div style="line-height: normal;"&gt;&lt;blockquote style="border: solid .1em #ccc; font-style: italic; margin: .25em 1em 0 1em; padding: 0 .25em 0 .25em;"&gt;&lt;strong&gt;hzhkx4 wrote:&lt;/strong&gt;&lt;br /&gt; Using the source code I have been able to do this with a few minor changes. Here's the steps I followed:&lt;br /&gt; &lt;br /&gt; &lt;br /&gt; 1. Created a subfolder on my project called "VideoPlayer" and copied all the source code (EXCEPT for the App.xaml.xs) from the VideoPlayer (or VideoProject- min) project here.&lt;br /&gt; &lt;br /&gt; 2. Copy the Application_Startup "foreach" code block and FormatUri() methods from the player's App.xaml.cs to my App.xaml.cs. I don't think the&lt;br /&gt; HtmlPage.RegisterScriptableObject line is needed since the only scriptable method (Player.SeekPlayback) isn't called from a script that I can see.&lt;br /&gt; &lt;br /&gt; 3. Copy\set the initParams in my HTMLtag:&lt;br /&gt;
&lt;p&gt;4. To avoid confusion with my Page I renamed the VideoPlayer's Page to Player&lt;br /&gt; &lt;br /&gt; * Renamed Page.xaml to Player.xaml (renames .xaml.xs as well).&lt;br /&gt; * Changed x:Class="VideoPlayer.Page" to x:Class="VideoPlayer.Player" in Player.xaml&lt;br /&gt; * Changed Page : UserControl to VideoPlayer : UserControl in Player.xaml.cs&lt;br /&gt; * Changed Page() to VideoPlayer() in Player.xaml.cs&lt;br /&gt; * After doing the above and compiling I was able to add a "Player" custom control to my page via Expression Blend, which nicely adds in the xmlns declaration.&lt;br /&gt; &lt;br /&gt; 5. Changed all references from "App" to "Application" in Player.xaml.cs, otherwise I had compile errors.&lt;br /&gt; &lt;br /&gt; 6. In order to make this control more usuable for my project, I added a few utility methods, shown below. I think all the media control functionality could\should be exposed, but that's just my opinion.&lt;br /&gt; &lt;br /&gt; Play\Stop is so my application can start\stop the video programatically.&lt;br /&gt; &lt;br /&gt; Mediacontrol.xaml.cs&lt;br /&gt; public void Play() { btnPlay.IsChecked = true; }&lt;br /&gt; public void Stop() {&lt;br /&gt; btnPlay.IsChecked = false;&lt;br /&gt; _media.Position = new TimeSpan(0);&lt;br /&gt; } &lt;br /&gt; &lt;br /&gt; Player.xaml.cs&lt;br /&gt; public void Play() { mediaControls.Play(); }&lt;br /&gt; public void Stop() { mediaControls.Stop(); }&lt;br /&gt; &lt;br /&gt; MediaReady event is so to enable\disable an external play button (initially the video player is hidden in my application).&lt;br /&gt; &lt;br /&gt; public event EventHandler MediaReady;&lt;br /&gt; private void mediaPlayer_MediaOpened(object sender, RoutedEventArgs e) {&lt;br /&gt; if (this.MediaReady != null)&lt;br /&gt; MediaReady(this, new EventArgs());&lt;br /&gt; } &lt;br /&gt; &lt;br /&gt; in Player.Page_Loaded() I added:&lt;br /&gt; mediaPlayer.MediaOpened += new RoutedEventHandler(mediaPlayer_MediaOpened);&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;I know that this thread is quite old, but maybe somebody can help me... I have integrated the control into my Silverlight 3 Application following this instructions. Everything seems to work OK (I can see the player on my app), but when I try to set the Source  property of the mediaPlayer, MediaFailed event is fired with this exception message "&lt;span&gt;AG_E_NETWORK_ERROR".&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt; Any idea?&lt;/p&gt;&lt;/div&gt;</description><author>RaYWoLF</author><pubDate>Fri, 17 Feb 2012 09:05:51 GMT</pubDate><guid isPermaLink="false">New Post: Integrating video player in .xaml file 20120217090551A</guid></item><item><title>Reviewed: 1.05 (Dec 12, 2011)</title><link>http://slvideoplayer.codeplex.com/releases/view/21749#ReviewBy-chacpk</link><description>Rated 4 Stars &amp;#40;out of 5&amp;#41; - its a very nice player&amp;#33;</description><author>chacpk</author><pubDate>Tue, 13 Dec 2011 06:34:58 GMT</pubDate><guid isPermaLink="false">Reviewed: 1.05 (Dec 12, 2011) 20111213063458A</guid></item><item><title>New Comment on "installation instructions"</title><link>http://slvideoplayer.codeplex.com/wikipage?title=installation instructions&amp;ANCHOR#C21420</link><description>you  said  this  plyer   format is  xap  but  if  we have  already  xap  lıke  our  main web site&amp;#39;s  xap  so  is it  can  be  2  xap  in  1  wep  projects  pls  ı  need  to  know</description><author>cakmak</author><pubDate>Wed, 02 Nov 2011 01:18:57 GMT</pubDate><guid isPermaLink="false">New Comment on "installation instructions" 20111102011857A</guid></item><item><title>New Post: A bug of Silverlight Video Player-Frame Skip </title><link>http://slvideoplayer.codeplex.com/discussions/277858</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; When we clicked the pause button and restart it using the PlayIcon which in the center of the player, it will play back and then go on playing.&lt;/p&gt;
&lt;p&gt;I have debugged it ,fortunately, I found that there is a &amp;nbsp;redudant code in the function called CenterPaly().Delete btnPlay_Checked(this, null),the bug is resolved.&lt;/p&gt;
&lt;/div&gt;</description><author>liangchao</author><pubDate>Tue, 01 Nov 2011 08:56:36 GMT</pubDate><guid isPermaLink="false">New Post: A bug of Silverlight Video Player-Frame Skip  20111101085636A</guid></item><item><title>New Post: Centering video vertically</title><link>http://slvideoplayer.codeplex.com/discussions/273422</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Just a FYI in case others run into this issue.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Out of the box, my video was docked to the top of the browser window, with a large black region left under the video (the webpage is just this silverlight control, set to width/height=100%).&amp;nbsp; It is nicer to have the video centered in the middle of the
 screen, to fix this, I had to download the source code and change the VerticalAlignment of the StackPanel that contains the MediaElement in Page.xaml from Stretch to Center.&lt;/p&gt;
&lt;/div&gt;</description><author>faxedhead</author><pubDate>Thu, 22 Sep 2011 06:29:18 GMT</pubDate><guid isPermaLink="false">New Post: Centering video vertically 20110922062918A</guid></item><item><title>New Post: mp4 h.264 outside ClientBin</title><link>http://slvideoplayer.codeplex.com/discussions/270689</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;I have the same problem (playing MP4 on another website in silverlight).&amp;nbsp; I added a mime type for .mp4 as 'video/mp4' to my IIS webserver (7.5), but still get the same error.&amp;nbsp; If i put the http address of the mp4 directly in the browse, I get a prompt to download the file, so at least the URL is correct.&amp;nbsp; Anything else I can check?&lt;/p&gt;&lt;/div&gt;</description><author>faxedhead</author><pubDate>Thu, 22 Sep 2011 02:20:01 GMT</pubDate><guid isPermaLink="false">New Post: mp4 h.264 outside ClientBin 20110922022001A</guid></item><item><title>New Post: can we use vlc streaming?</title><link>http://slvideoplayer.codeplex.com/discussions/271431</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Is there any way to use vlc streaming with this player??&lt;/p&gt;
&lt;p&gt;I am tring to play vlc media streaming to be played on the player.. Is there any way to play this??&lt;/p&gt;
&lt;/div&gt;</description><author>deepanshuchopra</author><pubDate>Sun, 04 Sep 2011 13:31:18 GMT</pubDate><guid isPermaLink="false">New Post: can we use vlc streaming? 20110904013118P</guid></item><item><title>New Post: mp4 h.264 outside ClientBin</title><link>http://slvideoplayer.codeplex.com/discussions/270689</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Damn, i was probably tired :)&lt;/p&gt;
&lt;p&gt;The problem was because my IIS webserver doesn't have MIME type for &lt;strong&gt;mp4 &lt;/strong&gt;so can't allow access to such file until i create the MIME type in it.&lt;/p&gt;&lt;/div&gt;</description><author>EpiniX</author><pubDate>Sun, 28 Aug 2011 19:04:31 GMT</pubDate><guid isPermaLink="false">New Post: mp4 h.264 outside ClientBin 20110828070431P</guid></item><item><title>New Post: mp4 h.264 outside ClientBin</title><link>http://slvideoplayer.codeplex.com/discussions/270689</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Hi all,&lt;/p&gt;
&lt;p&gt;I'm trying to use this app with video i've recorded.&lt;/p&gt;
&lt;p&gt;My problem is about directory and video format file :&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;WMV :
&lt;ul&gt;
&lt;li&gt;file inside ClientBin : working &lt;/li&gt;&lt;li&gt;file outside ClientBin : working &lt;/li&gt;&lt;li&gt;file on another website : working &lt;/li&gt;&lt;/ul&gt;
&lt;/li&gt;&lt;li&gt;MP4 (H.264) :
&lt;ul&gt;
&lt;li&gt;file inside ClientBin : working &lt;/li&gt;&lt;li&gt;file outside ClientBin : &lt;span style="color:#ff0000"&gt;not working&lt;/span&gt; &lt;/li&gt;&lt;li&gt;&lt;strong&gt;file on another website : &lt;span style="color:#ff0000"&gt;not working&lt;/span&gt;&lt;/strong&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;&lt;span style="color:#ff0000"&gt;&lt;span style="color:#000000"&gt;i just wonder why for the mp4 file format, it can't be loaded as well as a wmv file when on the asp.net file i write :&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;div style="color:black; background-color:white"&gt;
&lt;pre&gt;&lt;span style="color:blue"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color:#a31515"&gt;asp&lt;/span&gt;&lt;span style="color:blue"&gt;:&lt;/span&gt;&lt;span style="color:#a31515"&gt;Silverlight&lt;/span&gt; &lt;span style="color:red"&gt;ID&lt;/span&gt;&lt;span style="color:blue"&gt;=&lt;/span&gt;&lt;span style="color:blue"&gt;&amp;quot;Xaml1&amp;quot;&lt;/span&gt; &lt;span style="color:red"&gt;runat&lt;/span&gt;&lt;span style="color:blue"&gt;=&lt;/span&gt;&lt;span style="color:blue"&gt;&amp;quot;server&amp;quot;&lt;/span&gt;
&lt;span style="color:red"&gt;    Source&lt;/span&gt;&lt;span style="color:blue"&gt;=&lt;/span&gt;&lt;span style="color:blue"&gt;&amp;quot;~/ClientBin/VideoPlayer.xap&amp;quot;&lt;/span&gt;
    &lt;span style="color:red"&gt;MinimumVersion&lt;/span&gt;&lt;span style="color:blue"&gt;=&lt;/span&gt;&lt;span style="color:blue"&gt;&amp;quot;2.0.31005&amp;quot;&lt;/span&gt;
    &lt;span style="color:red"&gt;Width&lt;/span&gt;&lt;span style="color:blue"&gt;=&lt;/span&gt;&lt;span style="color:blue"&gt;&amp;quot;455&amp;quot;&lt;/span&gt; &lt;span style="color:red"&gt;Height&lt;/span&gt;&lt;span style="color:blue"&gt;=&lt;/span&gt;&lt;span style="color:blue"&gt;&amp;quot;305&amp;quot;&lt;/span&gt; &lt;span style="color:red"&gt;InitParameters&lt;/span&gt;&lt;span style="color:blue"&gt;=&lt;/span&gt;&lt;span style="color:blue"&gt;&amp;quot;m=http://storage.epinix.net/006.mp4&amp;quot;&lt;/span&gt; &lt;span style="color:blue"&gt;/&amp;gt;&lt;/span&gt;
&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;In addition, i have this error with the mp4 file trying to be loaded :&lt;/p&gt;
&lt;p&gt;Erreur&amp;nbsp;: Sys.InvalidOperationException: MediaError error #4001 in control 'ctl00_CPHMain_Xaml1': AG_E_NETWORK_ERROR&lt;/p&gt;
&lt;p&gt;If someone has a hint or a solution, i searched already on this forum without success.&lt;/p&gt;
&lt;p&gt;Thanks for any help :-)&lt;/p&gt;
&lt;/div&gt;</description><author>EpiniX</author><pubDate>Sun, 28 Aug 2011 17:18:53 GMT</pubDate><guid isPermaLink="false">New Post: mp4 h.264 outside ClientBin 20110828051853P</guid></item><item><title>New Post: How to play media hosted on the same server as the SL app?</title><link>http://slvideoplayer.codeplex.com/discussions/267463</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Solved with:&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;lt;param name="initParams" value="m=&amp;lt;%="http://" + Request.ServerVariables["SERVER_NAME"] + ":" + Request.ServerVariables["SERVER_PORT"] + "/media/my_video.wmv"%&amp;gt;"/&amp;gt;&lt;/p&gt;&lt;/div&gt;</description><author>enalposi</author><pubDate>Mon, 08 Aug 2011 13:48:02 GMT</pubDate><guid isPermaLink="false">New Post: How to play media hosted on the same server as the SL app? 20110808014802P</guid></item><item><title>New Post: How to play media hosted on the same server as the SL app?</title><link>http://slvideoplayer.codeplex.com/discussions/267463</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;SVP is working fine, thanks! We can play files from ClientBin or using a HTTP URL.&lt;/p&gt;
&lt;p&gt;Is there a simple way to reference a file hosted on the server the SL app is originating from (i.e. media in a &amp;lt;proj&amp;gt;.Web/media folder)?&lt;/p&gt;
&lt;p&gt;We want to avoid hard-coding the URL. It should dynamically work, regardless if deployed in Dev env or Prod.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thanks!&lt;/p&gt;&lt;/div&gt;</description><author>enalposi</author><pubDate>Tue, 02 Aug 2011 15:00:59 GMT</pubDate><guid isPermaLink="false">New Post: How to play media hosted on the same server as the SL app? 20110802030059P</guid></item><item><title>New Comment on "installation instructions"</title><link>http://slvideoplayer.codeplex.com/wikipage?title=installation instructions&amp;ANCHOR#C19593</link><description>Does any one knows how to &amp;#34;autoplay&amp;#34; this Video player&amp;#63;</description><author>dohkobakala</author><pubDate>Thu, 12 May 2011 01:09:24 GMT</pubDate><guid isPermaLink="false">New Comment on "installation instructions" 20110512010924A</guid></item><item><title>New Comment on "installation instructions"</title><link>http://slvideoplayer.codeplex.com/wikipage?title=installation instructions&amp;ANCHOR#C19592</link><description>&amp;#64;futurefiles I&amp;#180;m using Jquery for write the object and JCarousel to show video thumbnails and i send the new video dynamically through Jquery functions</description><author>dohkobakala</author><pubDate>Thu, 12 May 2011 01:08:59 GMT</pubDate><guid isPermaLink="false">New Comment on "installation instructions" 20110512010859A</guid></item><item><title>New Post: bug on the controls bar</title><link>http://slvideoplayer.codeplex.com/discussions/255393</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Hello,&lt;br&gt;
first of all thank you for sharing this player. It allowed me to learn a lot of stuff about silverlight.&lt;/p&gt;
&lt;p&gt;I found a small bug with controls bar.&lt;/p&gt;
&lt;p&gt;Steps to reproduce: set autohide=true, move mouse on video then move mouse out of video before control bar reach its final position. Now control bar won't autohide anymore.&lt;br&gt;
To make it autohide again you have to use some of the controls (i.e. change the volume).&lt;/p&gt;
&lt;p&gt;Workaround: hide control bar with javascript if it's visible for more than x seconds.&lt;/p&gt;
&lt;p&gt;var visicount=0;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;function hidecontrols() {&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; player=document.getElementById('VideoPlayer');&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; player.content.findName(&amp;quot;PlayIcon&amp;quot;).Visibility = &amp;quot;Collapsed&amp;quot;;&amp;nbsp;
&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; player.content.findName(&amp;quot;controlsContainer&amp;quot;).Visibility = &amp;quot;Collapsed&amp;quot;;&amp;nbsp;
&lt;br&gt;
&amp;nbsp; }&lt;/p&gt;
&lt;p&gt;&amp;nbsp; function updatetime() {&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; player=document.getElementById('VideoPlayer');&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; if (player &amp;amp;&amp;amp; player.content) {&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (player.content.findName('mediaPlayer')) {&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; document.getElementById('Position').innerHTML=Math.round(player.content.findName('mediaPlayer').Position.Seconds);&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (player.content.findName(&amp;quot;controlsContainer&amp;quot;).Visibility!=&amp;quot;Collapsed&amp;quot;) {&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; visicount&amp;#43;&amp;#43;;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (visicount&amp;gt;6) {&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; hidecontrols();&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; visicount=0;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; } else {&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; visicount=0;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; setTimeout('updatetime()',1000);&lt;br&gt;
&amp;nbsp; }&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;updatetime();&lt;/p&gt;
&lt;/div&gt;</description><author>vezz</author><pubDate>Wed, 27 Apr 2011 08:23:10 GMT</pubDate><guid isPermaLink="false">New Post: bug on the controls bar 20110427082310A</guid></item><item><title>New Post: changing colors</title><link>http://slvideoplayer.codeplex.com/discussions/248837</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;i would like to change the appearance of this player to silver-red look...&lt;/p&gt;
&lt;p&gt;is it poslible to&amp;nbsp;change colors of&amp;nbsp; buttons, sliders, main window ??&lt;/p&gt;&lt;/div&gt;</description><author>safe18</author><pubDate>Tue, 08 Mar 2011 09:57:46 GMT</pubDate><guid isPermaLink="false">New Post: changing colors 20110308095746A</guid></item><item><title>New Post: Disable sound</title><link>http://slvideoplayer.codeplex.com/discussions/246477</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Thanks,&amp;nbsp; i'll first take a look at the source code.&lt;/p&gt;&lt;/div&gt;</description><author>lucwuyts</author><pubDate>Thu, 17 Feb 2011 15:59:07 GMT</pubDate><guid isPermaLink="false">New Post: Disable sound 20110217035907P</guid></item></channel></rss>