Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/futhrevo/videojs-hlsjs
Playback HLS with hls.js that is lightweight and a source handler with HTML5 tech.
https://github.com/futhrevo/videojs-hlsjs
Last synced: 1 day ago
JSON representation
Playback HLS with hls.js that is lightweight and a source handler with HTML5 tech.
- Host: GitHub
- URL: https://github.com/futhrevo/videojs-hlsjs
- Owner: futhrevo
- License: mit
- Created: 2019-04-18T09:20:00.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2018-05-03T01:38:26.000Z (over 6 years ago)
- Last Synced: 2024-11-18T14:37:23.961Z (2 months ago)
- Language: JavaScript
- Size: 47.9 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
videojs-hlsjs
=================Just another hls.js plugin.
Playback HLS with hls.js that is lightweight and a source handler with HTML5 tech.
## Getting Started
- [Videojs](https://videojs.com/) 6+
- [hls.js](https://github.com/video-dev/hls.js/) 0.9+```
...
videojs('player');
```
### Configuration
[hls.js config](https://video-dev.github.io/hls.js/docs/html/file/src/config.js.html)
```
videojs('player', {
controls: true,
autoplay: false,
html5: {
// https://video-dev.github.io/hls.js/docs/html/file/src/config.js.html
hlsjs: {
debug: true,
}
},
});
```