Video embedding on my website. Need a little help here!

gucciboy

BANNED
Joined
Mar 11, 2013
Messages
297
Reaction score
182
Alright, so I'm almost finished with my website, but have a few videos that I want to put on it. I do not use wordpress, plain html only!

Now, I don't want to use youtube to embed my videos, as it looks ugly. I looked into JWPlayer as I saw it on a few other sites, and it's nice... But it's not free... Costs 99$ for a license.

SO, my question is, are there any free alternatives?

Please let me know :) thank you!
 
You can use a HTML5 or javascript video player. Just search for "free html 5 video player" on google. You'll find tons alternatives.
 
Okay, will look into that. My main video just have to autoplay when loading the site up :)
 
Alright, so I'm almost finished with my website, but have a few videos that I want to put on it. I do not use wordpress, plain html only!

Now, I don't want to use youtube to embed my videos, as it looks ugly. I looked into JWPlayer as I saw it on a few other sites, and it's nice... But it's not free... Costs 99$ for a license.

SO, my question is, are there any free alternatives?

Please let me know :) thank you!

HTML5 provides a standard for showing videos.
Browser support: Internet Explorer 9+, Firefox, Opera, Chrome, and Safari support the <video> element.

Code:
[COLOR=#000000][FONT=courier new]<video width="320" height="240" controls>[/FONT][/COLOR]
[COLOR=#000000][FONT=courier new]  <source src="movie.mp4" type="video/mp4">[/FONT][/COLOR]
[COLOR=#000000][FONT=courier new]</video>[/FONT][/COLOR]
 
Last edited:
Back
Top