RobertSubnet Posted August 31, 2009 Share Posted August 31, 2009 Hello all. Hopefully this is an easy one. I am trying to play a video clip using the following code: <embed src = "my_clip.mp4" WIDTH = 292 HEIGHT = 290 autostart = "false" controller = TRUE> The clip plays just fine in IE and Firefox. But the controll buttons, Play, Pause, etc., are not displayed. There is only a black strip where the control buttons should be. What do I need to add to get the control buttons? They are present when playing a WMF or AVI. Thanks! Link to comment https://forums.phpfreaks.com/topic/172612-video-controll-buttons-not-displaying/ Share on other sites More sharing options...
Hybride Posted September 3, 2009 Share Posted September 3, 2009 Is that your entire code? Try this: <object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" width="292" height="290"> <param name="src" value="my_clip.mp4"> <param name="autoplay" value="true"> <param name="controller" value="true"><embed height="290" pluginspage="http://www.apple.com/quicktime/download/" src="my_clip.mp4" type="video/quicktime" width="292" controller="true" autoplay="true"> </object> Media Quicktime should be of help. Link to comment https://forums.phpfreaks.com/topic/172612-video-controll-buttons-not-displaying/#findComment-911295 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.