Skip to content

Instantly share code, notes, and snippets.

@voku
Created June 4, 2014 09:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save voku/014d309e95f0a0f10b95 to your computer and use it in GitHub Desktop.
Save voku/014d309e95f0a0f10b95 to your computer and use it in GitHub Desktop.
embedding quicktime: Quicktime still requires the double-object method to get it done across all browsers. Not super pretty, but it does get the job done. - From http://snippetlib.com/html/embedding_quicktime
<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B"
codebase="http://www.apple.com/qtactivex/qtplugin.cab"
width="200" height="16">
<param name="src" value="movie.mov" />
<param name="autoplay" value="true" />
<param name="pluginspage" value="http://www.apple.com/quicktime/download/" />
<param name="controller" value="true" />
<!--[if !IE]> <-->
<object data="movie.mov" width="200" height="16" type="video/quicktime">
<param name="pluginurl" value="http://www.apple.com/quicktime/download/" />
<param name="controller" value="true" />
</object>
<!--> <![endif]-->
</object>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment