196 GitHub stars and counting — Orange-OpenSource/hasplayer.js is a JavaScript project TopGit is tracking across repositories on the platform. Http Adaptive Streaming javascript player based on HTML5 premium extensions (MSE/EME)
Snapshot summary built from the project's own GitHub metadata — there's no written TopGit review yet. The page will update automatically when a full review is published.
WHY NO REVIEW YET
TopGit writes full reviews for the most-starred, most-requested repositories. This page is a snapshot until then — see the READ ME tab for the original README in full.
hasplayer.js is a javascript implementation of a video player based on the W3C premium extensions, i.e. MSE and EME.
hasplayer.js is an extension of the dash.js project with the aim of supporting additional http adaptive streaming protocols such as Microsoft Smooth Streaming protocol and Apple Http Live Streaming.
If your intent is to use the player code without contributing back to this project, then use the MASTER branch which holds the approved and stable public releases.
If your goal is to improve or extend the code and contribute back to this project, then you should make your changes in, and submit a pull request against, the DEVELOPMENT branch.
Learn more about versions and roadmap on the wiki.
Quick Start
Reference Player
Download 'master', 'development' or latest tagged release.
Extract hasplayer.js and move the entire folder to localhost (or run any http server instance at the root of the hasplayer.js folder).
Open any sample from the samples folder in your MSE capable web browser.
Install Dependencies
install nodejs
install gulp
npm install -g gulp
Build / Run
npm run build
The build task can be configured in order to select supported protocol(s) and to integrate or not EME support.
For example:
No hls support, no EME support:
npm run build -- --no-hls --no-protection
No hls support, no MSS support:
npm run build -- --no-hls --no-mss
Demo
A builded version of the hasplayer.js and samples is available at this address:
http://orange-opensource.github.io/hasplayer.js
License
All code in this repository is covered by the BSD-3 license.
See LICENSE file for copyright details.
Getting Started
Create a video element somewhere in your html. For our purposes, make sure to set the controls property to true.
Now comes the good stuff. We need to create an MediaPlayer. Then we need to initialize it, attach it to our "videoPlayer" and then tell it where to get the video from. We will do this in an anonymous self executing function, that way it will run as soon as the page loads. So, here is how we do it:
(function(){
var stream = {
url: "http://playready.directtaps.net/smoothstreaming/SSWSS720H264/SuperSpeedway_720.ism/Manifest"
};
var mediaPlayer = new MediaPlayer();
MediaPlayer.init(document.querySelector("#videoPlayer"));
MediaPlayer.load(stream);
})();
When it is all done, it should look similar to this:
In the case of protected content, here is an example illustrating setting of the protection data:
var stream = {
url: "<manifest_url>",
protData: {
"<key_system>": {
laURL: "<licenser_url>",
withCredentials: "<license_request_withCredentials_value (true or false)>",
cdmData: "<CDM_specific_data>", // Supported by PlayReady key system (using MS-prefixed EME API) only
serverCertificate: "<license_server_certificate (as Base64 string)>"
audioRobustness: "<audio_robustness_level>" // Considered for Widevine key system only
videoRobustness: "<video_robustness_level>" // Considered for Widevine key system only
}
}
};
mediaPlayer.load(stream);
HLS and FairPlay on Safari/OSx
In order to playback HLS protected contents with FairPlay DRM, a specific mode is available which consists in streaming and playing the content directly with the <video> element, and in managing the exchanges between the FairPlay CDM and the licenser using EME.
To activate this mode on Safari/OSx you need to explicitely indicate the protocol type, i.e. 'HLS', for the input stream:
Since native player is used to achieve streaming session, some parts of the MediaPlayer API have no effect (functions relative to streaming and ABR configuration, DVR, trick mode...).
However, API for audio and subtitles tracks management is functional.
Events
MediaPlayer offers events to be notified of differents events on video streaming. Those events are, for a part, sent by the HTMLMediaElement (<video>), and for an other part, sent by the MediaPlayer.
Does Orange-OpenSource/hasplayer.js have any tags?
TopGit's last sync did not record any GitHub topics for Orange-OpenSource/hasplayer.js. GitHub topics appear in the right sidebar of a repository page; that's the authoritative place to check.
How active is development on Orange-OpenSource/hasplayer.js?
The most recent commit recorded on Orange-OpenSource/hasplayer.js was 6.0 years ago, based on the GitHub push timestamp. The repository has 64 forks — one of the better signals of community interest.
How many stars does Orange-OpenSource/hasplayer.js have?
Orange-OpenSource/hasplayer.js has 196 GitHub stars — refresh the page for the live number, or check github.com/Orange-OpenSource/hasplayer.js. TopGit mirrors GitHub's count but does not claim minute-by-minute accuracy.
What language is Orange-OpenSource/hasplayer.js written in?
Orange-OpenSource/hasplayer.js is written primarily in JavaScript. GitHub's language field is based on the largest share of bytes in the default branch.
Where do I read more about Orange-OpenSource/hasplayer.js?
This TopGit page is a snapshot — the READ ME tab shows the project's own README content (links stripped, images preserved). The GitHub repository at github.com/Orange-OpenSource/hasplayer.js is the definitive source.
Read full README in the tab above.
Is hasplayer.js worth your time?
ChatGPT, Claude and Perplexity can all read this page. Ask one of them what it makes of hasplayer.js.