How will you insert an Video Clip into HTML?

Questions by ROHIT_4444   answers by ROHIT_4444

Editorial / Best Answer

haz_bo  

  • Member Since Mar-2010 | Mar 5th, 2010


This depends on what kind of video. If it is a standard AVI video, you could use the EMBED tag.

For example:
<embed src="video_path.avi" width="300" height="300"></embed>

You may change the width and the height. This will work exacly the same for flash movies.

Showing Answers 1 - 6 of 6 Answers

shoab

  • Jan 6th, 2010
 

<object id="MediaPlayer" width=320 height=270 classid="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95"
codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,7,1112" standby="Loading Microsoft Windows Media Player components..."
type="application/x-oleobject">
<param name="FileName" value="myvideoclip.wmv">
<param name="ShowControls" value="1">
<param name="ShowDisplay" value="0">
<param name="ShowStatusBar" value="1">
<param name="AutoSize" value="0">
<param name="AutoStart" value="1">
<param name="AudioStream" value="1">
</object>

  Was this answer useful?  Yes

haz_bo

  • Mar 5th, 2010
 

This depends on what kind of video. If it is a standard AVI video, you could use the EMBED tag.

For example:
<embed src="video_path.avi" width="300" height="300"></embed>

You may change the width and the height. This will work exacly the same for flash movies.

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions