Hi, markusallen.
I can connect and listen to your stream directly using my QuickTime
player. This a Good Thing - there's nothing wrong with the stream
itself.
However, when viewing your webpage in OmniWeb 4.1b5, Internet Explorer
5 and Mozilla 6, all for Mac OS X, and all using the QuickTime 5
browser plugin, nothing happens. This points to the HTML code used to
embed the movie being the problem.
At the moment, you have used the <embed> tag to insert the movie into
your document. However, due to some changes in more recent browsers,
this tag can no longer be used on it's own - it must be accompanied by
an <object> tag, too.
At the moment, on your website, you've embedded the movie with this
code:
<EMBED SRC="UNeedQT4.qti" WIDTH=175 HEIGHT=150
type="image/x-quicktime" autoplay=true
qtsrc="rtsp://209.25.224.143/mailshopusa.com/bwtm.sample.mov"></embed>
To ensure compatibility with later versions of Internet Explorer, the
code needs to be changed to something like the below:
<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B"
width="175" height="150"
codebase="http://www.apple.com/qtactivex/qtplugin.cab">
<param name="SRC" value="UNeedQT4.qti">
<param name="QTSRC" value="rtsp://209.25.224.143/mailshopusa.com/bwtm.sample.mov">
<param name="AUTOPLAY" value="true">
<param name="CONTROLLER" value="true">
<embed src="UNeedQT4.qti"
qtsrc="rtsp://209.25.224.143/mailshopusa.com/bwtm.sample.mov"
width="175" height="150" autoplay="true" controller="true"
pluginspage="http://www.apple.com/quicktime/download/"
type="video/quicktime">
</embed>
</object>
This contains both a traditional <embed> tag, and the <object> tag
needed for support in later browsers. (For the record, I quickly
tested this in an HTML file and it loaded fine in all of my browsers.)
This information is detailed at:
http://www.apple.com/quicktime/products/tutorials/activex.html
A good source of information on embedding a QT movie (from
www.arts.monash.edu.au) can be found at:
http://www.arts.monash.edu.au/it/artsweb/info_resources/mediaserver/embed.html
I hope this helps.
Thanks,
wildeeo-ga |