Imark Posted January 25, 2007 Share Posted January 25, 2007 When I embed a video file in a page, it plays fine. But only the Play and the Stop buttons work. I need to be able to FF and RW it, or at least, to be able to move the slider to a different location in the video.It's a *.wmv file, and it opens in Windows Media Player.I'm embedding it like this:<EMBED src="http://www.myurl.org/myfile.wmv" ShowStatusBar=true Autostart=true LOOP=false width="491" height="408" align="middle" style="border-style:double; border-color:#826331; ">What can I do to be able to go to a different location in the video?Also, is there an option to display playing time?TIA Link to comment https://forums.phpfreaks.com/topic/35628-embed-help-for-video-files/ Share on other sites More sharing options...
tarun Posted January 25, 2007 Share Posted January 25, 2007 Try This:[code]<OBJECT><param name="fileName" value="http://www.myurl.org/myfile.wmv"><param name="autoStart" value="true"><param name="showControls" value="true"><param name="showDisplay" value="true"><param name="showStatusBar" value="true"><param name="loop" value="false"><EMBED showcontrols="true" showdisplay="true" showstatusbar="true"src="http://www.myurl.org/myfile.wmv" autostart="true" loop="false" width="491" height="408" align="middle" style="border-style:double; border-color:#826331;"></EMBED></OBJECT>[/code]Hope Ive Help YouThnak You Link to comment https://forums.phpfreaks.com/topic/35628-embed-help-for-video-files/#findComment-169086 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.