Top VPS Hosting Provider

Welcome to the myhosting.com Forums.
+ Reply to Thread
Results 1 to 3 of 3
  1. #1
    ladlon is offline Junior Member
    Join Date
    Jun 2010
    Posts
    1

    Default Progressive downloads (not working)

    Hi. I am making my new site, and have several Quicktime mov files (set as Progressive Download With Compressed Header). Thing is, they don't seem to be downloading progressively, regardless of how I utilize them.

    I've tried standard embedding (<object>/<embed> method), and get the Q logo until if FULLY downloads.

    I've even tried using prettyPhoto (...a script that makes the whole screen dim, and presents a nice floating window above the site to display the image/video)... Kind of like Lightbox. Same thing there... The pop-up window shows a blank screen until it's FULLY loaded.

    My videos are all stored in a video folder on my webspace.

    Is there anything more I need to do to get them to load progressively? Despite being compressed and relatively small (300x200), the wait time on some of them is too long (...expecially with no indeication that it's loading being displayed).

    Only solution I could find is to put them on YouTube, and embed that (...the video then progressively downloads).... but I would rather the files just be stored on my webspace. True streaming is not an option (as it's an added cost, and really kind of pointless with my 300x200 clips that, at worst, are about 2.5 minutes long for the few longer ones).

    Any help?

  2. #2
    jeremya is offline Administrator
    Join Date
    Jun 2008
    Posts
    270

    Default

    try the below code but make sure you update the : http:// "servername/path/to/media.file section"

    <!-- begin embedded QuickTime file... -->
    <table border='0' cellpadding='0' align="left">
    <!-- begin video window... -->
    <tr><td>
    <OBJECT classid='clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B' width="300"
    height="215" codebase='http://www.apple.com/qtactivex/qtplugin.cab'>
    <param name='src' value="http://servername/path/to/media.file">
    <param name='autoplay' value="true">
    <param name='controller' value="true">
    <param name='loop' value="false">
    <EMBED src="http://servername/path/to/media.file" width="300" height="215" autoplay="true"
    controller="true" loop="false" pluginspage='http://www.apple.com/quicktime/download/'>
    </EMBED>
    </OBJECT>
    </td></tr>
    <!-- ...end embedded QuickTime file -->
    </table>
    -Jeremya

  3. #3
    jeremya is offline Administrator
    Join Date
    Jun 2008
    Posts
    270

    Default

    you don't need to include the table data either really
    -Jeremya


 

Posting Permissions

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