this is my code for player its not working in internet explorer. can anyone help me. how to make it work in all browsers?
<object
data="http://bitcast-b.bitgravity.com/player/6/bitgravity_player_v6_1_4.swf"
id="bitgravity_player_6"
type="application/x-shockwave-flash"
开发者_JAVA百科 height="350" width="500">
<param value="true" name="allowFullScreen">
<param value="always" name="allowScriptAccess">
<param value="File=http://bglive-a.bitgravity.com/maa/live/newstream&Mode=live&AutoPlay=true&BufferTime=1.5&VideoFit=automatic&DefaultRatio=1.777778&LogoImage=http://musicking.in/images/playerlogo.png&LogoPosition=bottomright&LogoLink=http://musicking.in&ColorBase=#000000&ColorControl=#666666&ColorHighlight=#99FF00&ColorFeature=#99FF00" name="flashvars">
</object>
Add this to the object tag:
<param name="movie"
value="http://bitcast-b.bitgravity.com/player/6/bitgravity_player_v6_1_4.swf"/>
To make it work in all browsers you need to use both object and embed tags.
You might also wanna check out SWFObject which is a javascript flash detection and embedding script and does all the dirty work.
<!--[if !IE]> -->
<object type="application/x-shockwave-flash" data="http://bitcast-b.bitgravity.com/player/6/bitgravity_player_v6_1_4.swf" width="500" height="350">
<!-- <![endif]-->
<!--[if IE]>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="500" height="350">
<param name="movie" value="http://bitcast-b.bitgravity.com/player/6/bitgravity_player_v6_1_4.swf" />
<!--><!-- http://Validifier.com -->
</object>
<!-- <![endif]-->
Have you tried configuring the player using the online setup wizard on BitGravity's site?
http://player.bitgravity.com/6/simple/source.php
精彩评论