<jwplayer-video>
A custom element (web component) for the JW player.
The element API matches the HTML5 <video>
tag, so it can be easily swapped with other media, and be compatible with other UI components that work with the video tag.
One of the goals was to have <jwplayer-video>
seamlessly integrate with Media Chrome.
🙋 Looking for a YouTube video element? Check out <youtube-video>
.
<script type="module" src="https://unpkg.com/jwplayer-video-element@0"></script>
<jwplayer-video controls src="https://cdn.jwplayer.com/players/C8YE48zj-IxzuqJ4M.html"></jwplayer-video>
Installing
<jwplayer-video>
is packaged as a javascript module (es6) only, which is supported by all evergreen browsers and Node v12+.
Loading into your HTML using <script>
<script type="module" src="https://unpkg.com/jwplayer-video-element@0"></script>
Adding to your app via npm
npm install jwplayer-video-element --save
Or yarn
yarn add jwplayer-video-element
Include in your app javascript (e.g. src/App.js)
import 'jwplayer-video-element';
This will register the custom elements with the browser so they can be used as HTML.