| 
  • If you are citizen of an European Union member nation, you may not use this service unless you are at least 16 years old.

  • You already know Dokkio is an AI-powered assistant to organize & manage your digital files & messages. Very soon, Dokkio will support Outlook as well as One Drive. Check it out today!

View
 

Embedding Video into a Web Site

Page history last edited by Dr. Ron Eaglin 15 years ago

 Embedding Video into a Web Site

 

 

Prerequisites

 

Basic knowledge of HTML from CET 4583 Lecture series at CET 4583 Lectures

 

Description of Lecture

 

These are video examples of embedded video with the options indicated. Also included are links to types of video which outlines some of the features of embedding video.

 

Video 

 

Sample Embedded Video

ShowControls set to True

 

Script for this video

 

<object id="MediaPlayer" classid="CLSID:22D6f312-B0F6-11D0-94AB-0080C74C7E95" width="180" height="135" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,7,1112" standby="Loading Windows Media Player components..." type="application/x-oleobject">
<param name="filename" value="http://www.smartcharlotte2050.com/Video/Smart Charlotte.wmv " />
<param name="Showcontrols" value="True" />
<embed type="application/x-mplayer2" width="180" height="135" src="http://www.smartcharlotte2050.com/Video/Smart Charlotte.wmv" autostart="false" name="MediaPlayer"></embed>
</object>

 

Sample Embedded Video

Show Controls set to False

 

Script for this Object

 

<object id="MediaPlayer" classid="CLSID:22D6f312-B0F6-11D0-94AB-0080C74C7E95" width="180" height="135" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,7,1112" standby="Loading Windows Media Player components..." type="application/x-oleobject">
<param name="filename" value="http://www.smartcharlotte2050.com/Video/Smart Charlotte.wmv " />
<param name="Showcontrols" value="False" /> 
<embed type="application/x-mplayer2" width="180" height="135" src="http://www.smartcharlotte2050.com/Video/Smart Charlotte.wmv" autostart="false" name="MediaPlayer"></embed>
</object>
 

Reference Materials

 

 

So why do the controls show in both instances? And for that matter what other options are available for this type of video. Since the versions of Windows Media Player are constantly changing you need to turn to a reference to understand them. A good reference is at W3 Schools at http://www.w3schools.com/media/media_playerref.asp

 

 

Additional Information

 

 

Comments (0)

You don't have permission to comment on this page.