Most web browsers support
the display of QuickTime movies. The viewer must have appropriate
plug-ins in their system files in order for the movies to be displayed
within
the
browser window. (For example, Microsoft does not automatically
distribute quicktime with Internet Explorer (IE) - viewers need to
download it.) IE has native support for .wmv files
and may require use of tags that are different than those explained
here. This guide explains the techniques necessary
to prepare and display Quicktime Movies. Also note that sound only
Quicktime movies
can be used as a way of presenting web sound. See my guide
to using web audio. Much of that guide also pertains to
regular quicktime visual movies.
<OBJECT
CLASSID="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B"
WIDTH="160"HEIGHT="144"
CODEBASE="http://www.apple.com/qtactivex/qtplugin.cab">
<PARAM
name="SRC"
VALUE="sample.mov">
<PARAM
name="AUTOPLAY"
VALUE="true">
<PARAM
name="CONTROLLER"
VALUE="false">
<PARAM
name="Loop" VALUE="true">
<PARAM
name="Target" VALUE="_blank">
<EMBED
SRC="sample.mov"
WIDTH="160" HEIGHT="144" AUTOPLAY="true"
CONTROLLER="false"
PLUGINSPAGE="http://www.apple.com/quicktime/download/">
</EMBED>
</OBJECT>
|
Parameter name |
Function |
Legal Values |
|---|---|---|
|
AUTOPLAY |
Start playing movie automatically, do not wait for user to press Play button |
True | False | @HH:MM:SS:FF |
|
BGCOLOR |
Set background color for area alloted to QuickTime but not occupied by movie |
#rrggbb | ColorName |
|
CONTROLLER |
Show or hide the movie controller bar |
True | False |
|
ENABLEJAVASCRIPT |
Initialize JavaScript connections between HTML and plug-in |
True |
|
ENDTIME |
Stop playing a movie at a specified point in the movie timeline |
HH:MM:SS:FF |
|
HREF |
Specify a URL to load when the user clicks on the movie |
URL |
|
LOOP |
Make a movie loop or play alternately forward and backward |
True | False | Palindrome |
|
SCALE |
Scale movie to fit in a rectangle, adjust aspect ratio, or set a size scaling factor |
ToFit | Aspect | n |
|
STARTTIME |
Begin playing at time offset into the movie |
HH:MM:SS:FF |
|
TARGET |
Play movie in QuickTime Player, named frame, or replace current movie |
quicktimeplayer | TargetFrameName | myself |
|
VOLUME |
Set audio volume level |
0 - 255 |
<EMBED SRC="Myquicktime.mov" HEIGHT=240 WIDTH=180 CONTROLLER=FALSEThe movie can load its new page in another page or fram by using target: When the movie is a link the TARGET option can be used to place the retrieved page in another frame or window. If you are not familiar with frames, see the entry in this guide. The following would make the movie a link and place the linked page in a frame or window that had been named "display".
HREF="http://netad.com/file.html">
<EMBED SRC="Myquicktime.mov" HEIGHT=240 WIDTH=180 CONTROLLER=FALSE HREF="http://netad.com/file.html"For details about how to use javascript to control quicktime, see wilson guide to controlling quicktime
TARGET="display">
- This page created by Stephen
Wilson, Professor Conceptual Information Arts (CIA), SFSU
(http://userwww.sfsu.edu/~swilson)
|