Video.js
Open source HTML5 & Flash video player
README
[Video.js - HTML5 Video Player][vjs]
Video.js is a web video player built from the ground up for an HTML5 world. It supports HTML5 video and Media Source Extensions, as well as other playback techs like YouTube and Vimeo (through [plugins][plugins]). It supports video playback on desktops and mobile devices. This project was started mid 2010, and the player is now used on over 50,000 100,000 200,000 400,000 [700,000 websites][builtwith].
Table of Contents
Quick Start
- ``` html
- <link href="//vjs.zencdn.net/7.10.2/video-js.min.css" rel="stylesheet">
- <script src="//vjs.zencdn.net/7.10.2/video.min.js"></script>
- ```
For the latest version of video.js and URLs to use, check out the [Getting Started][getting-started] page on our website.
- ``` html
- <script>window.HELP_IMPROVE_VIDEOJS = false;</script>
- ```
- ``` html
- <link href="https://unpkg.com/video.js/dist/video-js.min.css" rel="stylesheet">
- <script src="https://unpkg.com/video.js/dist/video.min.js"></script>
- <link href="https://unpkg.com/video.js@7.10.2/dist/video-js.min.css" rel="stylesheet">
- <script src="https://unpkg.com/video.js@7.10.2/dist/video.min.js"></script>
- <link href="https://cdnjs.cloudflare.com/ajax/libs/video.js/7.10.2/video-js.min.css" rel="stylesheet">
- <script src="https://cdnjs.cloudflare.com/ajax/libs/video.js/7.10.2/video.min.js"></script>
- ```