Embedding Your Videos On Other Web Pages

It’s possible to embed the videos you have on your APF site on other webpages. Here’s the instructions how to do it. NOTE: this is an advanced feature and not supported beyond these instructions.

1. Go to this embed generator:
http://cit.ucsf.edu/embedmedia/step1.php

2. Select quicktime embed

3. Select server type: A Web Server

4. Enter the following:

Web Server: http://yourdomain.com (enter the domain for your website)

File Path: /videos/thenameofyourvideo.mov (after the /videos/ erase and enter the full name of the video you want to embed including the extension)

Height and Width: Enter the exact height and width of the video (use “show movie inspector” under window in quicktime to see what those are)

Select the rest based on your preferences.

5. Copy and paste the output onto a webpage:

<!– begin embedded QuickTime file… –>
<table border=’0′ cellpadding=’0′ align=”left”>
<!– begin video window… –>
<tr><td>
<OBJECT classid=’clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B’ width=”900″
height=”515″ codebase=’http://www.apple.com/qtactivex/qtplugin.cab’>
<param name=’src’ value=”http://robhaggart.com/videos/Earth480p.mov”>
<param name=’autoplay’ value=”true”>
<param name=’controller’ value=”true”>
<param name=’loop’ value=”true”>
<EMBED src=”http://robhaggart.com/videos/Earth480p.mov” width=”900″ height=”515″ autoplay=”true”
controller=”true” loop=”true” pluginspage=’http://www.apple.com/quicktime/download/’>
</EMBED>
</OBJECT>
</td></tr>
<!– …end embedded QuickTime file –>
</table>

NOTE: You may want to remove the tables in which case you would only copy everything between the object tags:

<OBJECT classid=’clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B’ width=”900″
height=”515″ codebase=’http://www.apple.com/qtactivex/qtplugin.cab’>
<param name=’src’ value=”http://robhaggart.com/videos/Earth480p.mov”>
<param name=’autoplay’ value=”true”>
<param name=’controller’ value=”true”>
<param name=’loop’ value=”true”>
<EMBED src=”http://robhaggart.com/videos/Earth480p.mov” width=”900″ height=”515″ autoplay=”true”
controller=”true” loop=”true” pluginspage=’http://www.apple.com/quicktime/download/’>
</EMBED>
</OBJECT>

If you need additional help submit a support ticket.