HTML5 Open Source Video Player

I would like to share my Open Source HTML5 Video and music player using the default html5 <video src=""></video> tags.
the way this is different from all the other open-source players out there is that mine has no watermarks so you can do as you wish including adding your own watermark and claiming it as your own as I make new things every day so it does not matter to me.
Bellow is the following scripts that need to be added to any page.
  • CSS is the most important part of this script needed to style the player ( Notice: If you add the CSS to your main site CSS you can run into problems. )
    1. <link href="https://your-site-url.com/video.css" rel="stylesheet">
  • JS: This javascript file will be used to control how the player functions and runs, for example, play button volume, loading bar and so no.
    1. < script src = "http://your-site-url.com/video.js" > < /script>
  • HTML5 media player: You can use the default media player for just about anything so why not use it for this awesome package and create something to remember.
    1. <video id="my-video" class="video-js" controls preload="auto" width="auto" height="400" poster="" data-setup="{}">
    2. <source src="link-to-media-format.mp4" type='video/mp4'>
    3. </video>
Enjoy the player and share it with the rest of the world.