1
0
mirror of https://github.com/videojs/video.js.git synced 2024-11-24 08:42:25 +02:00
Video.js - open source HTML5 video player
Go to file
2016-03-25 15:04:25 -04:00
build @gkatsev added an option to keep the tooltips inside the player bounds. closes #3149 2016-03-25 14:34:06 -04:00
docs @gkatsev added an option to keep the tooltips inside the player bounds. closes #3149 2016-03-25 14:34:06 -04:00
lang Merge branch 'stable' 2016-03-25 15:04:25 -04:00
sandbox @OwenEdwards added basic descriptions track support. closes #3098 2016-03-25 14:16:56 -04:00
src @gkatsev added an option to keep the tooltips inside the player bounds. closes #3149 2016-03-25 14:34:06 -04:00
test @OwenEdwards added basic descriptions track support. closes #3098 2016-03-25 14:16:56 -04:00
.editorconfig Added .editorconfig and travis CI badge 2012-12-11 14:33:42 -08:00
.gitignore @erikyuzwa added ability to add child component at specific index. closes #2540 2016-02-04 13:42:49 -05:00
.jshintrc @misteroneill exposed DOM helpers. closes #2754 2015-11-09 17:43:17 -05:00
.npmignore @gkatsev made the sass files available via npm in src/css. closes #2546 2015-09-02 16:37:44 -04:00
.travis.yml @forbesjo updated travis to use latest firefox. closes #3112 2016-02-19 11:51:42 -05:00
bower.json @DatTran fixed bower paths. Fixes #2740. closes #2775 2015-11-20 17:22:49 -05:00
CHANGELOG.md Merge branch 'stable' 2016-03-25 15:04:25 -04:00
component.json v5.8.6 2016-03-25 14:57:13 -04:00
composer.json Added a composer.json for PHP packages. closes #1241 2014-06-13 17:01:11 -07:00
contrib.json @gkatsev added chg- and github- release for next releases. closes #2899 2015-12-08 15:52:17 -05:00
CONTRIBUTING.md @incompl updated build command in CONTRIBUTING.md. closes #2967 2016-01-07 23:13:15 -05:00
Gruntfile.js moved actual grunt file to build dir 2015-09-22 15:58:42 -07:00
ISSUE_TEMPLATE.md @gkatsev added issue and PR templates for github. closes #3117 2016-02-18 17:19:55 -05:00
LICENSE More build and testing cleanup. Also some reorganization. 2015-04-02 11:33:51 -07:00
package.json v5.8.6 2016-03-25 14:57:13 -04:00
PULL_REQUEST_TEMPLATE.md @gkatsev added issue and PR templates for github. closes #3117 2016-02-18 17:19:55 -05:00
README.md @gkatsev updated videojs badges in the README. closes #3134 2016-02-24 01:25:04 -05:00

Video.js logo

Video.js - HTML5 Video Player

Build Status Coverage Status

NPM

Video.js is a web video player built from the ground up for an HTML5 world. It supports HTML5 and Flash video, as well as YouTube and Vimeo (through 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 websites.

Quick start

Thanks to the awesome folks over at Fastly, there's a free, CDN hosted version of Video.js that anyone can use. Also, check out the Getting Started page on our website which has the latest urls as well. Simply add these includes to your document's <head>:

<link href="//vjs.zencdn.net/5.0/video-js.min.css" rel="stylesheet">
<script src="//vjs.zencdn.net/5.0/video.min.js"></script>

Then, whenever you want to use Video.js you can simply use the <video> element as your normally would, but with an additional data-setup attribute containing any Video.js options. These options can include any Video.js option plus potential plugin options, just make sure they're valid JSON!

<video id="really-cool-video" class="video-js vjs-default-skin" controls
 preload="auto" width="640" height="264" poster="really-cool-video-poster.jpg"
 data-setup='{}'>
  <source src="really-cool-video.mp4" type="video/mp4">
  <source src="really-cool-video.webm" type="video/webm">
  <p class="vjs-no-js">
    To view this video please enable JavaScript, and consider upgrading to a web browser
    that <a href="http://videojs.com/html5-video-support/" target="_blank">supports HTML5 video</a>
  </p>
</video>

If you don't want to use auto-setup, you can leave off the data-setup attribute and initialize a video element manually.

var player = videojs('really-cool-video', { /* Options */ }, function() {
  console.log('Good to go!');

  this.play(); // if you don't trust autoplay for some reason

  // How about an event listener?
  this.on('ended', function() {
    console.log('awww...over so soon?');
  });
});

If you're ready to dive in, the documentation is the first place to go for more information.

Contributing

Video.js is a free and open source library, and we appreciate any help you're willing to give. Check out the contributing guide.

Video.js uses BrowserStack for compatibility testing

Building your own Video.js from source

To build your own custom version read the section on contributing code and "Building your own copy" in the contributing guide.

License

Video.js is licensed under the Apache License, Version 2.0. View the license file