QuickTime is a common video format on the Internet. The QuickTime video format was developed by the Apple Computer company. QuickTime videos have the file extension ".mov". Code to play a QuickTime movie can easily be added to a webpage.
Welcome to Bucaro TecHelp!

Welcome to Bucaro TecHelp!
Maintain Your Computer and Use it More Effectively
to Design a Web Site and Make Money on the Web

About Bucaro TecHelp About BTH User Agreement User Agreement Privacy Policy Privacy Site Map Site Map Contact Bucaro TecHelp Contact Advertise on Bucaro TecHelp Advertise Here RSS News Feeds News Feeds

HTML5 Solutions: Essential Techniques for HTML5 Developers

Essential Techniques for HTML5 Developers

HTML5 brings the biggest changes to HTML in years. Web designers now have new techniques, from displaying video and audio natively in HTML, to creating realtime graphics on a web page without a plugin.

This book provides a collection of solutions to all of the most common HTML5 problems. Every solution contains sample code that is production-ready and can be applied to any project.

Click Here

Playing QuickTime Movies on Your Webpage

QuickTime is a common video format on the Internet. The QuickTime video format was developed by the Apple Computer company. QuickTime videos have the file extension .mov. Code to play a QuickTime movie can easily be added to a webpage.

-  Recent versions of Internet Explorer do not support the embed tag that was previously used to install Netscape-style plug-ins to play QuickTime movies. You are now required to use the W3C standard "object" element tag to load the new QuickTime ActiveX control from Apple.

The <object> Element

The code shown below uses the "object" element tag to automatically install the QuickTime ActiveX control, if it's not already installed on the users computer, and to automatically load and play a QuickTime movie.

<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="320" height="256"
codebase="http://www.apple.com/qtactivex/qtplugin.cab">
<param name="SRC" value="chicken.mov" />
<param name="autoStart" value="true" />
<param name="loop" value="flase" />
<param name="showControls" value="true" />
</object>

The object classid attribute uniquely identifies the ActiveX control to use. It must be set to "clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" to install the QuickTime Movie Player. If the user's computer does not already have the ActiveX control installed, Internet Explorer uses the path specified in the codebase attribute to automatically download and install it.

The codebase attribute must be set to http://www.apple.com/qtactivex/qtplugin.cab". This location will always contain the latest version of the QuickTime Player.

The object element width and height attributes should match the dimensions of the movie in pixels.

The object element may have several parameter (param) elements specified. The src parameter must be set to the path of the movie file. In this case "chicken.mov", a short video clip from a public domain movie.

Web Design Sections

RSS Feed RSS Feed

Google Reader or Homepage
Add to My Yahoo!
Subscribe with Bloglines
Subscribe in NewsGator Online

Add to My AOL
Add to Technorati Favorites!

Coding Issues
Six Ways to Center an Element on a Webpage
Don't Let doors.txt Take Control of Your Email Server
RSS Basics
Create a Favicon for Your Web Site
Create a Simple, Effective PHP Form for Your Web Site
Advantages and Disadvantages of Frames
Web Design Blunders That Can Cost You Lost Profits
How to Hide From Robots
Syndicate your own content Using aspSyndicator
Playing QuickTime Movies on Your Webpage
How To Effortlessly Use Streaming Audio
Video - Optimizing the Order of Scripts and Styles
Web Designer's Reference
Video - HTTP caching
What is a Web Service?
What is AJAX?
Updates are a SNAP With Server Side Includes
Seven Effective Ways to Build Your Own Web Site
Web Design Troubleshooting Guide
Increase Your Traffic by Recovering Your Lost Visitors
Why a CSS Website Layout Will Make You Money
Why Aren't You Using CGI?
How to Redirect a Web Page Using a 301 Redirect
Update Your Entire Website Instantly


[Site User Agreement] [Advertise on This site] [Search This Site] [Contact Form]
Copyright©2001-2011 Bucaro TecHelp 13771 N Fountain Hills Blvd Suite 114-248 Fountain Hills, AZ 85268