Been trying to figure this out for the life of me. We've decided to support Windows Media and Real, each with their own link. I'm using and object tag (for IE5+) and within that, and embed tag (for netscape). Works fine in IE5.5+ and Netscape 4.7...haven't tried Netscape6+ yet.
Loaded the pages up in Opera7 and the plugin loads, but the mp3 file does not. In one instance, Opera7 crashed.
Curious if anyone has any relative recommendations on how about to do this. Below is some code from the Windows Media page.
Thanks in advance...
Loaded the pages up in Opera7 and the plugin loads, but the mp3 file does not. In one instance, Opera7 crashed.
Curious if anyone has any relative recommendations on how about to do this. Below is some code from the Windows Media page.
Thanks in advance...
<OBJECT
ID="MediaPlayer1"
CLASSID="clsid:22D6F312-B0F6-11D0-94AB-0080C74C7E95"
CODEBASE="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701"
src="2a.mp3"
STANDBY="Loading Microsoft Windows Media Player components..."
TYPE="application/x-oleobject">
<PARAM NAME="fileName" VALUE="2a.mp3">
<PARAM NAME="animationatStart" VALUE="true">
<PARAM NAME="transparentatStart" VALUE="true">
<PARAM NAME="autoStart" VALUE="true">
<PARAM NAME="showControls" VALUE="true">
<EMBED type="application/x-mplayer2"
pluginspage = "http://www.microsoft.com/Windows/MediaPlayer/"
SRC="2a.mp3"
filename="2a.mp3"
name="MediaPlayer1"
width="280"
height="40"
autostart="True"
showcontrols="True"
showstatusbar="False"
showdisplay="False"
autorewind="True">
</EMBED>
</OBJECT>