Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Quicktime Web Streaming

Status
Not open for further replies.

padgo

Technical User
May 29, 2007
1
AU
hello there, i have an embedded quicktime video on my website that is about 10mb, when i navigate to that page now it loads the whole video behind the quicktime logo, effectively freezing the page until it loads. What i want it to do is play while loading it, if u get what i mean. so u see the progress bar moving along as it loads.

here is my current code.

<EMBED

SRC="vid1.mov"

HEIGHT=270 WIDTH=346

TYPE="video/quicktime"

cache="true"

autoplay="false"

PLUGINSPAGE="
/>
 
try the <object> tag instead of <embed>. See if this helps.

<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase=" height="256" width="320">
<param name="src" value="YOURMOVIE.mov">
<param name="autoplay" value="true">
<param name="controller" value="true">
<embed height="256" pluginspage=" src="YourCircleofWealth.mov" type="video/quicktime" width="320" controller="true" autoplay="true">
</object>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top