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
Alex Barstow eddda97eeb
feat: Add methods to add and remove <source> elements (#8886)
## Description
It is useful to have methods for appending and removing `<source>`
elements to the `<video>` element, as they are sometimes required to
enable certain playback features, for example, using [Airplay with
MSE](https://webkit.org/blog/15036/how-to-use-media-source-extensions-with-airplay).

## Specific Changes proposed
Add new methods-- `addSourceElement()` and `removeSourceElement()` to
the player and tech. The former will take a source object and create and
append a new `<source>` element to the `<video>` element, and the latter
will take a source url and remove any `<source>` element with a matching
`src`.

## Requirements Checklist
- [ ] Feature implemented / Bug fixed
- [ ] If necessary, more likely in a feature request than a bug fix
- [ ] Change has been verified in an actual browser (Chrome, Firefox,
IE)
  - [ ] Unit Tests updated or fixed
  - [ ] Docs/guides updated
- [ ] Example created ([starter template on
JSBin](https://codepen.io/gkatsev/pen/GwZegv?editors=1000#0))
- [ ] Has no DOM changes which impact accessiblilty or trigger warnings
(e.g. Chrome issues tab)
  - [ ] Has no changes to JSDoc which cause `npm run docs:api` to error
- [ ] Reviewed by Two Core Contributors
2024-10-09 12:16:04 -04:00
.github chore: Update PR template (#8750) 2024-05-28 19:44:56 +02:00
build chore: update version number in readme on release (#8840) 2024-08-28 12:39:46 +02:00
docs fix(lang): Update el.json (#8848) 2024-09-10 10:27:42 -08:00
lang fix(lang): Update el.json (#8848) 2024-09-10 10:27:42 -08:00
sandbox fix(middleware): cache grows even if no middleware created (#8674) 2024-07-06 07:44:37 +01:00
src feat: Add methods to add and remove <source> elements (#8886) 2024-10-09 12:16:04 -04:00
test feat: Add methods to add and remove <source> elements (#8886) 2024-10-09 12:16:04 -04:00
.babelrc chore(package): Update VHS version (#8447) 2023-09-25 15:09:36 -04:00
.browserslistrc chore(package): Update VHS version (#8447) 2023-09-25 15:09:36 -04:00
.editorconfig Added .editorconfig and travis CI badge 2012-12-11 14:33:42 -08:00
.gitignore docs: Update jsdoc template for better usability on mobile (#8048) 2023-03-22 20:15:17 +01:00
.jsdoc.js fix(docs): Add workaround for ErrorMetadata typedef (#8737) 2024-05-23 19:04:25 +02:00
.npmignore feat: add core ES module. (#6287) 2019-11-15 13:44:11 -05:00
.nvmrc chore: update node/nvmrc and various dependencies (#7221) 2021-05-04 11:45:59 -04:00
.remarkignore chore(docs): Documentation Linting and TOC generation (#3841) 2016-12-20 16:55:59 -05:00
.remarkrc.js chore(docs): Documentation Linting and TOC generation (#3841) 2016-12-20 16:55:59 -05:00
CHANGELOG.md 8.18.1 2024-09-17 16:13:56 +01:00
CODE_OF_CONDUCT.md docs: Refresh README.md and point other docs to admin repo (#8837) 2024-08-23 13:50:20 -04:00
COLLABORATOR_GUIDE.md docs: Refresh README.md and point other docs to admin repo (#8837) 2024-08-23 13:50:20 -04:00
composer.json docs: Remove Flash (#6994) 2020-12-22 14:10:53 -05:00
CONTRIBUTING.md docs: Refresh README.md and point other docs to admin repo (#8837) 2024-08-23 13:50:20 -04:00
index.html feat: Adds a transient button component (#8629) 2024-07-06 07:40:31 +01:00
LICENSE More build and testing cleanup. Also some reorganization. 2015-04-02 11:33:51 -07:00
package-lock.json 8.18.1 2024-09-17 16:13:56 +01:00
package.json 8.18.1 2024-09-17 16:13:56 +01:00
postcss.config.js chore(css): fix typo in postcss-config browserslist and update list (#8578) 2024-05-06 09:58:15 -07:00
README.md 8.18.1 2024-09-17 16:13:56 +01:00
rollup.config.js fix(types): Add has|usingPlugin to typedef by adding stubs which are removed from builds (#8811) 2024-08-12 21:47:47 +02:00
tsconfig.json fix(types): improves quality of typescript definitions (#8218) 2023-09-27 10:00:49 +02:00

Video.js logo

Video.js® - Web Video Player

NPM

Video.js is a full featured, open source video player for all web-based platforms.

Right out of the box, Video.js supports all common media formats used on the web including streaming formats like HLS and DASH. It works on desktops, mobile devices, tablets, and web-based Smart TVs. It can be further extended and customized by a robust ecosystem of plugins.

Video.js was started in the middle of 2010 and is now used on over 50,000 100,000 200,000 400,000 700,000 800,000 websites.

Table of Contents

Quick Start

Thanks to the awesome folks over at Fastly, there's a free, CDN hosted version of Video.js that anyone can use. Add these tags to your document's <head>:

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

Alternatively, you can include Video.js by getting it from npm, downloading it from GitHub releases or by including it via unpkg or another JavaScript CDN, like CDNjs.

<!-- unpkg : use the latest version of Video.js -->
<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>

<!-- unpkg : use a specific version of Video.js (change the version numbers as necessary) -->
<link href="https://unpkg.com/video.js@8.18.1/dist/video-js.min.css" rel="stylesheet">
<script src="https://unpkg.com/video.js@8.18.1/dist/video.min.js"></script>

<!-- cdnjs : use a specific version of Video.js (change the version numbers as necessary) -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/video.js/8.18.1/video-js.min.css" rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/ajax/libs/video.js/8.18.1/video.min.js"></script>

Next, using Video.js is as simple as creating a <video> element, but with an additional data-setup attribute. At a minimum, this attribute must have a value of '{}', but it can include any Video.js options - just make sure it contains valid JSON!

<video
    id="my-player"
    class="video-js"
    controls
    preload="auto"
    poster="//vjs.zencdn.net/v/oceans.png"
    data-setup='{}'>
  <source src="//vjs.zencdn.net/v/oceans.mp4" type="video/mp4"></source>
  <source src="//vjs.zencdn.net/v/oceans.webm" type="video/webm"></source>
  <source src="//vjs.zencdn.net/v/oceans.ogv" type="video/ogg"></source>
  <p class="vjs-no-js">
    To view this video please enable JavaScript, and consider upgrading to a
    web browser that
    <a href="https://videojs.com/html5-video-support/" target="_blank">
      supports HTML5 video
    </a>
  </p>
</video>

When the page loads, Video.js will find this element and automatically setup a player in its place.

If you don't want to use automatic setup, you can leave off the data-setup attribute and initialize a <video> element manually using the videojs function:

var player = videojs('my-player');

The videojs function also accepts an options object and a callback to be invoked when the player is ready:

var options = {};

var player = videojs('my-player', options, function onPlayerReady() {
  videojs.log('Your player is ready!');

  // In this context, `this` is the player that was created by Video.js.
  this.play();

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

If you're ready to dive in, the Getting Started page and documentation are the best places to go for more information. If you get stuck, head over to our Slack!

Contributing

Video.js is a free and open source library, and we appreciate any help you're willing to give - whether it's fixing bugs, improving documentation, or suggesting new features. Check out the contributing guide for more!

Video.js uses BrowserStack for compatibility testing.

Code of Conduct

Please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms.

License

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

Video.js is a registered trademark of Brightcove, Inc.