Results 1 to 8 of 8

Thread: Add A QuickTime Movie

  1. #1
    Join Date
    Apr 2006
    Posts
    584
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Add A QuickTime Movie

    How do I add a QT movie to my HTML page?

  2. #2
    Join Date
    May 2006
    Location
    Sydney, Australia - Near the coast.
    Posts
    1,995
    Thanks
    0
    Thanked 8 Times in 7 Posts

    Default

    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

  3. #3
    Join Date
    Apr 2006
    Posts
    584
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Quote Originally Posted by tech_support
    Embed it.
    Not sure how to do that... Is this the code I use?
    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>
    Where abouts do I put this? Is the last line ok? It displays black in dreamweaver...

  4. #4
    Join Date
    Apr 2006
    Posts
    584
    Thanks
    0
    Thanked 0 Times in 0 Posts

  5. #5
    Join Date
    Mar 2006
    Location
    Illinois, USA
    Posts
    12,164
    Thanks
    265
    Thanked 690 Times in 678 Posts

    Default

    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

  6. #6
    Join Date
    Apr 2006
    Posts
    584
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    the qt movie doesn't appear to work on pcs... should i make it an mp4? http://www.curiousclothing.com/test/qt.htm

  7. #7
    Join Date
    May 2006
    Location
    Sydney, Australia - Near the coast.
    Posts
    1,995
    Thanks
    0
    Thanked 8 Times in 7 Posts

    Default

    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

  8. #8
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    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:

    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:

    Code:
    <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.
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •