Video.js Guides
These guides cover a range of topics for users of Video.js
Playback Technology ("Tech")
Table of Contents
Playback Technology refers to the specific browser or plugin technology used to play the video or audio. When using HTML5, the playback technology is the video or audio element. When using the videojs-youtube tech, the playback technology is the YouTube player. The tech also includes an API wrapper to translate between the Video.js controls and API to the specific playback technology used.
Essentially we're using html5 and plugins only as video decoders, and using HTML and JavaScript to create a consistent API and skinning experience across all of them.
In addition to techs there are source handlers. Source handlers add the capability to play additional source types to techs. For example, the http-streaming source handler (included with Video.js 7+ by default) enables the HTML5 tech to play HLS and DASH.
Building an API Wrapper
We'll write a more complete guide on writing a wrapper soon, but for now the best resource is the Video.js source where you can see how the HTML5 API wrapper is created.
Required Methods
canPlayType play pause currentTime volume duration buffered supportsFullScreen
Required Events
loadstart play pause playing ended volumechange durationchange error
Optional Events (include if supported)
timeupdate progress enterFullScreen exitFullScreen
Adding Playback Technology
When additional techs are added they are automatically added to the techOrder
. You can modify the techOrder
to change the priority of each tech.
Tag Method:
<video data-setup='{"techOrder": ["html5", "other supported tech"]}'>
Object Method:
videojs("videoID", {
techOrder: ["html5", "other supported tech"]
});
Posters
By default, techs will have to handle their own posters and are somewhat locked out of the player's poster lifecycle.
However, when the player is initialized with the techCanOverridePoster
option
it will be possible for techs to integrate into that lifecycle and the player's PosterImage
component to be used.
Techs can check if they have this capability by checking the canOverridePoster
boolean in their options.
techCanOverridePoster
requirements
poster()
which returns the tech's current poster urlsetPoster()
which updates the tech's poster url and triggers aposterchange
event which the player will handle
Technology Ordering
When Video.js is given an array of sources, which to use is determined by finding the first supported source / tech combination. Each tech will be queried in the order specified in techOrder
whether it can play the first source. The first match wins. If no tech can play the first source, then the next will be tested. It's important to set the type
of each source correctly for this test to be accurate.
These examples use the obsolete Flash tech for illustration of tech ordering with techs which have a greater degree of overlap in sources they can play
For example, given the following video element, assuming the videojs-flash tech is available:
<!-- "techOrder": ["html5", "flash"] -->
<video>
<source src="http://your.static.provider.net/path/to/video.m3u8" type="application/x-mpegURL">
<source src="http://your.static.provider.net/path/to/video.mp4" type="video/mp4">
</video>
The HLS source will be tested first. The first tech is html5.
- Safari can play HLS in a standard HTML5 video element, so HLS will be played using the html5 tech.
- Chrome can't play HLS in the standard HTML5 video element on its own, but the http-streaming source handler (included in Video.js 7+ by default) can play HLS via Media Source Extensions in HTML5. So HLS will be played in the html5 tech.
- IE 10 can't play HLS natively, and doesn't support Media Source Extensions. As the source cannot be played in HTML5, the Flash tech will be tested.
Now take the same sources again but without videojs-flash:
<!-- "techOrder": ["html5"] -->
<video>
<source src="http://your.static.provider.net/path/to/video.m3u8" type="application/x-mpegURL">
<source src="http://your.static.provider.net/path/to/video.mp4" type="video/mp4">
</video>
- Safari can play HLS in a standard HTML5 video element, so HLS will be played using the html5 tech.
- Chrome will play HLS in the html5 tech using the http-streaming source handler via Media Source Extensions.
- IE 10 can't play HLS in either the html5 or Flash tech. Next the MP4 source will be tested. MP4 can be played by HTML5, so that source-tech pair will be used.
Flash Technology
Flash is no longer supported as it has reached end of life.