View Full Version : Add A QuickTime Movie
tomyknoker
10-24-2006, 06:17 AM
How do I add a QT movie to my HTML page?
tech_support
10-24-2006, 06:18 AM
Embed it.
tomyknoker
10-24-2006, 06:23 AM
Embed it.Not sure how to do that... Is this the code I use?
<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="Wpx" height="H+16px" codebase="http://www.apple.com/qtactivex/qtplugin.cab#version=6,0,2,0">
<param name="controller" value="TRUE">
<param name="type" value="video/quicktime">
<param name="autoplay" value="true">
<param name="target" value="myself">
<param name="src" value="URL">
<param name="pluginspage" value="http://www.apple.com/quicktime/download/indext.html">
<type="video/quicktime" BGCOLOR="#000000" BORDER="0" PLUGINSPAGE="http://www.apple.com/quicktime/download/indext.html"></EMBED></object> Where abouts do I put this? Is the last line ok? It displays black in dreamweaver...
tomyknoker
10-24-2006, 06:31 AM
Do I need to worry about this? http://www.apple.com/quicktime/tutorials/embed.html
djr33
10-24-2006, 06:54 AM
The above code will probably work fine. just test it.
and note that "Wpx" should be replaced with WIDTH, and other things like that.
tomyknoker
10-30-2006, 01:49 AM
the qt movie doesn't appear to work on pcs... should i make it an mp4? http://www.curiousclothing.com/test/qt.htm
tech_support
11-01-2006, 05:04 AM
You have QuickTime?
jscheuer1
11-01-2006, 06:33 AM
I've used techniques akin to those explained at the link:
http://www.apple.com/quicktime/tutorials/embed.html
that you mention. You should be concerned about it if you don't want IE Windows users having to 'click and/or hit spacebar to activate this control'.
QuickTime is not backward compatible unless saved as such. If you take advantage of the more efficient recent compression algorithms and/or the higher quality graphics rendering techniques, your movie can only be successfully experienced in a browser equipped with a recent enough version of QuickTime capable of decoding it.
Your code:
<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="Wpx" height="H+16px" codebase="http://www.apple.com/qtactivex/qtplugin.cab#version=6,0,2,0">
<param name="controller" value="TRUE">
<param name="type" value="video/quicktime">
<param name="autoplay" value="true">
<param name="target" value="myself">
<param name="src" value="URL">
<param name="pluginspage" value="http://www.apple.com/quicktime/download/indext.html">
<type="video/quicktime" BGCOLOR="#000000" BORDER="0" PLUGINSPAGE="http://www.apple.com/quicktime/download/indext.html"></EMBED></object>
I think you meant to have this:
<EMBED type="video/quicktime" BGCOLOR="#000000" BORDER="0" PLUGINSPAGE="http://www.apple.com/quicktime/download/indext.html"></EMBED>
Has no opening embed tag but does have a closing one. Movies can now be put on a page (for modern browsers only) using two object tags (with slightly differing syntax) instead of an object and an embed but having only a closing embed tag, as you do, will probably cause problems.
The placement of the code is similar to that of an image or paragraph or any other HTML element. Unless absolutely positioned, it will appear in the normal flow of the layout of the page.
Powered by vBulletin® Version 4.2.2 Copyright © 2021 vBulletin Solutions, Inc. All rights reserved.