<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Streaming Windows Media Audio to Mobile Devices</title>
	<atom:link href="http://learnthemobileweb.com/2010/01/streaming-windows-media-audio-to-mobile-devices/feed/" rel="self" type="application/rss+xml" />
	<link>http://learnthemobileweb.com/2010/01/streaming-windows-media-audio-to-mobile-devices/</link>
	<description>how to develop standards-compliant and usable mobile web applications</description>
	<lastBuildDate>Tue, 20 Jul 2010 12:07:55 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Amy</title>
		<link>http://learnthemobileweb.com/2010/01/streaming-windows-media-audio-to-mobile-devices/comment-page-1/#comment-4632</link>
		<dc:creator>Amy</dc:creator>
		<pubDate>Sat, 05 Jun 2010 06:28:22 +0000</pubDate>
		<guid isPermaLink="false">http://learnthemobileweb.com/?p=351#comment-4632</guid>
		<description>[...]     Streaming Windows Media Audio to Mobile Devices &#124; Learn the ...Badass 87 Radio EMBED Badass 87 RadioBadass 87 Radio, bringing you what&#039;s next in a gotta have it [...]</description>
		<content:encoded><![CDATA[<p>[...]     Streaming Windows Media Audio to Mobile Devices | Learn the &#8230;Badass 87 Radio EMBED Badass 87 RadioBadass 87 Radio, bringing you what&#8217;s next in a gotta have it [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mmplayer1</title>
		<link>http://learnthemobileweb.com/2010/01/streaming-windows-media-audio-to-mobile-devices/comment-page-1/#comment-4104</link>
		<dc:creator>mmplayer1</dc:creator>
		<pubDate>Thu, 01 Apr 2010 22:39:36 +0000</pubDate>
		<guid isPermaLink="false">http://learnthemobileweb.com/?p=351#comment-4104</guid>
		<description>[...]     Streaming Windows Media Audio to Mobile Devices &#124; Learn the ...Badass 87 Radio EMBED Badass 87 RadioBadass 87 Radio, bringing you what&#039;s next in a gotta have it [...]</description>
		<content:encoded><![CDATA[<p>[...]     Streaming Windows Media Audio to Mobile Devices | Learn the &#8230;Badass 87 Radio EMBED Badass 87 RadioBadass 87 Radio, bringing you what&#39;s next in a gotta have it [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gail Rahn Frederick</title>
		<link>http://learnthemobileweb.com/2010/01/streaming-windows-media-audio-to-mobile-devices/comment-page-1/#comment-3570</link>
		<dc:creator>Gail Rahn Frederick</dc:creator>
		<pubDate>Thu, 25 Feb 2010 14:24:30 +0000</pubDate>
		<guid isPermaLink="false">http://learnthemobileweb.com/?p=351#comment-3570</guid>
		<description>Hi Ant,

If you read my article - you&#039;ll see that I declare that I am neither a Windows Media expert nor an expert in the IE Mobile browser. The thrust of my article is that streaming Windows Media audio in a mobile browser is a dicey proposition, at best, for mobile devices with OSes that aren&#039;t Windows Mobile.

That said - I did do some research and have a few more syntax examples for you to try. Unfortunately, Microsoft hasn&#039;t provided an authoritative example of integrating its mobile media player into IE Mobile. Look at this &lt;a href=&quot;http://msdn.microsoft.com/en-us/library/ms834433.aspx&quot; rel=&quot;nofollow&quot;&gt;Multimedia Streaming on Microsoft Windows CE 3.0&lt;/a&gt; article @ MSDN and &lt;a href=&quot;http://forums.asp.net/p/1243272/2285063.aspx&quot; rel=&quot;nofollow&quot;&gt;Embedded Media Player in Mobile Web Form&lt;/a&gt; forum thread @ ASP.NET forums.

The articles provide two related syntax examples.

Here&#039;s the MSDN code sample:

&lt;code&gt;
&lt;object id=&quot;MediaPlayer&quot; classid=&quot;CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95&quot; type=&quot;application/x-oleobject&quot; width=&quot;320&quot; height=&quot;240&quot; style=&quot;position:absolute; left:50px;top:50px;&quot; &gt;
&lt;param name=&quot;FileName&quot; value=&quot;http://example.microsoft.com/media/sample.asf&quot;&gt;
  &lt;param name=&quot;ShowControls&quot; value=&quot;1&quot;&gt;
  &lt;param name=&quot;ShowStatusBar&quot; value=&quot;1&quot;&gt;
&lt;/object&gt;
&lt;/code&gt;

And the sample from the ASP.NET forum thread:

&lt;code&gt;
&lt;object id=&quot;MMPlayer1&quot;
codebase=&quot;http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701&quot;
type=&quot;application/x-oleobject&quot; height=&quot;238&quot; width=&quot;240&quot; align=&quot;middle&quot; 
classid=&quot;CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95&quot;&gt;
&lt;param name=&quot;FileName&quot; value=&quot;your video&#039;s url that you typed in media player&quot;/&gt;
&lt;param name=&quot;ShowControls&quot; value=&quot;1&quot;/&gt;
&lt;param name=&quot;ShowStatusBar&quot; value=&quot;1&quot;/&gt;
&lt;param name=&quot;ShowDisplay&quot; value=&quot;0&quot;/&gt;
&lt;param name=&quot;DefaultFrame&quot; value=&quot;Slide&quot;/&gt;
&lt;param name=&quot;PlayCount&quot; value=&quot;1&quot;/&gt;
&lt;param name=&quot;Autostart&quot; value=&quot;1&quot;/&gt;
&lt;embed
src=&quot;your video&#039;s url that you typed in media player&quot; width=&quot;240&quot; height=&quot;238&quot; autostart=&quot;1&quot; loop=&quot;0&quot;
align=&quot;absmiddle&quot; type=&quot;application/x-mplayer2&quot;
pluginspage=&quot;http://www.microsoft.com/Windows/MediaPlayer/download/default.asp&quot;
showcontrols=&quot;1&quot; showdisplay=&quot;0&quot; showstatusbar=&quot;1&quot; &gt; &lt;/embed&gt;
&lt;/object&gt;
&lt;/code&gt;

The differences between these examples and mine are:

&lt;ul&gt;
	&lt;li&gt;My example uses the &lt;code&gt;object&lt;code&gt; and &lt;code&gt;embed&lt;/code&gt; tags. The MSDN example uses only the &lt;code&gt;object&lt;code&gt; tag. I&#039;ve read that when targeting IE Mobile only, the &lt;code&gt;embed&lt;/code&gt; tag can be omitted because its purpose is compatibility with non-IE browsers that do not run ActiveX controls.&lt;/li&gt;
	&lt;li&gt;Both examples here include the &lt;code&gt;type&lt;/code&gt; attribute for the object tag.&lt;/li&gt;
	&lt;li&gt;My example sets several options for the Mobile Media Player ActiveX control using &lt;code&gt;param&lt;/code&gt; tags and attributes of the &lt;code&gt;embed&lt;/code&gt; element.&lt;/li&gt;
&lt;/ul&gt;

I no longer have a Windows Mobile device and can&#039;t test these examples. Please do report back the syntax that works in your tests so I can update this thread!</description>
		<content:encoded><![CDATA[<p>Hi Ant,</p>
<p>If you read my article &#8211; you&#8217;ll see that I declare that I am neither a Windows Media expert nor an expert in the IE Mobile browser. The thrust of my article is that streaming Windows Media audio in a mobile browser is a dicey proposition, at best, for mobile devices with OSes that aren&#8217;t Windows Mobile.</p>
<p>That said &#8211; I did do some research and have a few more syntax examples for you to try. Unfortunately, Microsoft hasn&#8217;t provided an authoritative example of integrating its mobile media player into IE Mobile. Look at this <a href="http://msdn.microsoft.com/en-us/library/ms834433.aspx" rel="nofollow">Multimedia Streaming on Microsoft Windows CE 3.0</a> article @ MSDN and <a href="http://forums.asp.net/p/1243272/2285063.aspx" rel="nofollow">Embedded Media Player in Mobile Web Form</a> forum thread @ ASP.NET forums.</p>
<p>The articles provide two related syntax examples.</p>
<p>Here&#8217;s the MSDN code sample:</p>
<p><code><br />
&lt;object id="MediaPlayer" classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95" type="application/x-oleobject" width="320" height="240" style="position:absolute; left:50px;top:50px;" &gt;<br />
&lt;param name="FileName" value="http://example.microsoft.com/media/sample.asf"&gt;<br />
  &lt;param name="ShowControls" value="1"&gt;<br />
  &lt;param name="ShowStatusBar" value="1"&gt;<br />
&lt;/object&gt;<br />
</code></p>
<p>And the sample from the ASP.NET forum thread:</p>
<p><code><br />
&lt;object id="MMPlayer1"<br />
codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701"<br />
type="application/x-oleobject" height="238" width="240" align="middle"<br />
classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95"&gt;<br />
&lt;param name="FileName" value="your video's url that you typed in media player"/&gt;<br />
&lt;param name="ShowControls" value="1"/&gt;<br />
&lt;param name="ShowStatusBar" value="1"/&gt;<br />
&lt;param name="ShowDisplay" value="0"/&gt;<br />
&lt;param name="DefaultFrame" value="Slide"/&gt;<br />
&lt;param name="PlayCount" value="1"/&gt;<br />
&lt;param name="Autostart" value="1"/&gt;<br />
&lt;embed<br />
src="your video's url that you typed in media player" width="240" height="238" autostart="1" loop="0"<br />
align="absmiddle" type="application/x-mplayer2"<br />
pluginspage="http://www.microsoft.com/Windows/MediaPlayer/download/default.asp"<br />
showcontrols="1" showdisplay="0" showstatusbar="1" &gt; &lt;/embed&gt;<br />
&lt;/object&gt;<br />
</code></p>
<p>The differences between these examples and mine are:</p>
<ul>
<li>My example uses the <code>object</code><code> and </code><code>embed</code> tags. The MSDN example uses only the <code>object</code><code> tag. I've read that when targeting IE Mobile only, the </code><code>embed</code> tag can be omitted because its purpose is compatibility with non-IE browsers that do not run ActiveX controls.</li>
<li>Both examples here include the <code>type</code> attribute for the object tag.</li>
<li>My example sets several options for the Mobile Media Player ActiveX control using <code>param</code> tags and attributes of the <code>embed</code> element.</li>
</ul>
<p>I no longer have a Windows Mobile device and can't test these examples. Please do report back the syntax that works in your tests so I can update this thread!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ant</title>
		<link>http://learnthemobileweb.com/2010/01/streaming-windows-media-audio-to-mobile-devices/comment-page-1/#comment-3550</link>
		<dc:creator>Ant</dc:creator>
		<pubDate>Wed, 24 Feb 2010 18:16:03 +0000</pubDate>
		<guid isPermaLink="false">http://learnthemobileweb.com/?p=351#comment-3550</guid>
		<description>Hello,

I&#039;m trying to embed a WMA stream onto a client&#039;s mobile-friendly page and am having all KINDS of problems... Any time I use the  tag to embed, it returns a NULL object and doesn&#039;t display, on the mobile (test platform is WM6.1).

Recently I&#039;ve learned (as I&#039;m new to developing for mobile devices) that the  tag is unsupported, ergo not a viable option for embedding even a Windows Media player.

That said, I&#039;ve noticed that using your code, as an example for embedding on a  mobile-device, even *IT* doesn&#039;t work.

Any help?  

The URL is the same as supplied, above and it autodetects mobile, forwarding the user on to &#039;m.DOMAIN&#039;, appropriately.

The &#039;Listen&#039; link is the top one, in the grey box.

Thanks for any help you can afford me!

Ant</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>I&#8217;m trying to embed a WMA stream onto a client&#8217;s mobile-friendly page and am having all KINDS of problems&#8230; Any time I use the  tag to embed, it returns a NULL object and doesn&#8217;t display, on the mobile (test platform is WM6.1).</p>
<p>Recently I&#8217;ve learned (as I&#8217;m new to developing for mobile devices) that the  tag is unsupported, ergo not a viable option for embedding even a Windows Media player.</p>
<p>That said, I&#8217;ve noticed that using your code, as an example for embedding on a  mobile-device, even *IT* doesn&#8217;t work.</p>
<p>Any help?  </p>
<p>The URL is the same as supplied, above and it autodetects mobile, forwarding the user on to &#8216;m.DOMAIN&#8217;, appropriately.</p>
<p>The &#8216;Listen&#8217; link is the top one, in the grey box.</p>
<p>Thanks for any help you can afford me!</p>
<p>Ant</p>
]]></content:encoded>
	</item>
</channel>
</rss>
