Now, both work for me.
the audio in first link plays fine in Safari,
This is the code used in first link,
- Code: Select all
<EMBED SRC="http://www.projekction.net/media/LTiA_symph.mp3" AUTOPLAY="FALSE"></EMBED>
As for second link (video), it does not work for me in Safari.
- Code: Select all
<EMBED SRC="http://www.projekction.net/media/ktu_sines_absinthe.wmv" AUTOPLAY="FALSE"></EMBED>
and
- Code: Select all
<EMBED SRC="http://www.projekction.net/media/ktu_sines_optikus.wmv" AUTOPLAY="FALSE"></EMBED>
The question is do you have Windows Media Player installed correctly?
If I remember correctly, [tt]height[/tt] and [tt]width[/tt] are required for [tt]<embed>[/tt] tag.
But this is a bit complicated, as the poster must have the dimension of the video in mind (and add 16 to the height)
e.g. if the video is 300 by 200, the code would be [tt]width=300 height=216[/tt]
Encoding media could be complicated in forum layouts...
One way is to suggest them to simply type the link only. When users want to see it, they can click the link.
Can you check if
this page work for your Netscape 4.8?
If so, you can change the above coding to a much more complicated version by using [tt]<object>[/tt] tag.
- Code: Select all
<OBJECT ID="MediaPlayer" WIDTH=320 HEIGHT=271
CLASSID="CLSID:22D6f312-B0F6-11D0-94AB-0080C74C7E95"
TYPE="application/x-oleobject"
CODEBASE="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,7,1112">
<PARAM name="autoStart" value="False">
<PARAM name="filename" value="http://www.projekction.net/media/ktu_sines_optikus.wmv">
<PARAM NAME="ShowControls" VALUE="True">
<PARAM NAME="ShowStatusBar" VALUE="True">
<EMBED TYPE="application/x-mplayer2" SRC="http://www.projekction.net/media/ktu_sines_optikus.wmv"
NAME="MediaPlayer" WIDTH=320 HEIGHT=271
autostart="false" showcontrols="true" showstatusbar="true"></EMBED>
</OBJECT>
Note: to use [tt]<object>[/tt] for Windows Media files, you will need
[tt]CLASSID="CLSID:22D6f312-B0F6-11D0-94AB-0080C74C7E95"
TYPE="application/x-oleobject"
CODEBASE="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,7,1112"[/tt] in attitude of the OBJECT.
UserAgent: Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en) AppleWebKit/412.7 (KHTML, like Gecko) Safari/412.5