Created
April 28, 2016 13:05
-
-
Save emanuelpessoaa/22a2fa1861ad63ea9f290291ccf01331 to your computer and use it in GitHub Desktop.
Html snippet for video mp4 using object tag
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
<p> | |
<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" width="600" height="415"> | |
<param name="pluginspage" value="http://www.apple.com/quicktime/download/" /> | |
<param name="src" value="VIDEO-FILE-NAME-HERE.MP4" /> | |
<param name="controller" value="true" /> | |
<param name="loop" value="false" /> | |
<param name="autoplay" value="false" /> | |
<param name="autostart" value="false" /> | |
<param name="scale" value="aspect" /> | |
<!--[if !IE]>--> | |
<object data="VIDEO-FILE-NAME-HERE" type="video/mp4" width="600" height="415"> | |
<param name="src" value="VIDEO-FILE-NAME-HERE.MP4" /> | |
<param name="pluginurl" value="http://www.apple.com/quicktime/download/" /> | |
<param name="controller" value="true" /> | |
<param name="loop" value="false" /> | |
<param name="autoplay" value="false" /> | |
<param name="autostart" value="false" /> | |
<param name="scale" value="aspect" /> | |
<!--<![endif]--> | |
<span class="mediaplugin mediaplugin_html5video"> | |
<video controls="controls" width="600" preload="metadata" title="Video"> | |
<source src="VIDEO-FILE-NAME-HERE.MP4" type="video/mp4" /> | |
<a class="mediafallbacklink" href="VIDEO-FILE-NAME-HERE">video-title-here</a> </video> | |
</span> | |
<!--[if !IE]>--> | |
</object> | |
<!--<![endif]--> | |
</object> | |
</p> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment