HTML code gurus - help please...

Here you go. Straight from the horse’s mouth:
http://developer.apple.com/documentation/QuickTime/Conceptual/QTScripting_HTML/index.html

The HTML you’re probably after looks like this:


<OBJECTCLASSID="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" 
CODEBASE="http://www.apple.com/qtactivex/qtplugin.cab"
HEIGHT=yy
WIDTH=xx>

<PARAM NAME="src" VALUE="MyMovie.mov" >

<EMBED SRC="MyMovie.mov"
HEIGHT=yy 
WIDTH=xx
TYPE="video/quicktime"
PLUGINSPAGE="http://www.apple.com/quicktime/download/" /> 

</OBJECT> 

Check out the link for more details and examples.

Ahhh - fantastic! I’m just waiting for the original source code and I’ll see what I can come up with. However, if wasson (or anyone) has any tips of that file conversion, that might be the easiest solution.

Here’s a good step-by-step for conversion on a Mac…

http://ffmpegx.com/flv.html

Not for the faint of heart, but with a little time and patience, I’m sure you can get it working. That’ll get it into FLV format to embed within a Flash movie and play with very little effort. This is what Google Video and YouTube use.

Oh you are the KING! Thank you so much!