Embded media player
-
Hi friends, I have add a embded windows media player in my site using following code, <object id="wmp" classid="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6" style="width: 475px; height: 367px;" type="application/x-oleobject" pluginspage="http://www.microsoft.com/Windows/Downloads/Contents/MediaPlayer/"> <param name="URL" value="<%=url_filename %>"/> <param name="enabled" value="True"/> <param name="AutoStart" value="True"/> <param name="PlayCount" value="0"/> <param name="Volume" value="50"/> <param name="balance" value="0"/> <param name="Rate" value="1.0"/> <param name="Mute" value="False"/> <param name="fullScreen" value="False"/> <param name="uiMode" value="full"/> <param name="ShowStatusBar" value="True" /> <param name="SendPlayStateChangeEvents" value="True" /> <param name="autorewind" value="True" /> </object> But its not supporting many formats is there is any way to code such that it will accept some additional formats and one more problem is i uploaded this in server but some formats which can play in my system cant supported in other systems. :confused:
-
Hi friends, I have add a embded windows media player in my site using following code, <object id="wmp" classid="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6" style="width: 475px; height: 367px;" type="application/x-oleobject" pluginspage="http://www.microsoft.com/Windows/Downloads/Contents/MediaPlayer/"> <param name="URL" value="<%=url_filename %>"/> <param name="enabled" value="True"/> <param name="AutoStart" value="True"/> <param name="PlayCount" value="0"/> <param name="Volume" value="50"/> <param name="balance" value="0"/> <param name="Rate" value="1.0"/> <param name="Mute" value="False"/> <param name="fullScreen" value="False"/> <param name="uiMode" value="full"/> <param name="ShowStatusBar" value="True" /> <param name="SendPlayStateChangeEvents" value="True" /> <param name="autorewind" value="True" /> </object> But its not supporting many formats is there is any way to code such that it will accept some additional formats and one more problem is i uploaded this in server but some formats which can play in my system cant supported in other systems. :confused:
B87 wrote:
i uploaded this in server but some formats which can play in my system cant supported in other systems
Embedded objects run on the client side, so the supported formats depend on the codecs that are installed on the client's system. The best solution to this is to simply use a standard format such as MP3 or WMA so that it plays on all systems.