Werbung: SecurityConsole.de verwaltet Ihre Computer mit Security Essentails aus der Cloud!
30 Tage kostenfrei testen und 20% Rabatt für Ihre Bestellung mit Promocode: WBF2685582
(Promocode gültig bis 31.12.2011)

Group:  English: Entertainment » microsoft.public.windowsmedia.player.web
Thread: media player not streaming in IE7

HTVi
TV Discussion Newsgroups

media player not streaming in IE7
Mooky 12/15/2008 6:04:07 PM
I am embedding streaming audio with windows media player to my site and was
told for the code to work, I need to put it in an HTML box, How do I go about
that? This is a streaming radio station I wish to add and I am using the
embed code they gave me. Works fine for Firefox, but not IE...even on the
stations site in IE it won't play,,just shows up as the old media player and
everything is grayed out. I haven't uploaded the page yet..just working on it
at the moment. Here is the code


<object id='mediaPlayer' width="320" height="45"

classid='CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95'


codebase='http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701'

standby='Loading Microsoft Windows Media Player components...'
type='application/x-oleobject'>

<param name='fileName' value="http://38.96.148.95:6346" />

<param name='animationatStart' value='true' />

<param name='transparentatStart' value='true' />

<param name='autoStart' value="true" />

<param name='showControls' value="true" />

<param name='loop' value="true" />

<embed type='application/x-mplayer2'

pluginspage='http://microsoft.com/windows/mediaplayer/en/download/'

id='mediaPlayer' name='mediaPlayer' displaysize='4' autosize='-1'

bgcolor='darkblue' showcontrols="true" showtracker='-1'

showdisplay='0' showstatusbar='-1' videoborder3d='-1' width="320"
height="285"

src="http://38.96.148.95:6346" autostart="True" designtimesp='5311'
loop="True"> </embed>

</object>


Re: media player not streaming in IE7
"Neil Smith [MVP Digital Media]" <neil[ at ]nospam.com> 12/15/2008 7:15:36 PM
That code is from 1999 and should no longer be used. Though I've been
saying this for 4 years, there are so many examples of the old code -
even on MS site, that I'm beginning to despair of the message getting
through !

I dunno what they meant about an HTML box, unless you have some sort
of site builder / page editor rather than creating a web page in a web
editor on your PC and uploading your page to the web server :

This should be the approrpriate embedding code for WMP7 and later -
mind out for line breaks, the code should cut+paste OK from here (but
check it - anything inside quotes " " should not span lines) :


<object classid="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6"
id="player" width="320" height="40">
<param name="url"
value="http://38.96.148.95:6346" />
<param name="src"
value="http://38.96.148.95:6346" />
<param name="uimode" value="mini" />
<param name="autostart" value="true" />
<!--[if !IE]>-->
<object type="video/x-ms-wmv"
data="http://38.96.148.95:6346"
width="320" height="40">
<param name="src"
value="http://38.96.148.95:6346" />
<param name="autostart" value="true" />
<param name="uimode" value="mini" />
</object>
<!--<![endif]-->
</object>

HTH
Cheers - Neil

On Mon, 15 Dec 2008 10:04:07 -0800, Mooky
<Mooky[ at ]discussions.microsoft.com> wrote:

[Quoted Text]
>I am embedding streaming audio with windows media player to my site and was
>told for the code to work, I need to put it in an HTML box, How do I go about
>that? This is a streaming radio station I wish to add and I am using the
>embed code they gave me. Works fine for Firefox, but not IE...even on the
>stations site in IE it won't play,,just shows up as the old media player and
>everything is grayed out. I haven't uploaded the page yet..just working on it
>at the moment. Here is the code
>
>
><object id='mediaPlayer' width="320" height="45"
>
> classid='CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95'
>
>
>codebase='http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701'
>
> standby='Loading Microsoft Windows Media Player components...'
>type='application/x-oleobject'>
>
> <param name='fileName' value="http://38.96.148.95:6346" />
>
> <param name='animationatStart' value='true' />
>
> <param name='transparentatStart' value='true' />
>
> <param name='autoStart' value="true" />
>
> <param name='showControls' value="true" />
>
> <param name='loop' value="true" />
>
> <embed type='application/x-mplayer2'
>
> pluginspage='http://microsoft.com/windows/mediaplayer/en/download/'
>
> id='mediaPlayer' name='mediaPlayer' displaysize='4' autosize='-1'
>
> bgcolor='darkblue' showcontrols="true" showtracker='-1'
>
> showdisplay='0' showstatusbar='-1' videoborder3d='-1' width="320"
>height="285"
>
> src="http://38.96.148.95:6346" autostart="True" designtimesp='5311'
>loop="True"> </embed>
>
> </object>
>
>
------------------------------------------------
Digital Media MVP : 2004-2008
http://mvp.support.microsoft.com/mvpfaqs
Re: media player not streaming in IE7
Mooky 12/15/2008 8:53:00 PM

Thanks for the help...I ended up using a code I found when doing a Google
search a while back that allowed streaming auido to play with WMP in both
Firefox and IE. I just change the address of the audio in the code I had with
the one for the streaming radio...
"Neil Smith [MVP Digital Media]" wrote:

[Quoted Text]
> That code is from 1999 and should no longer be used. Though I've been
> saying this for 4 years, there are so many examples of the old code -
> even on MS site, that I'm beginning to despair of the message getting
> through !
>
> I dunno what they meant about an HTML box, unless you have some sort
> of site builder / page editor rather than creating a web page in a web
> editor on your PC and uploading your page to the web server :
>
> This should be the approrpriate embedding code for WMP7 and later -
> mind out for line breaks, the code should cut+paste OK from here (but
> check it - anything inside quotes " " should not span lines) :
>
>
> <object classid="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6"
> id="player" width="320" height="40">
> <param name="url"
> value="http://38.96.148.95:6346" />
> <param name="src"
> value="http://38.96.148.95:6346" />
> <param name="uimode" value="mini" />
> <param name="autostart" value="true" />
> <!--[if !IE]>-->
> <object type="video/x-ms-wmv"
> data="http://38.96.148.95:6346"
> width="320" height="40">
> <param name="src"
> value="http://38.96.148.95:6346" />
> <param name="autostart" value="true" />
> <param name="uimode" value="mini" />
> </object>
> <!--<![endif]-->
> </object>
>
> HTH
> Cheers - Neil
>
> On Mon, 15 Dec 2008 10:04:07 -0800, Mooky
> <Mooky[ at ]discussions.microsoft.com> wrote:
>
> >I am embedding streaming audio with windows media player to my site and was
> >told for the code to work, I need to put it in an HTML box, How do I go about
> >that? This is a streaming radio station I wish to add and I am using the
> >embed code they gave me. Works fine for Firefox, but not IE...even on the
> >stations site in IE it won't play,,just shows up as the old media player and
> >everything is grayed out. I haven't uploaded the page yet..just working on it
> >at the moment. Here is the code
> >
> >
> ><object id='mediaPlayer' width="320" height="45"
> >
> > classid='CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95'
> >
> >
> >codebase='http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701'
> >
> > standby='Loading Microsoft Windows Media Player components...'
> >type='application/x-oleobject'>
> >
> > <param name='fileName' value="http://38.96.148.95:6346" />
> >
> > <param name='animationatStart' value='true' />
> >
> > <param name='transparentatStart' value='true' />
> >
> > <param name='autoStart' value="true" />
> >
> > <param name='showControls' value="true" />
> >
> > <param name='loop' value="true" />
> >
> > <embed type='application/x-mplayer2'
> >
> > pluginspage='http://microsoft.com/windows/mediaplayer/en/download/'
> >
> > id='mediaPlayer' name='mediaPlayer' displaysize='4' autosize='-1'
> >
> > bgcolor='darkblue' showcontrols="true" showtracker='-1'
> >
> > showdisplay='0' showstatusbar='-1' videoborder3d='-1' width="320"
> >height="285"
> >
> > src="http://38.96.148.95:6346" autostart="True" designtimesp='5311'
> >loop="True"> </embed>
> >
> > </object>
> >
> >
> ------------------------------------------------
> Digital Media MVP : 2004-2008
> http://mvp.support.microsoft.com/mvpfaqs
>
Re: media player not streaming in IE7
"zachd [MSFT]" <zachd[ at ]nomailplz.online.microsoft.com> 12/16/2008 2:01:36 AM

I didn't see any public examples left in the support site when I did a quick
check, but if you want to flag examples as you come across them, i"ll work
on flagging them/updating them. =\

--
Speaking for myself only.
See http://zachd.com/pss/pss.html for some helpful WMP info.
This posting is provided "AS IS" with no warranties, and confers no rights.
--
"Neil Smith [MVP Digital Media]" <neil[ at ]nospam.com> wrote in message
news:d0bdk4d484j95jnnhuvu3dos0gdb1lfubk[ at ]4ax.com...
[Quoted Text]
> That code is from 1999 and should no longer be used. Though I've been
> saying this for 4 years, there are so many examples of the old code -
> even on MS site, that I'm beginning to despair of the message getting
> through !
>
> I dunno what they meant about an HTML box, unless you have some sort
> of site builder / page editor rather than creating a web page in a web
> editor on your PC and uploading your page to the web server :
>
> This should be the approrpriate embedding code for WMP7 and later -
> mind out for line breaks, the code should cut+paste OK from here (but
> check it - anything inside quotes " " should not span lines) :
>
>
> <object classid="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6"
> id="player" width="320" height="40">
> <param name="url"
> value="http://38.96.148.95:6346" />
> <param name="src"
> value="http://38.96.148.95:6346" />
> <param name="uimode" value="mini" />
> <param name="autostart" value="true" />
> <!--[if !IE]>-->
> <object type="video/x-ms-wmv"
> data="http://38.96.148.95:6346"
> width="320" height="40">
> <param name="src"
> value="http://38.96.148.95:6346" />
> <param name="autostart" value="true" />
> <param name="uimode" value="mini" />
> </object>
> <!--<![endif]-->
> </object>
>
> HTH
> Cheers - Neil
>
> On Mon, 15 Dec 2008 10:04:07 -0800, Mooky
> <Mooky[ at ]discussions.microsoft.com> wrote:
>
>>I am embedding streaming audio with windows media player to my site and
>>was
>>told for the code to work, I need to put it in an HTML box, How do I go
>>about
>>that? This is a streaming radio station I wish to add and I am using the
>>embed code they gave me. Works fine for Firefox, but not IE...even on the
>>stations site in IE it won't play,,just shows up as the old media player
>>and
>>everything is grayed out. I haven't uploaded the page yet..just working on
>>it
>>at the moment. Here is the code
>>
>>
>><object id='mediaPlayer' width="320" height="45"
>>
>> classid='CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95'
>>
>>
>>codebase='http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701'
>>
>> standby='Loading Microsoft Windows Media Player components...'
>>type='application/x-oleobject'>
>>
>> <param name='fileName' value="http://38.96.148.95:6346" />
>>
>> <param name='animationatStart' value='true' />
>>
>> <param name='transparentatStart' value='true' />
>>
>> <param name='autoStart' value="true" />
>>
>> <param name='showControls' value="true" />
>>
>> <param name='loop' value="true" />
>>
>> <embed type='application/x-mplayer2'
>>
>>
>> pluginspage='http://microsoft.com/windows/mediaplayer/en/download/'
>>
>> id='mediaPlayer' name='mediaPlayer' displaysize='4' autosize='-1'
>>
>> bgcolor='darkblue' showcontrols="true" showtracker='-1'
>>
>> showdisplay='0' showstatusbar='-1' videoborder3d='-1' width="320"
>>height="285"
>>
>> src="http://38.96.148.95:6346" autostart="True"
>> designtimesp='5311'
>>loop="True"> </embed>
>>
>> </object>
>>
>>
> ------------------------------------------------
> Digital Media MVP : 2004-2008
> http://mvp.support.microsoft.com/mvpfaqs


Home | Search | Terms | Imprint Contact
Newsgroups Reader - provided by WiredBox.Net
Suche nach Orten, Städten, Postleitzahlen, Vorwahlen, Kfz-Kennzeichen