Playing A MOV File

liunx

Guest
EDIT:<br />
<br />
How can i have a page displaya a AVI file? <br />
<br />
<br />
Thanks,<br />
Stealthmindz<!--content-->you can use a combination of object and embed tags..<!--content-->Technically you cannot use the <embed /> element because it is proprietary, and since you said AVI: <br />
<br />
<object width="100" height="100"><br />
<param name="FileName" value="video.avi" type="video/avi" /><br />
<param name="ShowDisplay" value="0" /><br />
<param name="ShowControls" value="0" /><br />
<param name="AutoStart" value="-1" /><br />
<param name="PlayCount" value="1" /><br />
<param name="MovieWindowWidth" value="100" /><br />
<param name="MovieWindowHeight" value="100" /><br />
<embed src=http://www.webdeveloper.com/forum/archive/index.php/"video.avi" autostart="true" /><br />
<p>Fallback</p><br />
</object><br />
<br />
The above is the proprietary method.<!--content-->
 
Back
Top