I need to embed an mp4 in a website. I don't have a choice... it needs to be mp4. I know it's not the best file type for this.
I would like to add controls to my mp4. How do I do this? Here is my current code:
This is php, but the HTML is the same. Apparently, setting Controller to True isn't working.Code:<?php echo '<OBJECT CLASSID="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" WIDTH="650px" HEIGHT="360px" CODEBASE="http://www.apple.com/qtactivex/qtplugin.cab">'; echo '<PARAM name="SRC" VALUE="videos/'.$thisFilename.'">'; echo '<PARAM name="AUTOPLAY" VALUE="false">'; echo '<PARAM name="CONTROLLER" VALUE="true">'; echo '<EMBED SRC="videos/'.$thisFilename.'" WIDTH="650px" HEIGHT="360px" AUTOPLAY="false" CONTROLLER="true" PLUGINSPAGE="http://www.apple.com/quicktime/download/">'; echo '</EMBED>'; echo '</OBJECT>'; ?>
Any ideas?
Thanks.


Reply With Quote

Bookmarks