custom video embed code?

Venom

Seasoned Veteran
Joined
Sep 12, 2012
Messages
3,798
Reaction score
0
FP$
0
I uploaded a video to my webserver and want some custom emded code for it, can you help. (bandwith not a problem) thanks.
 
Try this:

Code:
<video width="320" height="240" controls="controls">
  <source src="yourmovie.mp4" type="video/mp4">
  <object data="yourmovie.mp4" width="320" height="240">
    <embed src="yourmovie.swf" width="320" height="240">
  </object> 
</video>

Depending on your file name and file extension edit these:


<source src="yourmovie.mp4" type="video/mp4">
<object data="yourmovie.mp4" width="320" height="240">
<embed src="yourmovie.swf" width="320" height="240">

Alternatively, you can try:

Code:
<embed src="intro.swf" height="200" width="200">

Which will just display the video without controls. Be sure to change the height and width to your needs.
 
Back
Top Bottom