Forum Moderators: open

Message Too Old, No Replies

Valid Object (embed) quicktime movie

         

katch22

8:24 pm on Oct 30, 2003 (gmt 0)

10+ Year Member



Any ideas how to create valid HTML to embed a quicktime movie.

Thanks for any advice

Katch22

RonPK

11:02 am on Oct 31, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Hi katch22, welcome to WebmasterWorld!

Basically I think valid HTML 4 would have to look like this:
<object type="video/quicktime" data="media/movie.mov" width="400" height="300">
<param name="src" value="media/movie.mov">
<param name="controller" value="true">
<param name="cache" value="true">
<param name="autoplay" value="true">
<param name="loop" value="true">
<param name="pluginspage" value="http://www.apple.com/quicktime/download/">
<p>Hey, no QT installed!</p>
</object>

I can't test it here, because installation of QuickTime tends to mess up too many settings on my PC.

The most reliable result is achieved by using <embed>, which has been deprecated by W3C in their eternal wisdom. So the choice is between valid HTML and maximum audience...

katch22

1:56 pm on Oct 31, 2003 (gmt 0)

10+ Year Member



Hi RonPK

I did try using your method but had no luck, it seems not to load the movie.

I have had luck using the <embed> but is does not Validate,but thanks for trying :¬)

Katch22