javabear90 said:
however it required some weird quicktime program. IMovie cannot export to anything but quicktime. So how should I do this?
Hunh? Quicktime is the standard for all apple computers, and it is also available for windows. You should not have any problems with windows users viewing them, or mac users for that matter.
It worked fine for me on windows and mac. It doesn't play emebeded in the browser on the PC though, only on the mac. Use this code to embded the quiktime movies on a webpage, it aslo checks for quicktime installed, if it is not installed it will download and install it for you.
<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" height="256" width="320">
<param name="src" value="yourmovie.mov">
<param name="autoplay" value="true">
<param name="controller" value="true">
<embed height="256" width="320" src="yourmovie.mov" pluginspage="http://www.apple.com/quicktime/download/" type="video/quicktime" controller="true" autoplay="true">
</object>
This is the best code to use to be mac and windows compatible. You need to add the link to your movie file where it says "yourmovie.mov" . You also need to change the heght and width to fit your movie. If you want the user to see controls at the bottom of the quicktime window you need to add 16pixels to the hieght.
Your videos work fine right now, just not very clean, its better to embed them.
good luck.