Forum Moderators: not2easy
I've been supplied a .mp4 video to display on one of our web pages. i've googled the heck out of this, found two approaches that both are not working for me. Am I doing something wrong in my code or is there a different/better approach I should be taking?
First Method:
<embed src="videos/InfoPlus.mp4" width="480" height="375" pluginspage="http://www.apple.com/quicktime/download/"></embed>
Second Method:
<OBJECT classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="480" height="375" codebase="http://www.apple.com/qtactivex/qtplugin.cab">
<param name="Movie" value="videos/InfoPlus.mp4">
<param name="autoplay" value="true">
<param name="controller" value="true">
<param name="loop" value="true">
<EMBED src="videos/InfoPlus.mp4" width="480" height="375" autoplay="true"
controller="true" loop="true" pluginspage="http://www.apple.com/quicktime/download/">
</EMBED>
</OBJECT>