stealthmindzinc
11-10-2003, 12:35 PM
EDIT:
How can i have a page displaya a AVI file?
Thanks,
Stealthmindz
How can i have a page displaya a AVI file?
Thanks,
Stealthmindz
|
Click to See Complete Forum and Search --> : Playing A MOV File stealthmindzinc 11-10-2003, 12:35 PM EDIT: How can i have a page displaya a AVI file? Thanks, Stealthmindz Khalid Ali 11-10-2003, 06:43 PM you can use a combination of object and embed tags.. Robert Wellock 11-11-2003, 10:13 AM Technically you cannot use the <embed /> element because it is proprietary, and since you said AVI: <object width="100" height="100"> <param name="FileName" value="video.avi" type="video/avi" /> <param name="ShowDisplay" value="0" /> <param name="ShowControls" value="0" /> <param name="AutoStart" value="-1" /> <param name="PlayCount" value="1" /> <param name="MovieWindowWidth" value="100" /> <param name="MovieWindowHeight" value="100" /> <embed src="video.avi" autostart="true" /> <p>Fallback</p> </object> The above is the proprietary method. webdeveloper.com
Copyright Internet.com Inc., All Rights Reserved. |