Home
Getting Started
Solutions
Tutorials
Tips
SE Optimization
Customizing OL
Help and How To
Downloads
Services
Frequently Asked Question
Contact Us
 

Embedding Video

Embedding Video
Upload a video file to the documents on your site (or you can host the video in another location to). If you upload it to the documents on your site it has to be under 10MB and anything that takes longer than 15 minutes to upload will timeout, which shouldn't be a problem if you are using the WMV format.
Paste the following code into the HTML module on your website, replacing the
documents/video.wmv with the location of the video file.  You can also change the height and width if necessary, also you can change whether you want to vide to star automatically chagne the autoStart value to False.
 
Code with only basic parameters 
<object id="player" width="320" height="240" classid="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6">
<param name="url" value="documents/video.wmv">
<param name="autoStart" value="true">
</object>
  
Code with full set of parameters
<object id="player" width="320" height="240" classid="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6">
<param name="url" value="documents/video.wmv">
<param name="autoStart" value="true">
<param name="URL" value="">
<param name="rate" value="1">
<param name="balance" value="0">
<param name="currentPosition" value="0">
<param name="defaultFrame" value="">
<param name="playCount" value="1">
<param name="currentMarker" value="0">
<param name="invokeURLs" value="-1">
<param name="baseURL" value="">
<param name="volume" value="50">
<param name="mute" value="0">
<param name="uiMode" value="full">
<param name="stretchToFit" value="0">
<param name="windowlessVideo" value="0">
<param name="enabled" value="-1">
<param name="enableContextMenu" value="-1">
<param name="fullScreen" value="0">
<param name="SAMIStyle" value="">
<param name="SAMILang" value="">
<param name="SAMIFilename" value="">
<param name="captioningID" value="">
<param name="enableErrorDialogs" value="0">
 

Embedding Audio

Embedding Audio
Upload
a audio file to the documents on your site, MP3, WMA, or MIDI formats works the best.
Paste the following code into your site, replacing the documents/audio.mp3 with the location of the audio file.  You can also change the autostart value to false if you don't want it to autostart only on the code with control, and change loop to false or any number value except for 1 or 0.

 

Without Play controls:

<embed src="documents/audio.mp3" autostart="true" loop="true" hidden="true"></embed>

 

With Play Controls:

<embed src="documents/audio.mp3" autostart="true" loop="false" width="350" height="44"></embed>