How do I add a QT movie to my HTML page?
How do I add a QT movie to my HTML page?
Embed it.
Peter - alotofstuffhere[dot]com - Email Me - Donate via PayPal - Got spare hardware? Donate 'em to me :) Just send me a PM.
Currently: enjoying the early holidays :)Read before posting: FAQ | What you CAN'T do with JavaScript | Form Rules | Thread Title Naming Guide
Not sure how to do that... Is this the code I use?Originally Posted by tech_support
Where abouts do I put this? Is the last line ok? It displays black in dreamweaver...HTML 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>
Do I need to worry about this? http://www.apple.com/quicktime/tutorials/embed.html
The above code will probably work fine. just test it.
and note that "Wpx" should be replaced with WIDTH, and other things like that.
Daniel - Freelance Web Design | <?php?> | <html>| español | Deutsch | italiano | português | català | un peu de français | some knowledge of several other languages: I can sometimes help translate here on DD | Linguistics Forum
the qt movie doesn't appear to work on pcs... should i make it an mp4? http://www.curiousclothing.com/test/qt.htm
You have QuickTime?
Peter - alotofstuffhere[dot]com - Email Me - Donate via PayPal - Got spare hardware? Donate 'em to me :) Just send me a PM.
Currently: enjoying the early holidays :)Read before posting: FAQ | What you CAN'T do with JavaScript | Form Rules | Thread Title Naming Guide
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:
I think you meant to have this: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>
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.Code:<EMBED type="video/quicktime" BGCOLOR="#000000" BORDER="0" PLUGINSPAGE="http://www.apple.com/quicktime/download/indext.html"></EMBED>
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.
- John________________________
Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate
Bookmarks