Created
June 4, 2014 09:17
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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