Hi Guys,
I was displaying such code to display videos on my site
it offers me that the video is only uploaded when the visitor click on the "clickhere.mp4" (1s video).<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" height="490" width="854">
<param name="src" value="http://www.domain.com/clickhere.mp4">
<param name="autoplay" value="false">
<param name="target" value="myself">
<param name="controller" value="false">
<param name="href" value="http://www.domain.com/movie-preview.mp4">
<param name="type" value="video/quicktime" height="490" width="854">
<embed src="http://www.domain.com/clickhere.mp4" height="490" width="854" autoplay="false" type="video/quicktime" pluginspage="http://www.apple.com/quicktime/download/" controller="false" href="http://www.domain.com/movie-preview.mp4" target="myself"></embed>
</object>
Everything works fine for several videos.
Now I'm just trying to use smaller videos to save bandwith with the following codes.
With the first code the quicktime plugging displays the video while uploading (once 10-15s are available) with the controller showing download progress.<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" height="380" width="640">
<param name="src" value="http://www.domain.com/click640.mp4">
<param name="autoplay" value="false">
<param name="target" value="myself">
<param name="controller" value="false">
<param name="href" value="http://www.domain.com/movie-preview2.mp4">
<param name="type" value="video/quicktime" height="380" width="640">
<embed src="http://www.domain.com/click640.mp4" height="380" width="640" autoplay="false" type="video/quicktime" pluginspage="http://www.apple.com/quicktime/download/" controller="false" href="http://www.domain.com/movie-preview2.mp4" target="myself"></embed>
</object>
But with the second code the video only appears once completely downloaded, so the visitor could think there's a problem with it and leave the page before getting it.
If you think you could help I could PM, two URLs with such videos.
Thanks for your help![]()


Reply With Quote
