|
#1
| ||||
| ||||
| A little help needed embeding QuickTime movies.... I've taken on the task of building my own website instead of using the Apple Homepage builder. I have a few little QuickTime movies that I want to embed into a page, I found a site on Apple.com that explains how to do this but I'm doing something wrong. Here is my source code: PHP Code: http://homepage.mac.com/scottmackey/vidASU.html
__________________ "May all your trails be crooked, winding, lonesome, dangerous, leading to the most amazing view, where something strange and more beautiful and more full of wonder than your deepest dreams waits for you." -Edward Abbey |
|
#2
| ||||
| ||||
| I'm having a different problem where video does not seem to work with Windows Internet Explorer... works fine on any other browser on any OS (that can run Quicktime). This is my code: <object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="320" height="260"> <embed src="images/Rustler_Jump.mp4" width="320" height="260"></embed> </object> The video is here: http://www.dtechnoart.com/~sogni/rc.php Hope that helps...
__________________ I'm not around here (much) anymore... Look for me in friendlier places. |
|
#3
| |||
| |||
| You need to place your EMBED tag inside an OBJECT tag, and it doesn't look like either of you are really providing enough info for the browser. Both the EMBED and OBJECT tags need the same info, so it's duplicated. It's this way because some browsers see EMBED, while others see OBJECT. Try this general form: Code: <object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B"
codebase="http://www.apple.com/qtactivex/qtplugin.cab"
height="232" width="320">
<param name="cache" value="true">
<param name="src" value="path/filename.mov">
<param name="autoplay" value="true">
<param name="controller" value="true">
<param name="type" value="video/quicktime">
<embed height="232" pluginspage="http://www.apple.com/quicktime/download/"
src="path/filename.mov" type="video/quicktime" width="320" controller="true"
autoplay="true" cache="true">
</object> http://www.amazon.com/exec/obidos/tg...books&n=507846 |
|
#4
| |||
| |||
![]() |
| Thread Tools | |
|
|
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Longhorn 3D GUI Engine Quicktime movies | Devlinite | Apple News, Rumors & Discussion | 23 | September 11th, 2003 05:05 AM |
| Embedding Quicktime movies on web site | jove | Mac OS X System & Mac Software | 0 | June 14th, 2002 06:17 PM |
| QuickTime 6 and DivX movies | spitty27 | Mac OS X System & Mac Software | 6 | June 6th, 2002 08:37 PM |
| How to convert DVD movies to Quicktime movies? | ddma | Apple News, Rumors & Discussion | 20 | March 27th, 2002 04:45 PM |
| OmniWeb 4 won't save QuickTime Movies | dantjie | Apple News, Rumors & Discussion | 2 | May 8th, 2001 10:59 PM |