HTML CODE TROUBLE......?

  • Thread starter Thread starter [WolfLover]
  • Start date Start date
W

[WolfLover]

Guest
I need a fast and easy way to get a code from a video.
I need the HTML code for the dang video, to put it up!!! like, html for a picture?! :'[
HTML FOR A VIDEO!!!@
:'[ I mean like i want to post it on a website...but how am i if I dont have a code? Please..help
I ALMOST HAVE IT!! on that last code, but i need help getting my part on there
IM A NEWBIE TO THIS! more details
 
Make sure the video is uploaded to your hosting server. I suggest placing it in a new folder called videos. On the webpage you want the video on, use the HTML <object> tag to access the video:

<object width="420" height="360"
classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B"
codebase="http://www.apple.com/qtactivex/qtplugin.cab">
<param name="src" value="/video/movie.mpeg" />
<param name="controller" value="true" />
<param name="autoplay" value="false" />
<!-- Code For Older Browsers -->
<embed src="/video/movie.mpeg" width="420" height="360"
autoplay="true"
controller="true"
pluginspage="http://www.apple.com/quicktime/download/">
</embed>
</object>

Be sure to adjust the width and height on both the object and embed tags to match the video's resolution. Also be sure to adjust "/video/movie.mpeg" to the correct path of your video.

I hope this helps!
 
Back
Top