Wednesday, March 28, 2007

Quick Time and XHMTL

Ok I'm impressed , the whole idea of roaming the web, and finding other peoples code and grabbing it for your own project seemed a bit strange to me. However for my project I neeed to understand how to embed Quicktime movies into a page. So I google "XHMTL Quick time" and within ten minutes I have the code I need and have a working test page playing the video. While I don't claim to fully understand all the code involved a can follow most of it. I need to read more on how object classes function.
If anyone else is interested the code can be found at:

https://www.e-education.psu.edu/courses/geosc010/videos/ducky1.html



<div id="container">

<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B"
width="352" height="280" codebase="http://www.apple.com/qtactivex/qtplugin.cab">
<param name="qtsrc" value="rtsp://streaming.ems.psu.edu:554/geosc10/duckMountain1.mov" />
<param name="autoplay" value="true" />
<param name="controller" value="true" />
   <embed src="http://streaming.ems.psu.edu/geosc10/duckMountain1.mov"
target="quicktimeplayer"
type="video/quicktime"
width="352"
height="280"
autoplay="true"
controller="true"
pluginspage="http://www.apple.com/quicktime/download/">







No comments: