Hi Morgan
I think Mike answered this in your trouble ticket, but I thought this would be a good thing to have answered here as well.
you can encode most formats into wmv with the windows media encoder. windows movie maker 2 is able to capture video and encode it. all free programs
http://www.microsoft.com/windows/windowsme...er/default.aspx once you have the wmv file, you can use the <object> and <embed> tags, as below
note that you only have to insert your file name below. there is some code in there that will automatically download necessary codecs should the user not have them
play around with the showcontrols, autostart etc. that should all be pretty self explanatory
real media can also be encoded with the free real producer basic
as far as i know there are no free quicktime encoding tools.
you can always download trial versions of video editing software if needed
<p>
<OBJECT ID="mediaPlayer" CLASSID="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95" CODEBASE=http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701 STANDBY="Loading Microsoft Windows Media Player components..." TYPE="application/x-oleobject">
<PARAM NAME="fileName" VALUE="NAMEOFYOURFILE.wmv">
<PARAM NAME="animationatStart" VALUE="true">
<PARAM NAME="transparentatStart" VALUE="true">
<PARAM NAME="autoStart" VALUE="true">
<PARAM NAME="showControls" VALUE="false">
</OBJECT>
</p>
Peace
Wolf