.MOV files in a web page

liunx

Guest
I can not get the .mov file to play. Is there something i am missing from this code?<br />
<br />
<HTML><br />
<HEAD><br />
<TITLE>Automist Movie</TITLE><br />
</HEAD><br />
<br />
<br />
<body ><br />
<br />
<embed src=http://www.webdeveloper.com/forum/archive/index.php/"../Graphics/automist.MOV" alt="Automist Movie" width="300" height="250" align="middle" controls="console" autostart="true"><br />
<br />
</BODY><br />
</HTML><br />
<br />
Please tell me what I need to do to get this movie to play.<br />
Thanks,<br />
Skipper<!--content-->Are you sure the .mov file is "graphics"?<!--content-->Similar to the following although the <embed> method is proprietary and unofficial method.<br />
<br />
<object data="http://www.somesite.com/somemovie.mov" type="video/quicktime" width="200" height="200"><br />
<embed src=http://www.webdeveloper.com/forum/archive/index.php/"http://www.somesite.com/somemovie.mov" type="video/quicktime" width="200" height="200" /><br />
</object><!--content-->Thanks, I've got it now!<!--content-->
 
Back
Top