Inserting videos on the page
Wild Apricot allows you to add video clips to play on your site. These video clips are limited to the individual file size allowed by your billing plan (see Pricing).
If you need to use larger video files you can upload them to a video sharing site (see Adding Video clips for more information).
Upload video file
You should upload your file using the File Manager (To help keep track of everything, we recommend that you create a folder called "videos")
Inserting video files on the page with Windows Media Player
Supported file types: .asf, .wma, .wmv, .wm, .asx, .wax, .wvx, .wpl, .avi, .asx, .wax, .wvx, .wpl, .mid, .midi, .rmi, .aif, .aifc, .aiff (source: Multimedia file types that Windows Media Player supports)
To embed Windows Media Player, copy the code below into the HTML of the page you want the video to appear on and change the attributes listed below.

Important attributes:
- Width: sets the size of the media player, this should be made to the width of the video
- Height: sets the size of the media player, this should be made to the same height if the video
- fileName and scr: path to your uploaded video file, would be something similar to "http://MyWildApricotWebSite.com/resources/videos/my_video.wmv"
- autoStart: Set this to "true" if you want the video to automatically begin playing when the page loads, otherwise set it to "false" if you want the user to click Play to watch the video
- Loop: Set this to "true" if you want to video to repeat when it's done playing, otherwise set it to "false" to just want it to play once
<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'
width="320"
height="240"
>
<param name='fileName' value="http://servername/path/to/media.file">
<param name='autoStart' value="true">
<param name='loop' value="false">
<EMBED type='application/x-mplayer2' pluginspage='http://microsoft.com/windows/mediaplayer/en/download/' id='mediaPlayer' name='mediaPlayer'
width="320"
height="240"
src="http://servername/path/to/media.file"
autostart="true"
loop="false">
</EMBED>
</OBJECT>
Inserting video files on the page with QuickTime player
Supported file types: .mov, .qt, .mp4
To embed QuickTime Media Player, copy the code below into the HTML of the page you want the video to appear on and change the attributes listed below.

Important attributes:
- Width: sets the size of the media player, this should be made to the width f the video
- Height: sets the size of the media player, this should be made to the same height if the video
- scr: path to your uploaded video file, would be something similar to "http://MyWildApricotWebSite.com/resources/videos/my_video.mov"
- autoplay: Set this to "true" if you want the video to automatically begin playing when the page loads, otherwise set it to "false" if you want the user to click Play to watch the video
- Loop: Set this to "true" if you want to video to repeat when it's done playing, otherwise set it to "false" to just want it to play once
<OBJECT classid='clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B' codebase='http://www.apple.com/qtactivex/qtplugin.cab'
width="320"
height="255"
>
<param name='src' value="http://servername/path/to/media.file">
<param name='autoplay' value="true">
<param name='loop' value="false">
<EMBED
src="http://servername/path/to/media.file"
width="320"
height="255"
autoplay="true"
loop="false"
pluginspage='http://www.apple.com/quicktime/download/'>
</EMBED>
</OBJECT>