Jump to content

EMBED help for video files


Imark

Recommended Posts

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

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 You
Thnak You

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.