
Insert the following
OBJECT/EMBED tag in your Web page:
<OBJECT CLASSID="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B"
WIDTH="320" HEIGHT="240" CODEBASE="http://www.apple.com/qtactivex/qtplugin.cab">
<PARAM name="src" VALUE="http://server:2554/yourfolderhere/nameofyourmaterialhere.mov">
<PARAM name="autoplay" VALUE="true">
<PARAM name="controller" VALUE="false">
<EMBED
TYPE="video/quicktime "
SRC="http://server:2554/yourfolderhere/nameofyourmaterialhere.mov"
WIDTH="320"
HEIGHT="240"
AUTOPLAY="true"
CONTROLLER="false">
</EMBED>
</OBJECT>
Directions:
The "type" attribute lets the browser know which plug-in to
use to play the media.
The "src" attribute tells the plug-in what media to play and
where it resides. The "src"
attribute should be your media or a reference movie. The "height"
and "width" attributes are the dimensions of your media. If
the media is audio only be sure to set both the "height" and
"width" to at least "2" or it may not work in all
browsers. The "autoplay" attribute determines whether the clip
starts playing automatically or not. The "controller" attribute
determines if the controller is available to the user. Be sure to add
"15" pixels to the "height" attribute if the "controller"
attribute is set to "true." This will prevent distortion of
your media by providing enough space for the "controller". The
reason for the use of both the OBJECT and EMBED tag is to insure functionality
in all browsers.
For more information on embedding QuickTime go to http://www.apple.com/quicktime/authoring/embed.html.

|