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-02-02 14:32:19 -05:00
build @gkatsev updated css to have ascii codepoints for fonticons. Expose new scss file. closes #2973 2016-01-07 23:36:09 -05:00
docs @CoWinkKeyDinkInc fixed table in Tracks guide. Replaced some single quotes with double quotes. closes #2946 2016-01-25 20:11:26 -05:00
lang @aril-spetalen added language support for Norwegian (nb and nn). closes #3021 2016-01-25 20:01:15 -05:00
sandbox @CoWinkKeyDinkInc fixed table in Tracks guide. Replaced some single quotes with double quotes. closes #2946 2016-01-25 20:11:26 -05:00
src @incompl improved the UX of time tooltips. closes #3060 2016-02-02 14:32:19 -05:00
test @forbesjo updated emulated tracks to have listeners removed when they are removed. closes #3046 2016-02-02 14:29:31 -05:00
.editorconfig Added .editorconfig and travis CI badge 2012-12-11 14:33:42 -08:00
.gitignore Removing dist again in favor of some dark git magic 2015-04-29 11:09:17 -07: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 switched automated testing to BrowserStack. closes #2492 2015-08-20 14:57:59 -07:00
bower.json @DatTran fixed bower paths. Fixes #2740. closes #2775 2015-11-20 17:22:49 -05:00
CHANGELOG.md @incompl improved the UX of time tooltips. closes #3060 2016-02-02 14:32:19 -05:00
component.json v5.6.0 2016-01-26 12:09:40 -05: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
LICENSE More build and testing cleanup. Also some reorganization. 2015-04-02 11:33:51 -07:00
package.json v5.6.0 2016-01-26 12:09:40 -05:00
README.md @hubdotcom changed URLs in README to be protocol-relative. closes #3040 2016-01-26 11:34:36 -05:00

Video.js logo

Video.js - HTML5 Video Player Build Status

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. 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

Copyright 2014-2015 Brightcove, Inc.